Add a simple performance test that sends a continuous stream
[vswitchperf.git] / conf / 01_testcases.conf
1 # Copyright 2015 Intel Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #   http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # This file describes a list of testcases.  Each testcase is described as a
16 # dictionary in a list of dictionaries.
17 #
18 # The dictionary keys, their meanings and available values are:
19 #
20 # "Name": "phy2phy_burst",         # A human-readable string identifying the
21 #                                  # test.
22 # "Traffic Type": "rfc2544",       # One of the supported traffic types.
23 # "Collector": "cpu, memory",      # Comma-separated list of Collectors to
24 #                                  # be activated during this test.
25 # "Deployment": "p2p",             # One of the supported deployment scenarios.
26 # "Description": "Lorem ipsum..."  # Optional. A human-readable string
27 #                                  # describing the test.
28 # "MultiStream": [true|false],
29 # "Test Modifier": [FrameMod|Other],
30 # "Dependency": [Test_Case_Name |None],
31
32 PERFORMANCE_TESTS = [
33     {
34         "Name": "phy2phy_tput",
35         "Traffic Type": "rfc2544",
36         "Collector": "cpu",
37         "Deployment": "p2p",
38         "biDirectional": "True",
39         "Description": "LTD.Throughput.RFC2544.PacketLossRatio",
40     },
41     {
42         "Name": "back2back",
43         "Traffic Type": "back2back",
44         "Collector": "cpu",
45         "Deployment": "p2p",
46         "biDirectional": "True",
47         "Description": "LTD.Throughput.RFC2544.BackToBackFrames",
48     },
49     {
50         "Name": "phy2phy_tput_mod_vlan",
51         "Traffic Type": "rfc2544",
52         "Collector": "cpu",
53         "Deployment": "p2p",
54         "Frame Modification": "vlan",
55         "biDirectional": "False",
56         "Description": "LTD.Throughput.RFC2544.PacketLossRatioFrameModification"
57     },
58     {
59         "Name": "phy2phy_cont",
60         "Traffic Type": "continuous",
61         "Collector": "cpu",
62         "Deployment": "p2p",
63         "Description": "RFC2544 Phy2Phy Continuous Stream",
64         "biDirectional": "True",
65     },
66
67 ]