blob: 908bfbc030580cd5cfc36d67aba7f9ac3e4fd7ae [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
Andy Bavier63460da2020-02-20 14:35:12 -070025Library CORDRobot
26Library ImportResource resources=CORDRobot
Kailash92764922019-07-25 08:21:39 -070027
28*** Keywords ***
Kailash528f7c02019-07-31 10:55:49 -070029Check CLI Tools Configured
30 [Documentation] Tests that use 'voltctl' and 'kubectl' should execute this keyword in suite setup
31 # check voltctl and kubectl configured
Zack Williamsa8fe75a2020-01-10 14:25:27 -070032 ${voltctl_rc}= Run And Return RC voltctl device list
33 ${kubectl_rc}= Run And Return RC kubectl get pods
Gilles Depatie675a2062019-10-22 12:44:42 -040034 Run Keyword If ${voltctl_rc} != 0 or ${kubectl_rc} != 0 FATAL ERROR
35 ... VOLTCTL and KUBECTL not configured. Please configure before executing tests.
Gilles Depatieb5682f82019-10-31 10:39:45 -040036
37Send File To Onos
Zack Williamsa8fe75a2020-01-10 14:25:27 -070038 [Documentation] Send the content of the file to Onos to selected section of configuration
39 ... using Post Request
40 [Arguments] ${CONFIG_FILE} ${section}
41 ${Headers}= Create Dictionary Content-Type application/json
42 ${File_Data}= OperatingSystem.Get File ${CONFIG_FILE}
43 Log ${Headers}
44 Log ${File_Data}
45 ${resp}= Post Request ONOS
46 ... /onos/v1/network/configuration/${section} headers=${Headers} data=${File_Data}
47 Should Be Equal As Strings ${resp.status_code} 200
Andy Bavier88cd9f62019-11-26 16:22:33 -070048
49Common Test Suite Setup
50 [Documentation] Setup the test suite
Andy Bavier88cd9f62019-11-26 16:22:33 -070051 Set Global Variable ${KUBECTL_CONFIG} export KUBECONFIG=%{KUBECONFIG}
52 Set Global Variable ${VOLTCTL_CONFIG} export VOLTCONFIG=%{VOLTCONFIG}
53 ${k8s_node_ip}= Evaluate ${nodes}[0].get("ip")
ubuntu6b6e7d42020-03-02 12:35:42 -080054 ${ONOS_REST_IP}= Get Environment Variable ONOS_REST_IP ${k8s_node_ip}
55 ${ONOS_SSH_IP}= Get Environment Variable ONOS_SSH_IP ${k8s_node_ip}
56 Set Global Variable ${ONOS_REST_IP}
57 Set Global Variable ${ONOS_SSH_IP}
Andy Bavier88cd9f62019-11-26 16:22:33 -070058 ${k8s_node_user}= Evaluate ${nodes}[0].get("user")
59 ${k8s_node_pass}= Evaluate ${nodes}[0].get("pass")
60 Check CLI Tools Configured
61 ${onos_auth}= Create List karaf karaf
62 ${HEADERS} Create Dictionary Content-Type=application/json
ubuntu6b6e7d42020-03-02 12:35:42 -080063 Create Session ONOS http://${ONOS_REST_IP}:${ONOS_REST_PORT} auth=${ONOS_AUTH}
Andy Bavier88cd9f62019-11-26 16:22:33 -070064 ${olt_ip}= Evaluate ${olts}[0].get("ip")
65 ${olt_user}= Evaluate ${olts}[0].get("user")
66 ${olt_pass}= Evaluate ${olts}[0].get("pass")
67 ${olt_serial_number}= Evaluate ${olts}[0].get("serial")
68 ${num_onus}= Get Length ${hosts.src}
69 ${num_onus}= Convert to String ${num_onus}
70 #send sadis file to onos
Andy Baviera2691752019-11-27 12:18:38 -070071 ${sadis_file}= Get Variable Value ${sadis.file}
Zack Williamsa8fe75a2020-01-10 14:25:27 -070072 Log To Console \nSadis File:${sadis_file}
Andy Bavier88cd9f62019-11-26 16:22:33 -070073 Run Keyword Unless '${sadis_file}' is '${None}' Send File To Onos ${sadis_file} apps/
74 Set Suite Variable ${num_onus}
75 Set Suite Variable ${olt_serial_number}
76 Set Suite Variable ${olt_ip}
77 Set Suite Variable ${olt_user}
78 Set Suite Variable ${olt_pass}
Andy Bavier88cd9f62019-11-26 16:22:33 -070079 @{container_list}= Create List adapter-open-olt adapter-open-onu voltha-api-server
80 ... voltha-ro-core voltha-rw-core-11 voltha-rw-core-12 voltha-ofagent
81 Set Suite Variable ${container_list}
82 ${datetime}= Get Current Date
suraj gour7f6d5fe2019-11-29 10:56:35 +000083 Set Suite Variable ${datetime}
84
85WPA Reassociate
suraj gour7f6d5fe2019-11-29 10:56:35 +000086 [Documentation] Executes a particular wpa_cli reassociate, which performs force reassociation
Zack Williamsa8fe75a2020-01-10 14:25:27 -070087 [Arguments] ${iface} ${ip} ${user} ${pass}=${None}
88 ... ${container_type}=${None} ${container_name}=${None}
suraj gour7f6d5fe2019-11-29 10:56:35 +000089 #Below for loops are used instead of sleep time, to execute reassociate command and check status
Zack Williamsa8fe75a2020-01-10 14:25:27 -070090 FOR ${i} IN RANGE 70
91 ${output}= Login And Run Command On Remote System
92 ... wpa_cli -i ${iface} reassociate ${ip} ${user}
93 ... ${pass} ${container_type} ${container_name}
94 ${passed}= Run Keyword And Return Status Should Contain ${output} OK
95 Run Keyword If ${passed} Exit For Loop
96 END
97 FOR ${i} IN RANGE 70
98 ${output}= Login And Run Command On Remote System
Andy Bavierae4a17e2020-02-25 14:54:36 -070099 ... wpa_cli -i ${iface} status | grep SUCCESS ${ip} ${user}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700100 ... ${pass} ${container_type} ${container_name}
101 ${passed}= Run Keyword And Return Status Should Contain ${output} SUCCESS
102 Run Keyword If ${passed} Exit For Loop
103 END
104
suraj gour7f6d5fe2019-11-29 10:56:35 +0000105Validate Authentication After Reassociate
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700106 [Arguments] ${auth_pass} ${iface} ${ip} ${user} ${pass}=${None}
107 ... ${container_type}=${None} ${container_name}=${None}
108 [Documentation]
109 ... Executes a particular reassociate request on the RG using wpa_cli.
110 ... auth_pass determines if authentication should pass
Andy Bavier84834d42020-02-25 13:49:50 -0700111 ${wpa_log}= Catenate SEPARATOR=. /tmp/wpa ${iface} log
112 ${output}= Login And Run Command On Remote System truncate -s 0 ${wpa_log}; cat ${wpa_log}
113 ... ${ip} ${user} ${pass} ${container_type} ${container_name}
114 Log ${output}
115 Should Not Contain ${output} authentication completed successfully
suraj gour7f6d5fe2019-11-29 10:56:35 +0000116 WPA Reassociate ${iface} ${ip} ${user} ${pass} ${container_type} ${container_name}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700117 Run Keyword If '${auth_pass}' == 'True' Wait Until Keyword Succeeds ${timeout} 2s
Andy Bavier84834d42020-02-25 13:49:50 -0700118 ... Check Remote File Contents True ${wpa_log} ${iface}.*authentication completed successfully
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700119 ... ${ip} ${user} ${pass} ${container_type} ${container_name}
suraj gour7f6d5fe2019-11-29 10:56:35 +0000120 Run Keyword If '${auth_pass}' == 'False' Sleep 20s
Suchitra Vemuri3cb29f82020-02-25 13:59:58 -0800121 Run Keyword If '${auth_pass}' == 'False' Check Remote File Contents False /tmp/wpa.log
Andy Bavier84834d42020-02-25 13:49:50 -0700122 ... ${iface}.*authentication completed successfully ${ip} ${user} ${pass}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700123 ... ${container_type} ${container_name}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000124
125Send Dhclient Request To Release Assigned IP
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700126 [Arguments] ${iface} ${ip} ${user} ${path_dhcpleasefile} ${pass}=${None}
127 ... ${container_type}=${None} ${container_name}=${None}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000128 [Documentation] Executes a dhclient with option to release ip against a particular interface on the RG (src)
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700129 ${result}= Login And Run Command On Remote System
130 ... dhclient -nw -r ${iface} && rm ${path_dhcpleasefile}/dhclient.* ${ip} ${user}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000131 ... ${pass} ${container_type} ${container_name}
132 Log ${result}
133 #Should Contain ${result} DHCPRELEASE
134 [Return] ${result}
suraj gour1ecfae92019-12-20 15:11:40 +0000135
136Check Remote File Contents For WPA Logs
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700137 [Arguments] ${file_should_exist} ${file} ${pattern} ${ip} ${user} ${pass}=${None}
138 ... ${container_type}=${None} ${container_name}=${None} ${prompt}=~$
suraj gour1ecfae92019-12-20 15:11:40 +0000139 [Documentation] Checks for particular pattern count in a file
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700140 ${result}= Login And Run Command On Remote System
141 ... cat ${file} | grep '${pattern}' | wc -l ${ip} ${user} ${pass}
suraj gour1ecfae92019-12-20 15:11:40 +0000142 ... ${container_type} ${container_name} ${prompt}
143 [Return] ${result}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000144
145Perform Sanity Test
146 [Documentation] This keyword performs Sanity Test Procedure
147 ... Sanity test performs authentication, dhcp and pings for all the ONUs given for the POD
148 ... This keyword can be used to call in any other tests where sanity check is required
149 ... and avoids duplication of code.
150 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number}
151 Set Global Variable ${of_id}
152 FOR ${I} IN RANGE 0 ${num_onus}
153 ${src}= Set Variable ${hosts.src[${I}]}
154 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuri03005912020-02-20 18:59:46 -0800155 Run Keyword and Ignore Error Collect Logs
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
ubuntu6b6e7d42020-03-02 12:35:42 -0800161 ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800162 # 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
ubuntu6b6e7d42020-03-02 12:35:42 -0800164 ... Verify Eapol Flows Added For ONU ${ONOS_SSH_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
Andy Bavier84834d42020-02-25 13:49:50 -0700170 ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=.
171 ... /tmp/wpa ${src['dp_iface_name']} log
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000172 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True
173 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
Andy Bavier84834d42020-02-25 13:49:50 -0700174 ... ${src['container_type']} ${src['container_name']} ${wpa_log}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000175 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
ubuntu6b6e7d42020-03-02 12:35:42 -0800176 ... Verify ONU in AAA-Users ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000177 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
ubuntu6b6e7d42020-03-02 12:35:42 -0800178 ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000179 ... volt-add-subscriber-access ${of_id} ${onu_port}
Suchitra Vemuri9da44302020-03-04 14:24:49 -0800180 # Verify that no pending flows exist for the ONU port
181 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
182 ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000183 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
184 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
185 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
186 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
187 ... ${dst['container_name']}
188 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
ubuntu6b6e7d42020-03-02 12:35:42 -0800189 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000190 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
191 Run Keyword and Ignore Error Collect Logs
192 END
193
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000194Perform Sanity Test DT
195 [Documentation] This keyword performs Sanity Test Procedure for DT Workflow
196 ... Sanity test performs dhcp and pings (without EAPOL and DHCP flows) for all the ONUs given for the POD
197 ... This keyword can be used to call in any other tests where sanity check is required
198 ... and avoids duplication of code.
199 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number}
200 Set Global Variable ${of_id}
201 FOR ${I} IN RANGE 0 ${num_onus}
202 ${src}= Set Variable ${hosts.src[${I}]}
203 ${dst}= Set Variable ${hosts.dst[${I}]}
204 ${onu_device_id}= Get Device ID From SN ${src['onu']}
205 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
206 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
207 # Check ONU port is Enabled in ONOS
208 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
ubuntu6b6e7d42020-03-02 12:35:42 -0800209 ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000210 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
ubuntu6b6e7d42020-03-02 12:35:42 -0800211 ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000212 ... volt-add-subscriber-access ${of_id} ${onu_port}
213 # Verify ONU state in voltha
214 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
215 ... ENABLED ACTIVE REACHABLE
216 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
217 # TODO: Yet to Verify on the Physical POD
218 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
219 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
220 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
221 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
222 ... ${dst['container_name']}
223 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
224 Run Keyword and Ignore Error Collect Logs
225 END
226 # Verify VOLTHA Flows (TODO: Add verification for ONOS Flows)
227 # Number of per OLT Flows equals Twice the Number of Active ONUs (each for downstream and upstream) + 1 for LLDP
228 ${olt_flows}= Evaluate 2 * ${num_onus} + 1
229 # Number of per ONU Flows equals 2 (one each for downstream and upstream)
230 ${onu_flows}= Set Variable 2
231 Run Keyword Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Flows ${olt_flows}
232 ${List_ONU_Serial} Create List
233 Set Suite Variable ${List_ONU_Serial}
234 Build ONU SN List ${List_ONU_Serial}
235 Log ${List_ONU_Serial}
236 Run Keyword Wait Until Keyword Succeeds ${timeout} 5s Validate ONU Flows
237 ... ${List_ONU_Serial} ${onu_flows}
238
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000239Setup
240 [Documentation] Pre-test Setup
241 #test for empty device list
242 Test Empty Device List
243 Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds 120s 10s Openolt is Up
244 ... ${olt_ip} ${olt_user} ${olt_pass}
245 Sleep 60s
246 #create/preprovision device
247 ${olt_device_id}= Create Device ${olt_ip} ${OLT_PORT}
248 Set Suite Variable ${olt_device_id}
249 #validate olt states
250 Wait Until Keyword Succeeds ${timeout} 5s
ubuntu6b6e7d42020-03-02 12:35:42 -0800251 ... Validate OLT Device PREPROVISIONED UNKNOWN UNKNOWN ${olt_device_id}
Suchitra Vemuria7e8ad22020-02-11 18:02:40 -0800252 Sleep 5s
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000253 Enable Device ${olt_device_id}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800254 Wait Until Keyword Succeeds 180s 5s
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000255 ... Validate OLT Device ENABLED ACTIVE REACHABLE ${olt_serial_number}
256 ${logical_id}= Get Logical Device ID From SN ${olt_serial_number}
257 Set Suite Variable ${logical_id}
258
259Delete All Devices and Verify
260 [Documentation] Remove any devices from VOLTHA and ONOS
261 # Clear devices from VOLTHA
262 Disable Devices In Voltha Root=true
263 Wait Until Keyword Succeeds ${timeout} 2s Test Devices Disabled In Voltha Root=true
264 Delete Devices In Voltha Root=true
265 Wait Until Keyword Succeeds ${timeout} 2s Test Empty Device List
266 # Clear devices from ONOS
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800267 #Remove All Devices From ONOS
ubuntu6b6e7d42020-03-02 12:35:42 -0800268 #... http://karaf:karaf@${ONOS_REST_IP}:${ONOS_REST_PORT}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000269
270Teardown
271 [Documentation] kills processes and cleans up interfaces on src+dst servers
272 Run Keyword If ${has_dataplane} Clean Up Linux
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000273
274Teardown Suite
275 [Documentation] Clean up device if desired
276 Run Keyword If ${teardown_device} Delete All Devices and Verify
277
278Delete Device and Verify
279 [Documentation] Disable -> Delete devices via voltctl and verify its removed
Suchitra Vemuri2fa9bba2020-01-22 17:38:48 -0800280 ${olt_device_id}= Get Device ID From SN ${olt_serial_number}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000281 ${rc} ${output}= Run and Return Rc and Output
282 ... ${VOLTCTL_CONFIG}; voltctl device disable ${olt_device_id}
283 Should Be Equal As Integers ${rc} 0
284 Sleep 5s
285 Wait Until Keyword Succeeds ${timeout} 5s
286 ... Validate OLT Device DISABLED UNKNOWN REACHABLE ${olt_serial_number}
287 ${rc} ${output}= Run and Return Rc and Output
288 ... ${VOLTCTL_CONFIG}; voltctl device delete ${olt_device_id}
289 Sleep 50s
290 Should Be Equal As Integers ${rc} 0
291 Wait Until Keyword Succeeds ${timeout} 5s Validate Device Removed ${olt_device_id}
292
Gayathri.Selvan283a63c2020-01-23 04:09:18 +0000293Repeat Sanity Test
294 [Documentation] This keyword performs Sanity Test Procedure
295 ... Sanity test performs authentication, dhcp and pings for all the ONUs given for the POD
296 ... This keyword can be used to call in any other tests where sanity check is required
297 ... with wpa reassociation
298 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number}
299 Set Global Variable ${of_id}
300 FOR ${I} IN RANGE 0 ${num_onus}
Suchitra Vemuri03005912020-02-20 18:59:46 -0800301 Run Keyword and Ignore Error Collect Logs
Gayathri.Selvan283a63c2020-01-23 04:09:18 +0000302 ${src}= Set Variable ${hosts.src[${I}]}
303 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800304 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
305 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
306 # Check ONU port is Enabled in ONOD
307 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
David K. Bainbridgec0617c92020-03-05 21:17:19 -0800308 ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800309 # Verify EAPOL flows are added for the ONU port
310 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
David K. Bainbridgec0617c92020-03-05 21:17:19 -0800311 ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800312 # Verify ONU state in voltha
Suchitra Vemurid1e27fb2020-02-01 16:34:37 -0800313 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
Suchitra Vemuri81e4f022020-02-01 13:16:02 -0800314 ... ENABLED ACTIVE REACHABLE
315 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800316 # Perform Authentication
Gayathri.Selvan283a63c2020-01-23 04:09:18 +0000317 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
318 ... Validate Authentication After Reassociate
319 ... True ${src['dp_iface_name']} ${src['ip']} ${src['user']} ${src['pass']}
320 ... ${src['container_type']} ${src['container_name']}
321 Wait Until Keyword Succeeds ${timeout} 2s
David K. Bainbridgec0617c92020-03-05 21:17:19 -0800322 ... Verify ONU in AAA-Users ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Gayathri.Selvan283a63c2020-01-23 04:09:18 +0000323 Wait Until Keyword Succeeds ${timeout} 2s
David K. Bainbridgec0617c92020-03-05 21:17:19 -0800324 ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
Gayathri.Selvan283a63c2020-01-23 04:09:18 +0000325 ... volt-add-subscriber-access ${of_id} ${onu_port}
326 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
327 ... Validate DHCP and Ping True True
328 ... ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
329 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
330 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
331 ... ${dst['container_name']}
332 Wait Until Keyword Succeeds ${timeout} 2s Run Keyword And Continue On Failure
David K. Bainbridgec0617c92020-03-05 21:17:19 -0800333 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Gayathri.Selvan283a63c2020-01-23 04:09:18 +0000334 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
335 Run Keyword and Ignore Error Collect Logs
336 END
Gayathri.Selvanb6a2b542020-01-24 07:24:23 +0000337
338Collect Logs
339 [Documentation] Collect Logs from voltha and onos cli for various commands
340 Run Keyword and Ignore Error Get Device List from Voltha
341 Run Keyword and Ignore Error Get Device Output from Voltha ${olt_device_id}
342 Run Keyword and Ignore Error Get Logical Device Output from Voltha ${logical_id}
ubuntu6b6e7d42020-03-02 12:35:42 -0800343 Get ONOS Status ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
Gayathri.Selvanf68ea4b2020-02-03 07:36:39 +0000344
345Verify ping is succesful except for given device
346 [Arguments] ${num_onus} ${exceptional_onu_id}
347 [Documentation] Checks that ping for all the devices are successful except the given ONU.
348 ${pingStatus} Set Variable True
349 FOR ${I} IN RANGE 0 ${num_onus}
350 ${src}= Set Variable ${hosts.src[${I}]}
351 ${dst}= Set Variable ${hosts.dst[${I}]}
352 ${onu_device_id}= Get Device ID From SN ${src['onu']}
353 ${pingStatus} Run Keyword If '${onu_device_id}' == '${exceptional_onu_id}' Set Variable False
354 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 60s 2s
355 ... Check Ping ${pingStatus} ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
356 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
357 END
Andy Bavier4a8450e2020-02-04 08:58:37 -0700358
359Announce Message
360 [Arguments] ${message}
361 [Documentation] Announce a message that will be picked up by the log aggregator
Andy Bavier1af971b2020-02-05 14:26:21 -0700362 Run Process kubectl run announcer -ti --rm --restart Never --image ubuntu
Andy Bavier4a8450e2020-02-04 08:58:37 -0700363 ... 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 -0800364
Andy Bavierabeba262020-02-07 16:22:16 -0700365Start Logging
366 [Arguments] ${label}
367 [Documentation] Start logging for test ${label}
368 ${kail_process}= Run Keyword If "${container_log_dir}" != "${None}" Start Process kail -n default
369 ... -n voltha cwd=${container_log_dir} stdout=${label}-combined.log
370 Set Test Variable ${kail_process}
371
372Stop Logging
373 [Arguments] ${label}
374 [Documentation] End logging for test; remove logfile if test passed
375 Run sync
376 Run Keyword If ${kail_process} Terminate Process ${kail_process}
377 ${test_logfile}= Run Keyword If "${container_log_dir}" != "${None}"
378 ... Join Path ${container_log_dir} ${label}-combined.log
379 Run Keyword If Test Passed Run Keyword If "${test_logfile}" != "${None}" Remove File ${test_logfile}
380
Suchitra Vemuria5fa3dd2020-02-04 14:38:49 -0800381Clean Up Linux
382 [Documentation] Kill processes and clean up interfaces on src+dst servers
383 FOR ${I} IN RANGE 0 ${num_onus}
384 ${src}= Set Variable ${hosts.src[${I}]}
385 ${dst}= Set Variable ${hosts.dst[${I}]}
386 Run Keyword And Ignore Error Kill Linux Process [w]pa_supplicant ${src['ip']}
387 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
388 Run Keyword And Ignore Error Kill Linux Process [d]hclient ${src['ip']}
389 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
390 Run Keyword If '${dst['ip']}' != '${None}' Run Keyword And Ignore Error
391 ... Kill Linux Process [d]hcpd ${dst['ip']} ${dst['user']}
392 ... ${dst['pass']} ${dst['container_type']} ${dst['container_name']}
393 Delete IP Addresses from Interface on Remote Host ${src['dp_iface_name']} ${src['ip']}
394 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
395 Run Keyword If '${dst['ip']}' != '${None}' Delete Interface on Remote Host
396 ... ${dst['dp_iface_name']}.${src['s_tag']} ${dst['ip']} ${dst['user']} ${dst['pass']}
397 ... ${dst['container_type']} ${dst['container_name']}
398 END
Scott Baker60e570d2020-02-02 22:10:13 -0800399
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800400Clean WPA Process
401 [Documentation] Kills wpa_supplicant processes only for all RGs
402 FOR ${I} IN RANGE 0 ${num_onus}
403 ${src}= Set Variable ${hosts.src[${I}]}
404 ${dst}= Set Variable ${hosts.dst[${I}]}
405 Run Keyword And Ignore Error Kill Linux Process [w]pa_supplicant ${src['ip']}
406 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
407 END
408
Scott Baker60e570d2020-02-02 22:10:13 -0800409Should Be Larger Than
410 [Documentation] Verify that value_1 is > value_2
411 [Arguments] ${value_1} ${value_2}
412 Run Keyword If ${value_1} <= ${value_2}
413 ... Fail The value ${value_1} is not larger than ${value_2}
414
Scott Bakeree675552020-02-11 10:43:34 -0800415Should Be Larger Than Or Equal To
416 [Documentation] Verify that value_1 is >= value_2
417 [Arguments] ${value_1} ${value_2}
418 Run Keyword If ${value_1} < ${value_2}
419 ... Fail The value ${value_1} is not larger than or equal to ${value_2}
420
Scott Baker60e570d2020-02-02 22:10:13 -0800421Should Be Float
422 [Documentation] Verify that value is a floating point number type
423 [Arguments] ${value}
424 ${type} Evaluate type(${value}).__name__
425 Should Be Equal ${type} float
426
Scott Bakeree675552020-02-11 10:43:34 -0800427Should Be Newer Than Or Equal To
428 [Documentation] Compare two RFC3339 dates
429 [Arguments] ${value_1} ${value_2}
430 ${unix_v1} Parse RFC3339 ${value_1}
431 ${unix_v2} Parse RFC3339 ${value_2}
432 Run Keyword If ${unix_v1} < ${unix_v2}
433 ... Fail The value ${value_1} is not newer than or equal to ${value_2}
434
Scott Baker60e570d2020-02-02 22:10:13 -0800435Get Current Time
436 [Documentation] Return the current time in RFC3339 format
437 ${output}= Run date -u +"%FT%T%:z"
438 [return] ${output}
Scott Bakeree675552020-02-11 10:43:34 -0800439
440Parse RFC3339
441 [Documentation] Parse an RFC3339 timestamp
442 [Arguments] ${dateStr}
443 ${rc} ${output}= Run and Return Rc and Output date --date="${dateStr}" "+%s"
444 Should Be Equal As Numbers ${rc} 0
445 [return] ${output}