perf: add TCP Nginx+LDPRELOAD suites
[csit.git] / resources / libraries / robot / shared / test_teardown.robot
1 # Copyright (c) 2021 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
14 """Keywords used in test teardowns."""
15
16 *** Settings ***
17 | Resource | resources/libraries/robot/shared/container.robot
18 | Library | resources.libraries.python.PapiHistory
19 | Library | resources.libraries.python.topology.Topology
20 | Variables | resources/libraries/python/Constants.py
21 |
22 | Documentation | Test teardown keywords.
23
24 *** Keywords ***
25 | Tear down test
26 | | [Documentation]
27 | | ... | Common test teardown for VPP tests.
28 | |
29 | | ... | *Arguments:*
30 | | ... | - ${actions} - Additional teardown action. Type: list
31 | |
32 | | [Arguments] | @{actions}
33 | |
34 | | Remove All Added Ports On All DUTs From Topology | ${nodes}
35 | | Show PAPI History On All DUTs | ${nodes}
36 | | Run Keyword If Test Failed
37 | | ... | Show Log On All DUTs | ${nodes}
38 | | Run Keyword If Test Failed
39 | | ... | Get Core Files on All Nodes | ${nodes}
40 | | Run Keyword If Test Failed
41 | | ... | Verify VPP PID in Teardown
42 | | Run Keyword If Test Failed
43 | | ... | VPP Show Memory On All DUTs | ${nodes}
44 | | FOR | ${action} | IN | @{actions}
45 | | | Run Keyword | Additional Test Tear Down Action For ${action}
46 | | END
47 | | Clean Sockets On All Nodes | ${nodes}
48
49 | Tear down test raw
50 | | [Documentation]
51 | | ... | Common test teardown for raw tests.
52 | |
53 | | ... | *Arguments:*
54 | | ... | - ${actions} - Additional teardown action. Type: list
55 | |
56 | | [Arguments] | @{actions}
57 | |
58 | | Remove All Added Ports On All DUTs From Topology | ${nodes}
59 | | FOR | ${action} | IN | @{actions}
60 | | | Run Keyword | Additional Test Tear Down Action For ${action}
61 | | END
62 | | Clean Sockets On All Nodes | ${nodes}
63
64 # Additional Test Tear Down Actions in alphabetical order
65 | Additional Test Tear Down Action For acl
66 | | [Documentation]
67 | | ... | Additional teardown for tests which uses ACL feature.
68 | |
69 | | Run Keyword If Test Failed
70 | | ... | Vpp Log Plugin Acl Settings | ${dut1}
71 | | Run Keyword If Test Failed
72 | | ... | Vpp Log Plugin Acl Interface Assignment | ${dut1}
73
74 | Additional Test Tear Down Action For classify
75 | | [Documentation]
76 | | ... | Additional teardown for tests which uses classify tables.
77 | |
78 | | Run Keyword If Test Failed
79 | | ... | Show Classify Tables Verbose on all DUTs | ${nodes}
80
81 | Additional Test Tear Down Action For container
82 | | [Documentation]
83 | | ... | Additional teardown for tests which uses containers.
84 | |
85 | | FOR | ${container_group} | IN | @{container_groups}
86 | | | Destroy all '${container_group}' containers
87 | | END
88
89 | Additional Test Tear Down Action For nginx
90 | | [Documentation]
91 | | ... | Additional teardown for tests which uses nginx.
92 | |
93 | | FOR | ${dut} | IN | @{duts}
94 | | | Kill Program | ${nodes['${dut}']} | nginx
95 | | END
96
97 | Additional Test Tear Down Action For det44
98 | | [Documentation]
99 | | ... | Additional teardown for tests which uses DET44 feature.
100 | |
101 | | FOR | ${dut} | IN | @{duts}
102 | | | Run Keyword If Test Failed
103 | | | ... | Show DET44 verbose | ${nodes['${dut}']}
104 | | END
105
106 | Additional Test Tear Down Action For geneve4
107 | | [Documentation]
108 | | ... | Additional teardown for tests which uses GENEVE IPv4 tunnel.
109 | |
110 | | FOR | ${dut} | IN | @{duts}
111 | | | Run Keyword If Test Failed
112 | | | ... | Show Geneve Tunnel Data | ${nodes['${dut}']}
113 | | END
114
115 | Additional Test Tear Down Action For iPerf3
116 | | [Documentation]
117 | | ... | Additional teardown for test which uses iPerf3 server.
118 | |
119 | | Run Keyword And Ignore Error
120 | | ... | Teardown iPerf | ${nodes['${iperf_server_node}']}
121
122 | Additional Test Tear Down Action For ipsec_sa
123 | | [Documentation]
124 | | ... | Additional teardown for tests which uses IPSec security association.
125 | |
126 | | FOR | ${dut} | IN | @{duts}
127 | | | Run Keyword If Test Failed
128 | | | ... | Show Ipsec Security Association | ${nodes['${dut}']}
129 | | END
130
131 | Additional Test Tear Down Action For linux_bridge
132 | | [Documentation]
133 | | ... | Additional teardown for tests which uses linux_bridge.
134 | |
135 | | FOR | ${dut} | IN | @{duts}
136 | | | Linux Del Bridge | ${nodes['${dut}']} | ${bid_TAP}
137 | | END
138
139 | Additional Test Tear Down Action For macipacl
140 | | [Documentation]
141 | | ... | Additional teardown for tests which uses MACIP ACL feature.
142 | |
143 | | Run Keyword If Test Failed
144 | | ... | Vpp Log Macip Acl Settings | ${dut1}
145 | | Run Keyword If Test Failed
146 | | ... | Vpp Log Macip Acl Interface Assignment | ${dut1}
147
148 | Additional Test Tear Down Action For namespace
149 | | [Documentation]
150 | | ... | Additional teardown for tests which uses namespace.
151 | |
152 | | FOR | ${dut} | IN | @{duts}
153 | | | Clean Up Namespaces | ${nodes['${dut}']}
154 | | END
155
156 | Additional Test Tear Down Action For nat-ed
157 | | [Documentation]
158 | | ... | Additional teardown for tests which uses NAT feature.
159 | |
160 | | FOR | ${dut} | IN | @{duts}
161 | | | Show NAT44 Config | ${nodes['${dut}']}
162 | | | Show NAT44 Summary | ${nodes['${dut}']}
163 | | | Show NAT Base Data | ${nodes['${dut}']}
164 | | | Vpp Get Ip Table Summary | ${nodes['${dut}']}
165 | | END
166
167 | Additional Test Tear Down Action For packet_trace
168 | | [Documentation]
169 | | ... | Additional teardown for tests which uses packet trace.
170 | |
171 | | Show Packet Trace on All DUTs | ${nodes}
172
173 | Additional Test Tear Down Action For performance
174 | | [Documentation]
175 | | ... | Additional teardown for tests which uses performance measurement.
176 | | ... | Optionally, call \${resetter} (if defined) to reset DUT state.
177 | |
178 | | ... | TODO: Document what test variables are required or optional.
179 | |
180 | | Run Keyword If Test Passed | Return From Keyword
181 | | ${use_latency} = | Get Use Latency
182 | | ${rate_for_teardown} = | Get Rate For Teardown
183 | | Call Resetter
184 | | Set Test Variable | \${extended_debug} | ${True}
185 | | Send traffic at specified rate
186 | | ... | trial_duration=${1.0}
187 | | ... | rate=${rate_for_teardown}
188 | | ... | trial_multiplicity=${1}
189 | | ... | use_latency=${use_latency}
190 | | ... | duration_limit=${1.0}
191
192 | Additional Test Tear Down Action For srv6
193 | | [Documentation]
194 | | ... | Additional teardown for tests which uses SRv6.
195 | |
196 | | Run Keyword If Test Failed
197 | | ... | Show SR Policies on all DUTs | ${nodes}
198 | | Run Keyword If Test Failed
199 | | ... | Show SR Steering Policies on all DUTs | ${nodes}
200 | | Run Keyword If Test Failed
201 | | ... | Show SR LocalSIDs on all DUTs | ${nodes}
202
203 | Additional Test Tear Down Action For vhost
204 | | [Documentation]
205 | | ... | Additional teardown for tests which uses vhost(s) and VM(s).
206 | |
207 | | Show VPP vhost on all DUTs | ${nodes}
208 | | ${vnf_status} | ${value}= | Run Keyword And Ignore Error
209 | | ... | Keyword Should Exist | vnf_manager.Kill All VMs
210 | | Run Keyword If | '${vnf_status}' == 'PASS' | vnf_manager.Kill All VMs
211
212 | Additional Test Tear Down Action For vhost-pt
213 | | [Documentation]
214 | | ... | Additional teardown for tests which uses pci-passtrough and VM(s).
215 | |
216 | | ${vnf_status} | ${value}= | Run Keyword And Ignore Error
217 | | ... | Keyword Should Exist | vnf_manager.Kill All VMs
218 | | Run Keyword If | '${vnf_status}' == 'PASS' | vnf_manager.Kill All VMs