aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMartin Klozik <martinx.klozik@intel.com>2015-12-03 12:58:03 +0000
committerMaryam Tahhan <maryam.tahhan@intel.com>2015-12-09 14:15:14 +0000
commit39ee5533feb7028f6fb7fce604f66b4451d434c7 (patch)
tree9f073f8b07d34f9267319c292705a65bf555341d /core
parenta05bfbc0bd553f761962634609d626085b3b3beb (diff)
testcase: scalability testcase enhancements
Streams used by scalability testcases can be simulated at different network layers by modification of destination MAC address (L2), destination IP address (L3) or destination UDP port (L4). It is possible to define number and type of the streams by testcase definition by options "MultiStream" and "Stream Type" or by CLI parameters "multistream" and "stream_type". CLI options override testcase definition. Number of streams, their types, used transport protocol and indication of pre-installed flows are written to both result CSV file and MD file with test report. Default transport protocol was changed to UDP because IxNetwork configuration script doesn't support TCP yet. Change-Id: I1ff9ab7756d38f65b1a7730397507c5a5ff5a3d1 JIRA: VSPERF-81 JIRA: VSPERF-82 Signed-off-by: Martin Klozik <martinx.klozik@intel.com> Reviewed-by: Maryam Tahhan <maryam.tahhan@intel.com>
Diffstat (limited to 'core')
-rw-r--r--core/results/results_constants.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/results/results_constants.py b/core/results/results_constants.py
index 58086e32..8f139f14 100644
--- a/core/results/results_constants.py
+++ b/core/results/results_constants.py
@@ -21,6 +21,7 @@ class ResultsConstants(object):
ID = 'id'
PACKET_SIZE = 'packet_size'
DEPLOYMENT = 'deployment'
+ TRAFFIC_TYPE = 'traffic_type'
GUEST_LOOPBACK = 'guest_loopback_app'
UNKNOWN_VALUE = "Unknown"
@@ -52,6 +53,9 @@ class ResultsConstants(object):
B2B_FRAMES = 'b2b_frames'
B2B_FRAME_LOSS_FRAMES = 'b2b_frame_loss_frames'
B2B_FRAME_LOSS_PERCENT = 'b2b_frame_loss_percent'
+ SCAL_STREAM_COUNT = 'stream_count'
+ SCAL_STREAM_TYPE = 'match_type'
+ SCAL_PRE_INSTALLED_FLOWS = 'pre-installed_flows'
@staticmethod
def get_traffic_constants():