T-REX: change relative rate values to absolute units
[csit.git] / tests / suites / performance / short.robot
1 # Copyright (c) 2016 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13 *** Settings ***
14 | Resource | resources/libraries/robot/default.robot
15 | Resource | resources/libraries/robot/interfaces.robot
16 | Resource | resources/libraries/robot/bridge_domain.robot
17 | Resource | resources/libraries/robot/ipv4.robot
18 | Resource | resources/libraries/robot/l2_xconnect.robot
19 | Library | resources/libraries/python/TrafficGenerator.py
20 | Library | resources.libraries.python.NodePath
21 | Force Tags | topo-3node | PERFTEST
22 | Test Setup | Setup all DUTs before test
23 | Suite Setup | Initialize traffic generator | ${nodes['TG']}
24 | ... | ${nodes['TG']['interfaces']['port3']['pci_address']}
25 | ... | ${nodes['TG']['interfaces']['port5']['pci_address']}
26 | Suite Teardown | Teardown traffic generator | ${nodes['TG']}
27
28 *** Test Cases ***
29 | VPP passes 64B frames through L2 cross connect at 3.5mpps in 3-node topology
30 | | Given L2 xconnect initialized in a 3-node topology
31 | | Then Traffic should pass with no loss | 10 | 3.5mpps | 64 | 3-node-xconnect
32
33 | VPP passes 1518B frames through L2 cross connect at 10gbps in 3-node topology
34 | | Given L2 xconnect initialized in a 3-node topology
35 | | Then Traffic should pass with no loss | 10 | 10gbps | 1518 | 3-node-xconnect
36
37 | VPP passes 9000B frames through L2 cross connect at 10gbps in 3-node topology
38 | | Given L2 xconnect initialized in a 3-node topology
39 | | Then Traffic should pass with no loss | 10 | 10gbps | 9000 | 3-node-xconnect
40
41 | VPP passes 64B frames through bridge domain at 3.5mpps in 3-node topology
42 | | Given L2 bridge domain initialized in a 3-node circular topology
43 | | Then Traffic should pass with no loss | 10 | 3.5mpps | 64 | 3-node-bridge
44
45 | VPP passes 1518B frames through bridge domain at 10gbps in 3-node topology
46 | | Given L2 bridge domain initialized in a 3-node circular topology
47 | | Then Traffic should pass with no loss | 10 | 10gbps | 1518 | 3-node-bridge
48
49 | VPP passes 9000B frames through bridge domain at 10gbps in 3-node topology
50 | | Given L2 bridge domain initialized in a 3-node circular topology
51 | | Then Traffic should pass with no loss | 10 | 10gbps | 9000 | 3-node-bridge
52
53 #| VPP passes 64B frames through IPv4 forwarding at 30% in 3-node topology
54 #| | Given IPv4 forwarding initialized in a 3-node topology
55 #| | Then Traffic should pass with no loss | 10 | 30 | 64 | 3-node-IPv4
56
57 #| VPP passes 1518B frames through IPv4 forwarding at 100% in 3-node topology
58 #| | Given IPv4 forwarding initialized in a 3-node topology
59 #| | Then Traffic should pass with no loss | 10 | 100 | 1518 | 3-node-IPv4
60
61 #| VPP passes 9000B frames through IPv4 forwarding at 100% in 3-node topology
62 #| | Given IPv4 forwarding initialized in a 3-node topology
63 #| | Then Traffic should pass with no loss | 10 | 100 | 9000 | 3-node-IPv4
64
65
66 *** Keywords ***
67
68
69 | L2 xconnect initialized in a 3-node topology
70 | | Interfaces on all DUTs are in "up" state
71 | | L2 setup xconnect on DUTs
72
73 | IPv4 forwarding initialized in a 3-node topology
74 | | Setup DUT nodes for IPv4 testing
75
76 | L2 bridge domain initialized in a 3-node circular topology
77 | | Append Nodes | ${nodes['TG']} | ${nodes['DUT1']} | ${nodes['DUT2']}
78 | | ...          | ${nodes['TG']}
79 | | Compute Path
80 | | ${src_if} | ${tg}= | Next Interface
81 | | ${dut1_if1} | ${dut1}= | Next Interface
82 | | ${dut1_if2} | ${dut1}= | Next Interface
83 | | ${dut2_if1} | ${dut2}= | Next Interface
84 | | ${dut2_if2} | ${dut2}= | Next Interface
85 | | ${dst_if} | ${tg}= | Next Interface
86 | | Vpp l2bd forwarding setup | ${dut1} | ${dut1_if1} | ${dut1_if2}
87 | | Vpp l2bd forwarding setup | ${dut2} | ${dut2_if1} | ${dut2_if2}
88
89
90 | Traffic should pass with no loss
91 | | [Arguments] | ${duration} | ${rate} | ${framesize} | ${topology_type}
92 | | Send traffic on | ${nodes} | ${duration}
93 | | ...             | ${rate} | ${framesize} | ${topology_type}
94 | | No traffic loss occured