bugfix: Trafficgen Ixia does not work
[vswitchperf.git] / conf / 01_testcases.conf
index fd268be..55cce1c 100755 (executable)
@@ -1,4 +1,4 @@
-# Copyright 2015 Intel Corporation.
+# Copyright 2015-2016 Intel Corporation.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 # "Name": "phy2phy_burst",         # A human-readable string identifying the
 #                                  # test.
 # "Traffic Type": "rfc2544",       # One of the supported traffic types.
+#                                  # It can be overridden by cli option traffic_type.
+#                                  # Default value is "rfc2544".
 # "Deployment": "p2p",             # One of the supported deployment scenarios.
 # "Description": "Lorem ipsum..."  # Optional. A human-readable string
 #                                  # describing the test.
 # "Frame Modification": "vlan"     # One of the supported frame modifications:
 #                                  # vlan, mpls, mac, dscp, ttl, ip_addr,
 #                                  # ip_port.
-# "biDirectional": [true|false],   # Specifies if genearted traffic will be
-#                                  # full-duplex (true) or half-duplex (false)
+# "biDirectional": ["True"|"False"]
+#                                  # Specifies if generated traffic will be
+#                                  # full-duplex (True) or half-duplex (False)
+#                                  # It can be overridden by cli option bidirectional.
+#                                  # Default value is "False". Must be of type
+#                                  # string.
 # "MultiStream": 0-65535           # Optional. Defines number of flows simulated
 #                                  # by traffic generator. Value 0 disables
 #                                  # MultiStream feature
 #                                  # Values:
 #                                  #    "L2" - iteration of destination MAC address
 #                                  #    "L3" - iteration of destination IP address
-#                                  #    "L4" - iteration of destination UDP port
+#                                  #    "L4" - iteration of destination port
+#                                  #           of selected transport protocol
 #                                  # Default value is "L4".
+# "Pre-installed Flows": ["Yes"|"No"]
+#                                  # Optional. Pre-installed Flows is an extension
+#                                  # of the "MultiStream" feature. If MultiStream
+#                                  # is disabled, then Pre-installed Flows will be
+#                                  # ignored. It defines if stream specific flows
+#                                  # will be inserted into OVS or not.
+#                                  # It can be overridden by cli option
+#                                  # pre-installed_flows
+#                                  # Values:
+#                                  #    "Yes" - flows will be inserted into OVS
+#                                  #    "No"  - flows won't be inserted into OVS
+#                                  # Default value is "No".
 # "Flow Type": ["port"|"IP"]       # Optional. Defines flows complexity. In case
 #                                  # it isn't specified, then "port" will be used.
 #                                  # Values:
@@ -53,6 +72,7 @@
 #                                  # of frame rate used during continuous stream
 #                                  # tests. Can be overridden by cli option
 #                                  # iload.
+#                                  # Default value is 100.
 # "Load": dictionary               # Optional. Configures background load
 #                                  # during testcase execution.
 #   Description of "Load" dictionary keys, their meanings and available values:
 #                                  # value will be used
 #   "options": ""                  # Optional. Additional command line options
 #                                  # to be passed to the load generator.
+# "vSwitch" : "OvsVanilla"         # Defines vSwitch to be used for test execution.
+#                                  # It will override any VSWITCH option stated
+#                                  # in configuration files or value specified
+#                                  # on command line through --vswitch parameter.
+# "VNF" : "QemuVirtioNet"          # Defines VNF to be used for test execution.
+#                                  # It will override any VNF option stated
+#                                  # in configuration files or value specified
+#                                  # on command line through --vnf parameter.
+# "Trafficgen" : "Dummy"           # Defines traffic generator to be used for test
+#                                  # execution. It will override any VNF option
+#                                  # stated in configuration files or value
+#                                  # specified on command line through --trafficgen
+#                                  # parameter.
+# "Parameters" : "pkt_sizes=512"   # Defines list of test parameters used for test
+#                                  # execution. It will override any values defined
+#                                  # by TEST_PARAMS option stated in configuration
+#                                  # files or values specified on command line through
+#                                  # --test-params parameter.
 # "Test Modifier": [FrameMod|Other],
 # "Dependency": [Test_Case_Name |None],
 
@@ -93,6 +131,13 @@ PERFORMANCE_TESTS = [
         "biDirectional": "True",
         "Description": "LTD.Throughput.RFC2544.PacketLossRatio",
     },
+    {
+        "Name": "phy2phy_forwarding",
+        "Traffic Type": "rfc2889",
+        "Deployment": "p2p",
+        "biDirectional": "True",
+        "Description": "LTD.Forwarding.RFC2889.MaxForwardingRate",
+    },
     {
         "Name": "back2back",
         "Traffic Type": "back2back",
@@ -114,7 +159,7 @@ PERFORMANCE_TESTS = [
         "Deployment": "p2p",
         "Description": "Phy2Phy Continuous Stream",
         "biDirectional": "True",
-        "iLoad": "90",
+        "iLoad": "100",
     },
     {
         "Name": "pvp_cont",
@@ -122,7 +167,7 @@ PERFORMANCE_TESTS = [
         "Deployment": "pvp",
         "Description": "PVP Continuous Stream",
         "biDirectional": "True",
-        "iLoad": "90",
+        "iLoad": "100",
     },
     {
         "Name": "pvvp_cont",
@@ -130,14 +175,22 @@ PERFORMANCE_TESTS = [
         "Deployment": "pvvp",
         "Description": "PVVP Continuous Stream",
         "biDirectional": "True",
-        "iLoad": "90",
+        "iLoad": "100",
+    },
+    {
+        "Name": "pvpv_cont",
+        "Traffic Type": "continuous",
+        "Deployment": "pvpv",
+        "Description": "Two VMs in parallel with Continuous Stream",
+        "biDirectional": "True",
+        "iLoad": "100",
     },
     {
         "Name": "phy2phy_scalability",
         "Traffic Type": "rfc2544",
         "Deployment": "p2p",
         "biDirectional": "True",
-        "Description": "LTD.Scalability.RFC2544.0PacketLoss",
+        "Description": "LTD.Scalability.Flows.RFC2544.0PacketLoss",
         "MultiStream": "8000",
     },
     {