blob: 5d1d2a2b2c9b531a110835d7a8b6d860d15c5451 [file] [log] [blame]
Kailash92764922019-07-25 08:21:39 -07001# Copyright 2017-present Open Networking Foundation
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.
Kailash92764922019-07-25 08:21:39 -070014# robot test functions
15
16*** Settings ***
17Documentation Library for various utilities
18Library SSHLibrary
Kailash92764922019-07-25 08:21:39 -070019Library String
20Library DateTime
21Library Process
22Library Collections
23Library RequestsLibrary
24Library OperatingSystem
25
26*** Keywords ***
Kailash528f7c02019-07-31 10:55:49 -070027Check CLI Tools Configured
28 [Documentation] Tests that use 'voltctl' and 'kubectl' should execute this keyword in suite setup
29 # check voltctl and kubectl configured
Zack Williamsa8fe75a2020-01-10 14:25:27 -070030 ${voltctl_rc}= Run And Return RC voltctl device list
31 ${kubectl_rc}= Run And Return RC kubectl get pods
Gilles Depatie675a2062019-10-22 12:44:42 -040032 Run Keyword If ${voltctl_rc} != 0 or ${kubectl_rc} != 0 FATAL ERROR
33 ... VOLTCTL and KUBECTL not configured. Please configure before executing tests.
Gilles Depatieb5682f82019-10-31 10:39:45 -040034
35Send File To Onos
Zack Williamsa8fe75a2020-01-10 14:25:27 -070036 [Documentation] Send the content of the file to Onos to selected section of configuration
37 ... using Post Request
38 [Arguments] ${CONFIG_FILE} ${section}
39 ${Headers}= Create Dictionary Content-Type application/json
40 ${File_Data}= OperatingSystem.Get File ${CONFIG_FILE}
41 Log ${Headers}
42 Log ${File_Data}
43 ${resp}= Post Request ONOS
44 ... /onos/v1/network/configuration/${section} headers=${Headers} data=${File_Data}
45 Should Be Equal As Strings ${resp.status_code} 200
Andy Bavier88cd9f62019-11-26 16:22:33 -070046
47Common Test Suite Setup
48 [Documentation] Setup the test suite
49 # BBSim sanity test doesn't need these imports from other repositories
Andy Bavier88cd9f62019-11-26 16:22:33 -070050 Run Keyword If ${external_libs} Import Resource
Andy Baviera2691752019-11-27 12:18:38 -070051 ... ${CURDIR}/../../cord-tester/src/test/cord-api/Framework/Subscriber.robot
Andy Bavier88cd9f62019-11-26 16:22:33 -070052 Run Keyword If ${external_libs} Import Resource
Andy Baviera2691752019-11-27 12:18:38 -070053 ... ${CURDIR}/../../cord-tester/src/test/cord-api/Framework/OLT.robot
Andy Bavier88cd9f62019-11-26 16:22:33 -070054 Run Keyword If ${external_libs} Import Resource
Andy Baviera2691752019-11-27 12:18:38 -070055 ... ${CURDIR}/../../cord-tester/src/test/cord-api/Framework/DHCP.robot
Andy Bavier88cd9f62019-11-26 16:22:33 -070056 Run Keyword If ${external_libs} Import Resource
Andy Baviera2691752019-11-27 12:18:38 -070057 ... ${CURDIR}/../../cord-tester/src/test/cord-api/Framework/Kubernetes.robot
Andy Bavier88cd9f62019-11-26 16:22:33 -070058 Set Global Variable ${KUBECTL_CONFIG} export KUBECONFIG=%{KUBECONFIG}
59 Set Global Variable ${VOLTCTL_CONFIG} export VOLTCONFIG=%{VOLTCONFIG}
60 ${k8s_node_ip}= Evaluate ${nodes}[0].get("ip")
61 ${k8s_node_user}= Evaluate ${nodes}[0].get("user")
62 ${k8s_node_pass}= Evaluate ${nodes}[0].get("pass")
63 Check CLI Tools Configured
64 ${onos_auth}= Create List karaf karaf
65 ${HEADERS} Create Dictionary Content-Type=application/json
66 Create Session ONOS http://${k8s_node_ip}:${ONOS_REST_PORT} auth=${ONOS_AUTH}
67 ${olt_ip}= Evaluate ${olts}[0].get("ip")
68 ${olt_user}= Evaluate ${olts}[0].get("user")
69 ${olt_pass}= Evaluate ${olts}[0].get("pass")
70 ${olt_serial_number}= Evaluate ${olts}[0].get("serial")
71 ${num_onus}= Get Length ${hosts.src}
72 ${num_onus}= Convert to String ${num_onus}
73 #send sadis file to onos
Andy Baviera2691752019-11-27 12:18:38 -070074 ${sadis_file}= Get Variable Value ${sadis.file}
Zack Williamsa8fe75a2020-01-10 14:25:27 -070075 Log To Console \nSadis File:${sadis_file}
Andy Bavier88cd9f62019-11-26 16:22:33 -070076 Run Keyword Unless '${sadis_file}' is '${None}' Send File To Onos ${sadis_file} apps/
77 Set Suite Variable ${num_onus}
78 Set Suite Variable ${olt_serial_number}
79 Set Suite Variable ${olt_ip}
80 Set Suite Variable ${olt_user}
81 Set Suite Variable ${olt_pass}
82 Set Suite Variable ${k8s_node_ip}
83 Set Suite Variable ${k8s_node_user}
84 Set Suite Variable ${k8s_node_pass}
85 @{container_list}= Create List adapter-open-olt adapter-open-onu voltha-api-server
86 ... voltha-ro-core voltha-rw-core-11 voltha-rw-core-12 voltha-ofagent
87 Set Suite Variable ${container_list}
88 ${datetime}= Get Current Date
suraj gour7f6d5fe2019-11-29 10:56:35 +000089 Set Suite Variable ${datetime}
90
91WPA Reassociate
suraj gour7f6d5fe2019-11-29 10:56:35 +000092 [Documentation] Executes a particular wpa_cli reassociate, which performs force reassociation
Zack Williamsa8fe75a2020-01-10 14:25:27 -070093 [Arguments] ${iface} ${ip} ${user} ${pass}=${None}
94 ... ${container_type}=${None} ${container_name}=${None}
suraj gour7f6d5fe2019-11-29 10:56:35 +000095 #Below for loops are used instead of sleep time, to execute reassociate command and check status
Zack Williamsa8fe75a2020-01-10 14:25:27 -070096 FOR ${i} IN RANGE 70
97 ${output}= Login And Run Command On Remote System
98 ... wpa_cli -i ${iface} reassociate ${ip} ${user}
99 ... ${pass} ${container_type} ${container_name}
100 ${passed}= Run Keyword And Return Status Should Contain ${output} OK
101 Run Keyword If ${passed} Exit For Loop
102 END
103 FOR ${i} IN RANGE 70
104 ${output}= Login And Run Command On Remote System
105 ... wpa_cli status | grep SUCCESS ${ip} ${user}
106 ... ${pass} ${container_type} ${container_name}
107 ${passed}= Run Keyword And Return Status Should Contain ${output} SUCCESS
108 Run Keyword If ${passed} Exit For Loop
109 END
110
suraj gour7f6d5fe2019-11-29 10:56:35 +0000111Validate Authentication After Reassociate
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700112 [Arguments] ${auth_pass} ${iface} ${ip} ${user} ${pass}=${None}
113 ... ${container_type}=${None} ${container_name}=${None}
114 [Documentation]
115 ... Executes a particular reassociate request on the RG using wpa_cli.
116 ... auth_pass determines if authentication should pass
suraj gour7f6d5fe2019-11-29 10:56:35 +0000117 WPA Reassociate ${iface} ${ip} ${user} ${pass} ${container_type} ${container_name}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700118 Run Keyword If '${auth_pass}' == 'True' Wait Until Keyword Succeeds ${timeout} 2s
119 ... Check Remote File Contents True /tmp/wpa.log authentication completed successfully
120 ... ${ip} ${user} ${pass} ${container_type} ${container_name}
suraj gour7f6d5fe2019-11-29 10:56:35 +0000121 Run Keyword If '${auth_pass}' == 'False' Sleep 20s
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700122 Run Keyword If '${auth_pass}' == 'False' Check Remote File Contents False /tmp/wpa.log
123 ... authentication completed successfully ${ip} ${user} ${pass}
124 ... ${container_type} ${container_name}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000125
126Send Dhclient Request To Release Assigned IP
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700127 [Arguments] ${iface} ${ip} ${user} ${path_dhcpleasefile} ${pass}=${None}
128 ... ${container_type}=${None} ${container_name}=${None}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000129 [Documentation] Executes a dhclient with option to release ip against a particular interface on the RG (src)
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700130 ${result}= Login And Run Command On Remote System
131 ... dhclient -nw -r ${iface} && rm ${path_dhcpleasefile}/dhclient.* ${ip} ${user}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000132 ... ${pass} ${container_type} ${container_name}
133 Log ${result}
134 #Should Contain ${result} DHCPRELEASE
135 [Return] ${result}
suraj gour1ecfae92019-12-20 15:11:40 +0000136
137Check Remote File Contents For WPA Logs
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700138 [Arguments] ${file_should_exist} ${file} ${pattern} ${ip} ${user} ${pass}=${None}
139 ... ${container_type}=${None} ${container_name}=${None} ${prompt}=~$
suraj gour1ecfae92019-12-20 15:11:40 +0000140 [Documentation] Checks for particular pattern count in a file
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700141 ${result}= Login And Run Command On Remote System
142 ... cat ${file} | grep '${pattern}' | wc -l ${ip} ${user} ${pass}
suraj gour1ecfae92019-12-20 15:11:40 +0000143 ... ${container_type} ${container_name} ${prompt}
144 [Return] ${result}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000145
146Perform Sanity Test
147 [Documentation] This keyword performs Sanity Test Procedure
148 ... Sanity test performs authentication, dhcp and pings for all the ONUs given for the POD
149 ... This keyword can be used to call in any other tests where sanity check is required
150 ... and avoids duplication of code.
151 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number}
152 Set Global Variable ${of_id}
153 FOR ${I} IN RANGE 0 ${num_onus}
154 ${src}= Set Variable ${hosts.src[${I}]}
155 ${dst}= Set Variable ${hosts.dst[${I}]}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000156 ${onu_device_id}= Get Device ID From SN ${src['onu']}
157 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
158 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800159 # Check ONU port is Enabled in ONOS
160 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
161 ... Verify ONU Port Is Enabled ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port}
162 # Verify EAPOL flows are added for the ONU port
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000163 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
164 ... Verify Eapol Flows Added For ONU ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port}
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800165 # Verify ONU state in voltha
166 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
167 ... ENABLED ACTIVE REACHABLE
168 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
169 # Perform Authentication
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000170 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True
171 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
172 ... ${src['container_type']} ${src['container_name']}
173 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
174 ... Verify ONU in AAA-Users ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port}
175 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
176 ... Execute ONOS CLI Command ${k8s_node_ip} ${ONOS_SSH_PORT}
177 ... volt-add-subscriber-access ${of_id} ${onu_port}
178 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
179 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
180 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
181 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
182 ... ${dst['container_name']}
183 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
184 ... Validate Subscriber DHCP Allocation ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port}
185 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
186 Run Keyword and Ignore Error Collect Logs
187 END
188
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000189Perform Sanity Test DT
190 [Documentation] This keyword performs Sanity Test Procedure for DT Workflow
191 ... Sanity test performs dhcp and pings (without EAPOL and DHCP flows) for all the ONUs given for the POD
192 ... This keyword can be used to call in any other tests where sanity check is required
193 ... and avoids duplication of code.
194 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number}
195 Set Global Variable ${of_id}
196 FOR ${I} IN RANGE 0 ${num_onus}
197 ${src}= Set Variable ${hosts.src[${I}]}
198 ${dst}= Set Variable ${hosts.dst[${I}]}
199 ${onu_device_id}= Get Device ID From SN ${src['onu']}
200 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
201 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
202 # Check ONU port is Enabled in ONOS
203 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
204 ... Verify ONU Port Is Enabled ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port}
205 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
206 ... Execute ONOS CLI Command ${k8s_node_ip} ${ONOS_SSH_PORT}
207 ... volt-add-subscriber-access ${of_id} ${onu_port}
208 # Verify ONU state in voltha
209 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
210 ... ENABLED ACTIVE REACHABLE
211 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
212 # TODO: Yet to Verify on the Physical POD
213 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
214 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
215 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
216 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
217 ... ${dst['container_name']}
218 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
219 Run Keyword and Ignore Error Collect Logs
220 END
221 # Verify VOLTHA Flows (TODO: Add verification for ONOS Flows)
222 # Number of per OLT Flows equals Twice the Number of Active ONUs (each for downstream and upstream) + 1 for LLDP
223 ${olt_flows}= Evaluate 2 * ${num_onus} + 1
224 # Number of per ONU Flows equals 2 (one each for downstream and upstream)
225 ${onu_flows}= Set Variable 2
226 Run Keyword Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Flows ${olt_flows}
227 ${List_ONU_Serial} Create List
228 Set Suite Variable ${List_ONU_Serial}
229 Build ONU SN List ${List_ONU_Serial}
230 Log ${List_ONU_Serial}
231 Run Keyword Wait Until Keyword Succeeds ${timeout} 5s Validate ONU Flows
232 ... ${List_ONU_Serial} ${onu_flows}
233
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000234Setup
235 [Documentation] Pre-test Setup
236 #test for empty device list
237 Test Empty Device List
238 Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds 120s 10s Openolt is Up
239 ... ${olt_ip} ${olt_user} ${olt_pass}
240 Sleep 60s
241 #create/preprovision device
242 ${olt_device_id}= Create Device ${olt_ip} ${OLT_PORT}
243 Set Suite Variable ${olt_device_id}
244 #validate olt states
245 Wait Until Keyword Succeeds ${timeout} 5s
246 ... Validate OLT Device PREPROVISIONED UNKNOWN UNKNOWN ${EMPTY} ${olt_device_id}
Suchitra Vemuria7e8ad22020-02-11 18:02:40 -0800247 Sleep 5s
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000248 Enable Device ${olt_device_id}
249 Wait Until Keyword Succeeds ${timeout} 5s
250 ... Validate OLT Device ENABLED ACTIVE REACHABLE ${olt_serial_number}
251 ${logical_id}= Get Logical Device ID From SN ${olt_serial_number}
252 Set Suite Variable ${logical_id}
253
254Delete All Devices and Verify
255 [Documentation] Remove any devices from VOLTHA and ONOS
256 # Clear devices from VOLTHA
257 Disable Devices In Voltha Root=true
258 Wait Until Keyword Succeeds ${timeout} 2s Test Devices Disabled In Voltha Root=true
259 Delete Devices In Voltha Root=true
260 Wait Until Keyword Succeeds ${timeout} 2s Test Empty Device List
261 # Clear devices from ONOS
262 Remove All Devices From ONOS
263 ... http://karaf:karaf@${k8s_node_ip}:${ONOS_REST_PORT}
264
265Teardown
266 [Documentation] kills processes and cleans up interfaces on src+dst servers
267 Run Keyword If ${has_dataplane} Clean Up Linux
268 Run Keyword If ${external_libs} Run Keyword and Ignore Error
269 ... Log Kubernetes Containers Logs Since Time
270 ... ${datetime} ${container_list}
271
272Teardown Suite
273 [Documentation] Clean up device if desired
274 Run Keyword If ${teardown_device} Delete All Devices and Verify
275
276Delete Device and Verify
277 [Documentation] Disable -> Delete devices via voltctl and verify its removed
Suchitra Vemuri2fa9bba2020-01-22 17:38:48 -0800278 ${olt_device_id}= Get Device ID From SN ${olt_serial_number}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000279 ${rc} ${output}= Run and Return Rc and Output
280 ... ${VOLTCTL_CONFIG}; voltctl device disable ${olt_device_id}
281 Should Be Equal As Integers ${rc} 0
282 Sleep 5s
283 Wait Until Keyword Succeeds ${timeout} 5s
284 ... Validate OLT Device DISABLED UNKNOWN REACHABLE ${olt_serial_number}
285 ${rc} ${output}= Run and Return Rc and Output
286 ... ${VOLTCTL_CONFIG}; voltctl device delete ${olt_device_id}
287 Sleep 50s
288 Should Be Equal As Integers ${rc} 0
289 Wait Until Keyword Succeeds ${timeout} 5s Validate Device Removed ${olt_device_id}
290
Gayathri.Selvan283a63c2020-01-23 04:09:18 +0000291Repeat Sanity Test
292 [Documentation] This keyword performs Sanity Test Procedure
293 ... Sanity test performs authentication, dhcp and pings for all the ONUs given for the POD
294 ... This keyword can be used to call in any other tests where sanity check is required
295 ... with wpa reassociation
296 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number}
297 Set Global Variable ${of_id}
298 FOR ${I} IN RANGE 0 ${num_onus}
299 ${src}= Set Variable ${hosts.src[${I}]}
300 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800301 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
302 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
303 # Check ONU port is Enabled in ONOD
304 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
305 ... Verify ONU Port Is Enabled ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port}
306 # Verify EAPOL flows are added for the ONU port
307 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
308 ... Verify Eapol Flows Added For ONU ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port}
309 # Verify ONU state in voltha
Suchitra Vemurid1e27fb2020-02-01 16:34:37 -0800310 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
Suchitra Vemuri81e4f022020-02-01 13:16:02 -0800311 ... ENABLED ACTIVE REACHABLE
312 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800313 # Perform Authentication
Gayathri.Selvan283a63c2020-01-23 04:09:18 +0000314 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
315 ... Validate Authentication After Reassociate
316 ... True ${src['dp_iface_name']} ${src['ip']} ${src['user']} ${src['pass']}
317 ... ${src['container_type']} ${src['container_name']}
318 Wait Until Keyword Succeeds ${timeout} 2s
319 ... Verify ONU in AAA-Users ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port}
320 Wait Until Keyword Succeeds ${timeout} 2s
321 ... Execute ONOS CLI Command ${k8s_node_ip} ${ONOS_SSH_PORT}
322 ... volt-add-subscriber-access ${of_id} ${onu_port}
323 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
324 ... Validate DHCP and Ping True True
325 ... ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
326 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
327 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
328 ... ${dst['container_name']}
329 Wait Until Keyword Succeeds ${timeout} 2s Run Keyword And Continue On Failure
330 ... Validate Subscriber DHCP Allocation ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port}
331 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
332 Run Keyword and Ignore Error Collect Logs
333 END
Gayathri.Selvanb6a2b542020-01-24 07:24:23 +0000334
335Collect Logs
336 [Documentation] Collect Logs from voltha and onos cli for various commands
337 Run Keyword and Ignore Error Get Device List from Voltha
338 Run Keyword and Ignore Error Get Device Output from Voltha ${olt_device_id}
339 Run Keyword and Ignore Error Get Logical Device Output from Voltha ${logical_id}
340 Run Keyword If ${external_libs} Get ONOS Status ${k8s_node_ip}
Gayathri.Selvanf68ea4b2020-02-03 07:36:39 +0000341
342Verify ping is succesful except for given device
343 [Arguments] ${num_onus} ${exceptional_onu_id}
344 [Documentation] Checks that ping for all the devices are successful except the given ONU.
345 ${pingStatus} Set Variable True
346 FOR ${I} IN RANGE 0 ${num_onus}
347 ${src}= Set Variable ${hosts.src[${I}]}
348 ${dst}= Set Variable ${hosts.dst[${I}]}
349 ${onu_device_id}= Get Device ID From SN ${src['onu']}
350 ${pingStatus} Run Keyword If '${onu_device_id}' == '${exceptional_onu_id}' Set Variable False
351 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 60s 2s
352 ... Check Ping ${pingStatus} ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
353 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
354 END
Andy Bavier4a8450e2020-02-04 08:58:37 -0700355
356Announce Message
357 [Arguments] ${message}
358 [Documentation] Announce a message that will be picked up by the log aggregator
Andy Bavier1af971b2020-02-05 14:26:21 -0700359 Run Process kubectl run announcer -ti --rm --restart Never --image ubuntu
Andy Bavier4a8450e2020-02-04 08:58:37 -0700360 ... bash -- -c echo; sleep 1; echo ${message}; sleep 1; date --rfc-3339\=n ; sleep 1; echo; sleep 1
Suchitra Vemuria5fa3dd2020-02-04 14:38:49 -0800361
Andy Bavierabeba262020-02-07 16:22:16 -0700362Start Logging
363 [Arguments] ${label}
364 [Documentation] Start logging for test ${label}
365 ${kail_process}= Run Keyword If "${container_log_dir}" != "${None}" Start Process kail -n default
366 ... -n voltha cwd=${container_log_dir} stdout=${label}-combined.log
367 Set Test Variable ${kail_process}
368
369Stop Logging
370 [Arguments] ${label}
371 [Documentation] End logging for test; remove logfile if test passed
372 Run sync
373 Run Keyword If ${kail_process} Terminate Process ${kail_process}
374 ${test_logfile}= Run Keyword If "${container_log_dir}" != "${None}"
375 ... Join Path ${container_log_dir} ${label}-combined.log
376 Run Keyword If Test Passed Run Keyword If "${test_logfile}" != "${None}" Remove File ${test_logfile}
377
Suchitra Vemuria5fa3dd2020-02-04 14:38:49 -0800378Clean Up Linux
379 [Documentation] Kill processes and clean up interfaces on src+dst servers
380 FOR ${I} IN RANGE 0 ${num_onus}
381 ${src}= Set Variable ${hosts.src[${I}]}
382 ${dst}= Set Variable ${hosts.dst[${I}]}
383 Run Keyword And Ignore Error Kill Linux Process [w]pa_supplicant ${src['ip']}
384 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
385 Run Keyword And Ignore Error Kill Linux Process [d]hclient ${src['ip']}
386 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
387 Run Keyword If '${dst['ip']}' != '${None}' Run Keyword And Ignore Error
388 ... Kill Linux Process [d]hcpd ${dst['ip']} ${dst['user']}
389 ... ${dst['pass']} ${dst['container_type']} ${dst['container_name']}
390 Delete IP Addresses from Interface on Remote Host ${src['dp_iface_name']} ${src['ip']}
391 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
392 Run Keyword If '${dst['ip']}' != '${None}' Delete Interface on Remote Host
393 ... ${dst['dp_iface_name']}.${src['s_tag']} ${dst['ip']} ${dst['user']} ${dst['pass']}
394 ... ${dst['container_type']} ${dst['container_name']}
395 END
Scott Baker60e570d2020-02-02 22:10:13 -0800396
397Should Be Larger Than
398 [Documentation] Verify that value_1 is > value_2
399 [Arguments] ${value_1} ${value_2}
400 Run Keyword If ${value_1} <= ${value_2}
401 ... Fail The value ${value_1} is not larger than ${value_2}
402
Scott Bakeree675552020-02-11 10:43:34 -0800403Should Be Larger Than Or Equal To
404 [Documentation] Verify that value_1 is >= value_2
405 [Arguments] ${value_1} ${value_2}
406 Run Keyword If ${value_1} < ${value_2}
407 ... Fail The value ${value_1} is not larger than or equal to ${value_2}
408
Scott Baker60e570d2020-02-02 22:10:13 -0800409Should Be Float
410 [Documentation] Verify that value is a floating point number type
411 [Arguments] ${value}
412 ${type} Evaluate type(${value}).__name__
413 Should Be Equal ${type} float
414
Scott Bakeree675552020-02-11 10:43:34 -0800415Should Be Newer Than Or Equal To
416 [Documentation] Compare two RFC3339 dates
417 [Arguments] ${value_1} ${value_2}
418 ${unix_v1} Parse RFC3339 ${value_1}
419 ${unix_v2} Parse RFC3339 ${value_2}
420 Run Keyword If ${unix_v1} < ${unix_v2}
421 ... Fail The value ${value_1} is not newer than or equal to ${value_2}
422
Scott Baker60e570d2020-02-02 22:10:13 -0800423Get Current Time
424 [Documentation] Return the current time in RFC3339 format
425 ${output}= Run date -u +"%FT%T%:z"
426 [return] ${output}
Scott Bakeree675552020-02-11 10:43:34 -0800427
428Parse RFC3339
429 [Documentation] Parse an RFC3339 timestamp
430 [Arguments] ${dateStr}
431 ${rc} ${output}= Run and Return Rc and Output date --date="${dateStr}" "+%s"
432 Should Be Equal As Numbers ${rc} 0
433 [return] ${output}