blob: 8bc495e90a88d1339aa6ac2d1ea809a1bca8fbc0 [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")
Suchitra Vemuri919c2e72020-07-15 15:23:15 -070065 ${olt_ssh_ip}= Evaluate ${olts}[0].get("sship")
Andy Bavier88cd9f62019-11-26 16:22:33 -070066 ${olt_user}= Evaluate ${olts}[0].get("user")
67 ${olt_pass}= Evaluate ${olts}[0].get("pass")
68 ${olt_serial_number}= Evaluate ${olts}[0].get("serial")
69 ${num_onus}= Get Length ${hosts.src}
70 ${num_onus}= Convert to String ${num_onus}
71 #send sadis file to onos
Andy Baviera2691752019-11-27 12:18:38 -070072 ${sadis_file}= Get Variable Value ${sadis.file}
Zack Williamsa8fe75a2020-01-10 14:25:27 -070073 Log To Console \nSadis File:${sadis_file}
Andy Bavier88cd9f62019-11-26 16:22:33 -070074 Run Keyword Unless '${sadis_file}' is '${None}' Send File To Onos ${sadis_file} apps/
75 Set Suite Variable ${num_onus}
76 Set Suite Variable ${olt_serial_number}
77 Set Suite Variable ${olt_ip}
Suchitra Vemuri919c2e72020-07-15 15:23:15 -070078 Set Suite Variable ${olt_sship}
Andy Bavier88cd9f62019-11-26 16:22:33 -070079 Set Suite Variable ${olt_user}
80 Set Suite Variable ${olt_pass}
Andy Bavier88cd9f62019-11-26 16:22:33 -070081 @{container_list}= Create List adapter-open-olt adapter-open-onu voltha-api-server
82 ... voltha-ro-core voltha-rw-core-11 voltha-rw-core-12 voltha-ofagent
83 Set Suite Variable ${container_list}
84 ${datetime}= Get Current Date
suraj gour7f6d5fe2019-11-29 10:56:35 +000085 Set Suite Variable ${datetime}
86
87WPA Reassociate
suraj gour7f6d5fe2019-11-29 10:56:35 +000088 [Documentation] Executes a particular wpa_cli reassociate, which performs force reassociation
Zack Williamsa8fe75a2020-01-10 14:25:27 -070089 [Arguments] ${iface} ${ip} ${user} ${pass}=${None}
90 ... ${container_type}=${None} ${container_name}=${None}
suraj gour7f6d5fe2019-11-29 10:56:35 +000091 #Below for loops are used instead of sleep time, to execute reassociate command and check status
Zack Williamsa8fe75a2020-01-10 14:25:27 -070092 FOR ${i} IN RANGE 70
93 ${output}= Login And Run Command On Remote System
94 ... wpa_cli -i ${iface} reassociate ${ip} ${user}
95 ... ${pass} ${container_type} ${container_name}
96 ${passed}= Run Keyword And Return Status Should Contain ${output} OK
Andy Bavierb63f6d22020-03-12 15:34:37 -070097 Exit For Loop If ${passed}
Zack Williamsa8fe75a2020-01-10 14:25:27 -070098 END
Andy Bavierb63f6d22020-03-12 15:34:37 -070099 Should Be True ${passed} Status does not contain 'SUCCESS'
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700100 FOR ${i} IN RANGE 70
101 ${output}= Login And Run Command On Remote System
Andy Bavierae4a17e2020-02-25 14:54:36 -0700102 ... wpa_cli -i ${iface} status | grep SUCCESS ${ip} ${user}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700103 ... ${pass} ${container_type} ${container_name}
104 ${passed}= Run Keyword And Return Status Should Contain ${output} SUCCESS
Andy Bavierb63f6d22020-03-12 15:34:37 -0700105 Exit For Loop If ${passed}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700106 END
Andy Bavierb63f6d22020-03-12 15:34:37 -0700107 Should Be True ${passed} Status does not contain 'SUCCESS'
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700108
suraj gour7f6d5fe2019-11-29 10:56:35 +0000109Validate Authentication After Reassociate
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700110 [Arguments] ${auth_pass} ${iface} ${ip} ${user} ${pass}=${None}
111 ... ${container_type}=${None} ${container_name}=${None}
112 [Documentation]
113 ... Executes a particular reassociate request on the RG using wpa_cli.
114 ... auth_pass determines if authentication should pass
Andy Bavier84834d42020-02-25 13:49:50 -0700115 ${wpa_log}= Catenate SEPARATOR=. /tmp/wpa ${iface} log
116 ${output}= Login And Run Command On Remote System truncate -s 0 ${wpa_log}; cat ${wpa_log}
117 ... ${ip} ${user} ${pass} ${container_type} ${container_name}
118 Log ${output}
119 Should Not Contain ${output} authentication completed successfully
suraj gour7f6d5fe2019-11-29 10:56:35 +0000120 WPA Reassociate ${iface} ${ip} ${user} ${pass} ${container_type} ${container_name}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700121 Run Keyword If '${auth_pass}' == 'True' Wait Until Keyword Succeeds ${timeout} 2s
Andy Bavier84834d42020-02-25 13:49:50 -0700122 ... Check Remote File Contents True ${wpa_log} ${iface}.*authentication completed successfully
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700123 ... ${ip} ${user} ${pass} ${container_type} ${container_name}
suraj gour7f6d5fe2019-11-29 10:56:35 +0000124 Run Keyword If '${auth_pass}' == 'False' Sleep 20s
Suchitra Vemuri3cb29f82020-02-25 13:59:58 -0800125 Run Keyword If '${auth_pass}' == 'False' Check Remote File Contents False /tmp/wpa.log
Andy Bavier84834d42020-02-25 13:49:50 -0700126 ... ${iface}.*authentication completed successfully ${ip} ${user} ${pass}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700127 ... ${container_type} ${container_name}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000128
129Send Dhclient Request To Release Assigned IP
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700130 [Arguments] ${iface} ${ip} ${user} ${path_dhcpleasefile} ${pass}=${None}
131 ... ${container_type}=${None} ${container_name}=${None}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000132 [Documentation] Executes a dhclient with option to release ip against a particular interface on the RG (src)
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700133 ${result}= Login And Run Command On Remote System
134 ... dhclient -nw -r ${iface} && rm ${path_dhcpleasefile}/dhclient.* ${ip} ${user}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000135 ... ${pass} ${container_type} ${container_name}
136 Log ${result}
137 #Should Contain ${result} DHCPRELEASE
138 [Return] ${result}
suraj gour1ecfae92019-12-20 15:11:40 +0000139
140Check Remote File Contents For WPA Logs
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700141 [Arguments] ${file_should_exist} ${file} ${pattern} ${ip} ${user} ${pass}=${None}
142 ... ${container_type}=${None} ${container_name}=${None} ${prompt}=~$
suraj gour1ecfae92019-12-20 15:11:40 +0000143 [Documentation] Checks for particular pattern count in a file
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700144 ${result}= Login And Run Command On Remote System
145 ... cat ${file} | grep '${pattern}' | wc -l ${ip} ${user} ${pass}
suraj gour1ecfae92019-12-20 15:11:40 +0000146 ... ${container_type} ${container_name} ${prompt}
147 [Return] ${result}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000148
149Perform Sanity Test
150 [Documentation] This keyword performs Sanity Test Procedure
151 ... Sanity test performs authentication, dhcp and pings for all the ONUs given for the POD
152 ... This keyword can be used to call in any other tests where sanity check is required
153 ... and avoids duplication of code.
154 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number}
155 Set Global Variable ${of_id}
Hardik Windlass21807632020-04-14 16:24:55 +0530156 ${nni_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
157 ... Get NNI Port in ONOS ${of_id}
158 Set Global Variable ${nni_port}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000159 FOR ${I} IN RANGE 0 ${num_onus}
160 ${src}= Set Variable ${hosts.src[${I}]}
161 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuri03005912020-02-20 18:59:46 -0800162 Run Keyword and Ignore Error Collect Logs
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000163 ${onu_device_id}= Get Device ID From SN ${src['onu']}
164 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
165 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800166 # Check ONU port is Enabled in ONOS
167 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
Suchitra Vemuri760bdd32020-06-17 12:34:48 -0700168 ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']}
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800169 # Verify EAPOL flows are added for the ONU port
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000170 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
ubuntu6b6e7d42020-03-02 12:35:42 -0800171 ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800172 # Verify ONU state in voltha
173 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
174 ... ENABLED ACTIVE REACHABLE
175 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
176 # Perform Authentication
Andy Bavier84834d42020-02-25 13:49:50 -0700177 ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=.
178 ... /tmp/wpa ${src['dp_iface_name']} log
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000179 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True
180 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
Andy Bavier84834d42020-02-25 13:49:50 -0700181 ... ${src['container_type']} ${src['container_name']} ${wpa_log}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000182 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
ubuntu6b6e7d42020-03-02 12:35:42 -0800183 ... Verify ONU in AAA-Users ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000184 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
ubuntu6b6e7d42020-03-02 12:35:42 -0800185 ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000186 ... volt-add-subscriber-access ${of_id} ${onu_port}
Suchitra Vemuri9da44302020-03-04 14:24:49 -0800187 # Verify that no pending flows exist for the ONU port
188 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
189 ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Hardik Windlass21807632020-04-14 16:24:55 +0530190 # Verify subscriber access flows are added for the ONU port
191 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
192 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
193 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000194 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
195 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
196 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
197 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
198 ... ${dst['container_name']}
199 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
ubuntu6b6e7d42020-03-02 12:35:42 -0800200 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000201 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
202 Run Keyword and Ignore Error Collect Logs
203 END
204
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000205Perform Sanity Test DT
206 [Documentation] This keyword performs Sanity Test Procedure for DT Workflow
207 ... Sanity test performs dhcp and pings (without EAPOL and DHCP flows) for all the ONUs given for the POD
208 ... This keyword can be used to call in any other tests where sanity check is required
209 ... and avoids duplication of code.
210 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number}
211 Set Global Variable ${of_id}
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530212 ${nni_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
213 ... Get NNI Port in ONOS ${of_id}
214 Set Global Variable ${nni_port}
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000215 FOR ${I} IN RANGE 0 ${num_onus}
216 ${src}= Set Variable ${hosts.src[${I}]}
217 ${dst}= Set Variable ${hosts.dst[${I}]}
218 ${onu_device_id}= Get Device ID From SN ${src['onu']}
219 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
220 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
221 # Check ONU port is Enabled in ONOS
222 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
Suchitra Vemuri760bdd32020-06-17 12:34:48 -0700223 ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']}
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000224 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
ubuntu6b6e7d42020-03-02 12:35:42 -0800225 ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000226 ... volt-add-subscriber-access ${of_id} ${onu_port}
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530227 # Verify subscriber access flows are added for the ONU port
228 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
Hardik Windlass25e11702020-03-30 20:05:19 +0530229 ... Verify Subscriber Access Flows Added For ONU DT ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
230 ... ${onu_port} ${nni_port} ${src['s_tag']}
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000231 # Verify ONU state in voltha
232 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
233 ... ENABLED ACTIVE REACHABLE
234 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530235 # TODO: Yet to Verify on the GPON based Physical POD (VOL-2652)
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000236 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
237 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
238 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
239 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
240 ... ${dst['container_name']}
241 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
242 Run Keyword and Ignore Error Collect Logs
243 END
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530244 # Verify ONOS Flows
245 # Number of Access Flows on ONOS equals 4 * the Number of Active ONUs (2 for each downstream and upstream)
246 ${onos_flows_count}= Evaluate 4 * ${num_onus}
247 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
Hardik Windlass25e11702020-03-30 20:05:19 +0530248 ... Verify Subscriber Access Flows Added Count DT ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
249 ... ${onos_flows_count}
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530250 # Verify VOLTHA Flows
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000251 # Number of per OLT Flows equals Twice the Number of Active ONUs (each for downstream and upstream) + 1 for LLDP
252 ${olt_flows}= Evaluate 2 * ${num_onus} + 1
253 # Number of per ONU Flows equals 2 (one each for downstream and upstream)
254 ${onu_flows}= Set Variable 2
255 Run Keyword Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Flows ${olt_flows}
256 ${List_ONU_Serial} Create List
257 Set Suite Variable ${List_ONU_Serial}
258 Build ONU SN List ${List_ONU_Serial}
259 Log ${List_ONU_Serial}
260 Run Keyword Wait Until Keyword Succeeds ${timeout} 5s Validate ONU Flows
261 ... ${List_ONU_Serial} ${onu_flows}
262
Suchitra Vemuri58264882020-07-17 21:26:40 -0700263
Suchitra Vemuri2f1e07d2020-06-26 19:18:01 -0700264Perform Sanity Test TT
265 [Documentation] This keyword performs Sanity Test Procedure for TT Workflow
266 ... Sanity test performs dhcp and pings (without EAPOL and DHCP flows) for all the ONUs given for the POD
267 ... This keyword can be used to call in any other tests where sanity check is required
268 ... and avoids duplication of code.
Suchitra Vemuri58264882020-07-17 21:26:40 -0700269 FOR ${I} IN RANGE 0 ${num_onus}
270 ${src}= Set Variable ${hosts.src[${I}]}
271 ${dst}= Set Variable ${hosts.dst[${I}]}
272 Log ${src['service_type']}
273 ${service_type}= Get Variable Value ${src['service_type']} "null"
274 Run Keyword IF '${service_type}' != 'mcast' Sanity Test TT one ONU ${src} ${dst}
275
276 Run Keyword and Ignore Error Collect Logs
277 END
278 Run Keyword and Ignore Error Collect Logs
279
280Sanity Test TT one ONU
281 [Documentation] This keyword performs sanity test for a single ONU for TT workflow
282 ... Tests for one ONU
283 ... Assertions apply to HSIA, VoD, VoIP services
284 [Arguments] ${src} ${dst}
Suchitra Vemuri2f1e07d2020-06-26 19:18:01 -0700285 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number}
286 Set Global Variable ${of_id}
287 ${nni_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
288 ... Get NNI Port in ONOS ${of_id}
289 Set Global Variable ${nni_port}
Suchitra Vemuri58264882020-07-17 21:26:40 -0700290 ${onu_device_id}= Get Device ID From SN ${src['onu']}
291 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
292 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
293 # Check ONU port is Enabled in ONOS
294 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
295 ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']}
296 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
297 ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
298 ... volt-add-subscriber-access ${of_id} ${onu_port}
299 Sleep 30s
300 # Verify ONU state in voltha
301 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
302 ... ENABLED ACTIVE REACHABLE
303 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
304 # TODO: Yet to Verify on the GPON based Physical POD (VOL-2652)
305 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
306 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
307 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
308 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
309 ... ${dst['container_name']}
Suchitra Vemuric9a82bc2020-09-11 17:52:51 -0700310 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
311 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Suchitra Vemuri58264882020-07-17 21:26:40 -0700312 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
313 Run Keyword and Ignore Error Collect Logs
314
315Perform Sanity Test TT MCAST
316 [Documentation] This keyword performs Sanity Test Procedure for TT Workflow
317 ... Adds subscribers
318 ... Validates for MCAST
Suchitra Vemuri2f1e07d2020-06-26 19:18:01 -0700319 FOR ${I} IN RANGE 0 ${num_onus}
320 ${src}= Set Variable ${hosts.src[${I}]}
321 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuri58264882020-07-17 21:26:40 -0700322 ${service_type}= Get Variable Value ${src['service_type']} "null"
323 Run Keyword IF '${service_type}' == 'mcast' Sanity Test TT MCAST one ONU ${src}
324 ... ${dst}
Suchitra Vemuri2f1e07d2020-06-26 19:18:01 -0700325 Run Keyword and Ignore Error Collect Logs
326 END
Suchitra Vemuri58264882020-07-17 21:26:40 -0700327 Run Keyword and Ignore Error Collect Logs
328
329Sanity Test TT MCAST one ONU
330 [Documentation] This keyword performs sanity test for a single ONU for TT workflow
331 ... Tests for one ONU
332 ... Assertions apply to MCAST services
333 [Arguments] ${src} ${dst}
334 # Check for iperf and jq tools
335 ${stdout} ${stderr} ${rc}= Execute Remote Command which iperf jq
336 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']}
337 ... ${src['container_name']}
338 Pass Execution If ${rc} != 0 Skipping test: iperf / jq not found on the RG
339
340 #Reset the IP on the interface
341 ${output}= Login And Run Command On Remote System sudo ifconfig ${src['dp_iface_name']} 0
342 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
343 # Kill iperf on BNG
344 ${rg_output}= Run Keyword and Continue On Failure Login And Run Command On Remote System
345 ... sudo kill -9 `pidof iperf`
346 ... ${dst['bng_ip']} ${dst['bng_user']} ${dst['bng_pass']} ${dst['container_type']}
347 ... ${dst['container_name']}
348
349 # Setup RG for Multi-cast test
350 ${output}= Login And Run Command On Remote System
351 ... sudo ifconfig ${src['dp_iface_name']} ${src['mcast_rg']} up ; sudo kill -9 `pidof iperf`
352 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
353 ${output}= Login And Run Command On Remote System
354 ... sudo ip route add ${src['mcast_grp_subnet_mask']} dev ${src['dp_iface_name']} scope link
355 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
356
357 # Perform operations for adding subscriber
358 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number}
359 Set Global Variable ${of_id}
360 ${nni_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
361 ... Get NNI Port in ONOS ${of_id}
362 Set Global Variable ${nni_port}
363 ${onu_device_id}= Get Device ID From SN ${src['onu']}
364 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
365 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
366 # Check ONU port is Enabled in ONOS
367 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
368 ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']}
369 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
370 ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
371 ... volt-add-subscriber-access ${of_id} ${onu_port}
372 Sleep 30s
373 # Verify ONU state in voltha
374 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
375 ... ENABLED ACTIVE REACHABLE
376 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
377
378 # Setup iperf on the BNG
379 ${server_output}= Login And Run Command On Remote System
380 ... sudo iperf -c ${dst['dp_iface_ip_qinq']} -u -T 32 -t 60 -i 1 &
381 ... ${dst['bng_ip']} ${dst['bng_user']} ${dst['bng_pass']} ${dst['container_type']}
382 ... ${dst['container_name']}
383
384 # Setup iperf on the RG
385 ${rg_output}= Run Keyword and Continue On Failure Wait Until Keyword Succeeds 90s 5s
386 ... Login And Run Command On Remote System
387 ... rm -rf /tmp/rg_output ; sudo iperf -s -u -B ${dst['dp_iface_ip_qinq']} -i 1 -D >> /tmp/rg_output
388 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
389 Log ${rg_output}
390 Sleep 60s
391 ${output}= Run Keyword and Continue On Failure Wait Until Keyword Succeeds 90s 5s
392 ... Login And Run Command On Remote System
393 ... cat /tmp/rg_output | grep KBytes
394 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
395 Log ${output}
396 Should Contain ${output} KBytes
397
398 # Kill iperf on BNG
399 ${rg_output}= Run Keyword and Continue On Failure Login And Run Command On Remote System
400 ... sudo kill -9 `pidof iperf`
401 ... ${dst['bng_ip']} ${dst['bng_user']} ${dst['bng_pass']} ${dst['container_type']}
402 ... ${dst['container_name']}
403
404 # Kill iperf on the RG
405 ${output}= Run Keyword and Continue On Failure Login And Run Command On Remote System
406 ... sudo kill -9 `pidof iperf`
407 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Suchitra Vemuri2f1e07d2020-06-26 19:18:01 -0700408
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000409Setup
410 [Documentation] Pre-test Setup
411 #test for empty device list
412 Test Empty Device List
Suchitra Vemuri3158f3c2020-05-28 17:58:26 -0700413 #Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds 120s 10s Openolt is Up
414 #... ${olt_ip} ${olt_user} ${olt_pass}
Suchitra Vemuri1d8e8172020-06-17 17:43:56 -0700415 Run Keyword If ${has_dataplane} Sleep 230s
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000416 #create/preprovision device
417 ${olt_device_id}= Create Device ${olt_ip} ${OLT_PORT}
418 Set Suite Variable ${olt_device_id}
419 #validate olt states
420 Wait Until Keyword Succeeds ${timeout} 5s
ubuntu6b6e7d42020-03-02 12:35:42 -0800421 ... Validate OLT Device PREPROVISIONED UNKNOWN UNKNOWN ${olt_device_id}
Suchitra Vemuria7e8ad22020-02-11 18:02:40 -0800422 Sleep 5s
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000423 Enable Device ${olt_device_id}
Suchitra Vemuri5d34fb12020-07-27 16:44:53 -0700424 Wait Until Keyword Succeeds 380s 5s
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000425 ... Validate OLT Device ENABLED ACTIVE REACHABLE ${olt_serial_number}
426 ${logical_id}= Get Logical Device ID From SN ${olt_serial_number}
427 Set Suite Variable ${logical_id}
428
Hardik Windlassaaea3402020-03-10 19:45:45 +0530429Validate ONUs After OLT Disable
430 [Documentation] Validates the ONUs state in Voltha, ONUs port state in ONOS
431 ... and that pings do not succeed After corresponding OLT is Disabled
432 FOR ${I} IN RANGE 0 ${num_onus}
433 ${src}= Set Variable ${hosts.src[${I}]}
434 ${dst}= Set Variable ${hosts.dst[${I}]}
435 ${onu_device_id}= Get Device ID From SN ${src['onu']}
436 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
437 ... ${of_id}
438 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
439 ... Validate Device ENABLED DISCOVERED
440 ... UNREACHABLE ${src['onu']} onu=True onu_reason=stopping-openomci
441 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
Suchitra Vemuri760bdd32020-06-17 12:34:48 -0700442 ... Verify ONU Port Is Disabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']}
Hardik Windlassaaea3402020-03-10 19:45:45 +0530443 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
444 ... Wait Until Keyword Succeeds 60s 2s
445 ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
446 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
447 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
448 Run Keyword and Ignore Error Collect Logs
449 END
450
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000451Delete All Devices and Verify
452 [Documentation] Remove any devices from VOLTHA and ONOS
453 # Clear devices from VOLTHA
454 Disable Devices In Voltha Root=true
Suchitra Vemuri970747f2020-03-30 17:31:34 -0700455 Sleep 5s
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000456 Wait Until Keyword Succeeds ${timeout} 2s Test Devices Disabled In Voltha Root=true
457 Delete Devices In Voltha Root=true
Matteo Scandolof6cea382020-04-20 14:32:00 -0700458 Run Keyword If ${has_dataplane} Sleep 30s
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000459 Wait Until Keyword Succeeds ${timeout} 2s Test Empty Device List
460 # Clear devices from ONOS
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800461 #Remove All Devices From ONOS
ubuntu6b6e7d42020-03-02 12:35:42 -0800462 #... http://karaf:karaf@${ONOS_REST_IP}:${ONOS_REST_PORT}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000463
464Teardown
465 [Documentation] kills processes and cleans up interfaces on src+dst servers
466 Run Keyword If ${has_dataplane} Clean Up Linux
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000467
468Teardown Suite
469 [Documentation] Clean up device if desired
470 Run Keyword If ${teardown_device} Delete All Devices and Verify
471
472Delete Device and Verify
473 [Documentation] Disable -> Delete devices via voltctl and verify its removed
Suchitra Vemuri2fa9bba2020-01-22 17:38:48 -0800474 ${olt_device_id}= Get Device ID From SN ${olt_serial_number}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000475 ${rc} ${output}= Run and Return Rc and Output
476 ... ${VOLTCTL_CONFIG}; voltctl device disable ${olt_device_id}
477 Should Be Equal As Integers ${rc} 0
478 Sleep 5s
479 Wait Until Keyword Succeeds ${timeout} 5s
480 ... Validate OLT Device DISABLED UNKNOWN REACHABLE ${olt_serial_number}
481 ${rc} ${output}= Run and Return Rc and Output
482 ... ${VOLTCTL_CONFIG}; voltctl device delete ${olt_device_id}
Matteo Scandolof6cea382020-04-20 14:32:00 -0700483 Run Keyword If ${has_dataplane} Sleep 50s
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000484 Should Be Equal As Integers ${rc} 0
485 Wait Until Keyword Succeeds ${timeout} 5s Validate Device Removed ${olt_device_id}
486
Gayathri.Selvan283a63c2020-01-23 04:09:18 +0000487Repeat Sanity Test
488 [Documentation] This keyword performs Sanity Test Procedure
489 ... Sanity test performs authentication, dhcp and pings for all the ONUs given for the POD
490 ... This keyword can be used to call in any other tests where sanity check is required
491 ... with wpa reassociation
492 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number}
493 Set Global Variable ${of_id}
494 FOR ${I} IN RANGE 0 ${num_onus}
Suchitra Vemuri03005912020-02-20 18:59:46 -0800495 Run Keyword and Ignore Error Collect Logs
Gayathri.Selvan283a63c2020-01-23 04:09:18 +0000496 ${src}= Set Variable ${hosts.src[${I}]}
497 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800498 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
499 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
500 # Check ONU port is Enabled in ONOD
501 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
Suchitra Vemuri760bdd32020-06-17 12:34:48 -0700502 ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']}
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800503 # Verify EAPOL flows are added for the ONU port
504 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
David K. Bainbridgec0617c92020-03-05 21:17:19 -0800505 ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800506 # Verify ONU state in voltha
Suchitra Vemurid1e27fb2020-02-01 16:34:37 -0800507 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
Suchitra Vemuri81e4f022020-02-01 13:16:02 -0800508 ... ENABLED ACTIVE REACHABLE
509 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800510 # Perform Authentication
Gayathri.Selvan283a63c2020-01-23 04:09:18 +0000511 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
512 ... Validate Authentication After Reassociate
513 ... True ${src['dp_iface_name']} ${src['ip']} ${src['user']} ${src['pass']}
514 ... ${src['container_type']} ${src['container_name']}
515 Wait Until Keyword Succeeds ${timeout} 2s
David K. Bainbridgec0617c92020-03-05 21:17:19 -0800516 ... Verify ONU in AAA-Users ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Gayathri.Selvan283a63c2020-01-23 04:09:18 +0000517 Wait Until Keyword Succeeds ${timeout} 2s
David K. Bainbridgec0617c92020-03-05 21:17:19 -0800518 ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
Gayathri.Selvan283a63c2020-01-23 04:09:18 +0000519 ... volt-add-subscriber-access ${of_id} ${onu_port}
520 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
521 ... Validate DHCP and Ping True True
522 ... ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
523 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
524 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
525 ... ${dst['container_name']}
526 Wait Until Keyword Succeeds ${timeout} 2s Run Keyword And Continue On Failure
David K. Bainbridgec0617c92020-03-05 21:17:19 -0800527 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Gayathri.Selvan283a63c2020-01-23 04:09:18 +0000528 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
529 Run Keyword and Ignore Error Collect Logs
530 END
Gayathri.Selvanb6a2b542020-01-24 07:24:23 +0000531
532Collect Logs
533 [Documentation] Collect Logs from voltha and onos cli for various commands
534 Run Keyword and Ignore Error Get Device List from Voltha
535 Run Keyword and Ignore Error Get Device Output from Voltha ${olt_device_id}
536 Run Keyword and Ignore Error Get Logical Device Output from Voltha ${logical_id}
ubuntu6b6e7d42020-03-02 12:35:42 -0800537 Get ONOS Status ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
Gayathri.Selvanf68ea4b2020-02-03 07:36:39 +0000538
539Verify ping is succesful except for given device
540 [Arguments] ${num_onus} ${exceptional_onu_id}
541 [Documentation] Checks that ping for all the devices are successful except the given ONU.
542 ${pingStatus} Set Variable True
543 FOR ${I} IN RANGE 0 ${num_onus}
544 ${src}= Set Variable ${hosts.src[${I}]}
545 ${dst}= Set Variable ${hosts.dst[${I}]}
546 ${onu_device_id}= Get Device ID From SN ${src['onu']}
547 ${pingStatus} Run Keyword If '${onu_device_id}' == '${exceptional_onu_id}' Set Variable False
548 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 60s 2s
549 ... Check Ping ${pingStatus} ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
550 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
551 END
Andy Bavier4a8450e2020-02-04 08:58:37 -0700552
Andy Bavier1923ecc2020-06-18 14:06:40 -0700553Echo Message to OLT Logs
554 [Arguments] ${message}
555 [Documentation] Echoes ${message} into the OLT logs
Andy Bavier690ce432020-06-20 16:31:10 -0700556 Wait Until Keyword Succeeds 180s 10s Execute Remote Command
Andy Bavier6f613612020-06-19 15:08:30 -0700557 ... printf '%s\n' '' '' '${message}' '' >> /var/log/openolt.log
Suchitra Vemuri919c2e72020-07-15 15:23:15 -0700558 ... ${olt_ssh_ip} ${olt_user} ${olt_pass}
Andy Bavier690ce432020-06-20 16:31:10 -0700559 Wait Until Keyword Succeeds 180s 10s Execute Remote Command
Andy Bavier6f613612020-06-19 15:08:30 -0700560 ... printf '%s\n' '' '' '${message}' '' >> /var/log/dev_mgmt_daemon.log
Suchitra Vemuri919c2e72020-07-15 15:23:15 -0700561 ... ${olt_ssh_ip} ${olt_user} ${olt_pass}
Girish Gowdra2224edf2020-07-28 15:57:02 -0700562 Wait Until Keyword Succeeds 180s 10s Execute Remote Command
563 ... printf '%s\n' '' '' '${message}' '' >> /var/log/openolt_process_watchdog.log
564 ... ${olt_ssh_ip} ${olt_user} ${olt_pass}
Andy Bavier1923ecc2020-06-18 14:06:40 -0700565
Andy Bavierabeba262020-02-07 16:22:16 -0700566Start Logging
567 [Arguments] ${label}
568 [Documentation] Start logging for test ${label}
569 ${kail_process}= Run Keyword If "${container_log_dir}" != "${None}" Start Process kail -n default
570 ... -n voltha cwd=${container_log_dir} stdout=${label}-combined.log
571 Set Test Variable ${kail_process}
Andy Bavier1923ecc2020-06-18 14:06:40 -0700572 Run Keyword If ${has_dataplane} Echo Message to OLT Logs START ${label}
Andy Bavierabeba262020-02-07 16:22:16 -0700573
574Stop Logging
575 [Arguments] ${label}
576 [Documentation] End logging for test; remove logfile if test passed
577 Run sync
578 Run Keyword If ${kail_process} Terminate Process ${kail_process}
579 ${test_logfile}= Run Keyword If "${container_log_dir}" != "${None}"
580 ... Join Path ${container_log_dir} ${label}-combined.log
581 Run Keyword If Test Passed Run Keyword If "${test_logfile}" != "${None}" Remove File ${test_logfile}
Andy Bavier1923ecc2020-06-18 14:06:40 -0700582 Run Keyword If ${has_dataplane} Echo Message to OLT Logs END ${label}
Andy Bavierabeba262020-02-07 16:22:16 -0700583
Suchitra Vemuria5fa3dd2020-02-04 14:38:49 -0800584Clean Up Linux
585 [Documentation] Kill processes and clean up interfaces on src+dst servers
586 FOR ${I} IN RANGE 0 ${num_onus}
587 ${src}= Set Variable ${hosts.src[${I}]}
588 ${dst}= Set Variable ${hosts.dst[${I}]}
Andy Bavier84b83282020-06-30 05:47:49 -0700589 Execute Remote Command sudo pkill wpa_supplicant ${src['ip']}
Suchitra Vemuria5fa3dd2020-02-04 14:38:49 -0800590 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Andy Bavier84b83282020-06-30 05:47:49 -0700591 Execute Remote Command sudo pkill dhclient ${src['ip']}
Suchitra Vemuria5fa3dd2020-02-04 14:38:49 -0800592 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Andy Baviereff938d2020-06-29 18:27:49 -0700593 Execute Remote Command sudo pkill mausezahn ${src['ip']}
594 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
595 Run Keyword If '${dst['ip']}' != '${None}' Execute Remote Command pkill dhcpd
596 ... ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} ${dst['container_name']}
Suchitra Vemuria5fa3dd2020-02-04 14:38:49 -0800597 Delete IP Addresses from Interface on Remote Host ${src['dp_iface_name']} ${src['ip']}
598 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
599 Run Keyword If '${dst['ip']}' != '${None}' Delete Interface on Remote Host
600 ... ${dst['dp_iface_name']}.${src['s_tag']} ${dst['ip']} ${dst['user']} ${dst['pass']}
601 ... ${dst['container_type']} ${dst['container_name']}
Andy Bavier84b83282020-06-30 05:47:49 -0700602 ${bng_ip}= Get Variable Value ${dst['noroot_ip']}
603 ${bng_user}= Get Variable Value ${dst['noroot_user']}
604 ${bng_pass}= Get Variable Value ${dst['noroot_pass']}
Andy Bavierf4b7d1d2020-06-30 11:14:04 -0700605 Run Keyword If "${bng_ip}" != "${NONE}" and "${bng_user}" != "${NONE}" and "${bng_pass}" != "${NONE}"
606 ... Execute Remote Command sudo pkill mausezahn ${bng_ip} ${bng_user} ${bng_pass}
Andy Baviereff938d2020-06-29 18:27:49 -0700607 ... ${dst['container_type']} ${dst['container_name']}
Suchitra Vemuria5fa3dd2020-02-04 14:38:49 -0800608 END
Scott Baker60e570d2020-02-02 22:10:13 -0800609
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800610Clean WPA Process
611 [Documentation] Kills wpa_supplicant processes only for all RGs
612 FOR ${I} IN RANGE 0 ${num_onus}
613 ${src}= Set Variable ${hosts.src[${I}]}
614 ${dst}= Set Variable ${hosts.dst[${I}]}
615 Run Keyword And Ignore Error Kill Linux Process [w]pa_supplicant ${src['ip']}
616 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
617 END
618
Scott Baker60e570d2020-02-02 22:10:13 -0800619Should Be Larger Than
620 [Documentation] Verify that value_1 is > value_2
621 [Arguments] ${value_1} ${value_2}
622 Run Keyword If ${value_1} <= ${value_2}
623 ... Fail The value ${value_1} is not larger than ${value_2}
624
Scott Bakeree675552020-02-11 10:43:34 -0800625Should Be Larger Than Or Equal To
626 [Documentation] Verify that value_1 is >= value_2
627 [Arguments] ${value_1} ${value_2}
628 Run Keyword If ${value_1} < ${value_2}
629 ... Fail The value ${value_1} is not larger than or equal to ${value_2}
630
Scott Baker60e570d2020-02-02 22:10:13 -0800631Should Be Float
632 [Documentation] Verify that value is a floating point number type
633 [Arguments] ${value}
634 ${type} Evaluate type(${value}).__name__
635 Should Be Equal ${type} float
636
Scott Bakeree675552020-02-11 10:43:34 -0800637Should Be Newer Than Or Equal To
638 [Documentation] Compare two RFC3339 dates
639 [Arguments] ${value_1} ${value_2}
640 ${unix_v1} Parse RFC3339 ${value_1}
641 ${unix_v2} Parse RFC3339 ${value_2}
642 Run Keyword If ${unix_v1} < ${unix_v2}
643 ... Fail The value ${value_1} is not newer than or equal to ${value_2}
644
Scott Baker60e570d2020-02-02 22:10:13 -0800645Get Current Time
646 [Documentation] Return the current time in RFC3339 format
647 ${output}= Run date -u +"%FT%T%:z"
648 [return] ${output}
Scott Bakeree675552020-02-11 10:43:34 -0800649
650Parse RFC3339
651 [Documentation] Parse an RFC3339 timestamp
652 [Arguments] ${dateStr}
653 ${rc} ${output}= Run and Return Rc and Output date --date="${dateStr}" "+%s"
654 Should Be Equal As Numbers ${rc} 0
655 [return] ${output}
Matteo Scandolo142e6272020-04-29 17:36:59 -0700656
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000657Get Bandwidth Profile Name For Given Subscriber
658 [Arguments] ${subscriber_id} ${stream_type}=upstreamBandwidthProfile
659 [Documentation] Keyword to get the bandwidth details of the given subscriber
660 ${bandwidth_profile_output}= Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
661 ... volt-programmed-subscribers | grep ${subscriber_id}
662 @{bandwidth_profile_array}= Split String ${bandwidth_profile_output} ,
663 Log ${bandwidth_profile_array}
664 FOR ${value} IN @{bandwidth_profile_array}
665 @{row_value}= Split String ${value} =
666 ${bandwidth_profile_name}= Set Variable If '${row_value[0]}' == ' ${stream_type}'
667 ... ${row_value[1]}
668 ${bandwidth_profile_name}= Convert To String ${bandwidth_profile_name}
669 Run Keyword If "${bandwidth_profile_name}" != "None" Exit For Loop
670 END
671 Log ${bandwidth_profile_name}
672 [Return] ${bandwidth_profile_name}
673
674Execute Remote Command
675 [Documentation] SSH into a remote host and execute a command on the bare host or in a container.
676 ... This replaces and simplifies the Login And Run Command On Remote System keyword in CORDRobot.
677 [Arguments] ${cmd} ${ip} ${user} ${pass}=${None}
Andy Baviereff938d2020-06-29 18:27:49 -0700678 ... ${container_type}=${None} ${container_name}=${None} ${timeout}=${None}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000679 ${conn_id}= SSHLibrary.Open Connection ${ip}
680 Run Keyword If '${pass}' != '${None}'
681 ... SSHLibrary.Login ${user} ${pass}
682 ... ELSE
683 ... SSHLibrary.Login With Public Key ${user} %{HOME}/.ssh/id_rsa
684 ${namespace}= Run Keyword If '${container_type}' == 'K8S' SSHLibrary.Execute Command
685 ... kubectl get pods --all-namespaces | grep ${container_name} | awk '{print $1}'
Andy Bavierf6ab19c2020-05-14 10:34:47 -0700686 ${stdout} ${stderr} ${rc}= Run Keyword If '${container_type}' == 'LXC'
687 ... SSHLibrary.Execute Command lxc exec ${container_name} -- ${cmd}
Andy Baviereff938d2020-06-29 18:27:49 -0700688 ... return_stderr=True return_rc=True timeout=${timeout}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000689 ... ELSE IF '${container_type}' == 'K8S'
Andy Bavierf6ab19c2020-05-14 10:34:47 -0700690 ... SSHLibrary.Execute Command kubectl -n ${namespace} exec ${container_name} -- ${cmd}
Andy Baviereff938d2020-06-29 18:27:49 -0700691 ... return_stderr=True return_rc=True timeout=${timeout}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000692 ... ELSE
Andy Baviereff938d2020-06-29 18:27:49 -0700693 ... SSHLibrary.Execute Command ${cmd} return_stderr=True return_rc=True timeout=${timeout}
Andy Bavierf6ab19c2020-05-14 10:34:47 -0700694
695 Log ${stdout}
696 Log ${stderr}
697 Log ${rc}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000698 SSHLibrary.Close Connection
Andy Bavierf6ab19c2020-05-14 10:34:47 -0700699 [Return] ${stdout} ${stderr} ${rc}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000700
Suraj Gour33651272020-05-04 10:10:16 +0530701Start Remote Command
702 [Documentation] SSH into a remote host and execute a command on the bare host or in a container.
703 ... This replaces and simplifies the Login And Run Command On Remote System keyword in CORDRobot.
704 [Arguments] ${cmd} ${ip} ${user} ${pass}=${None}
705 ... ${container_type}=${None} ${container_name}=${None}
706 ${conn_id}= SSHLibrary.Open Connection ${ip}
707 Run Keyword If '${pass}' != '${None}'
708 ... SSHLibrary.Login ${user} ${pass}
709 ... ELSE
710 ... SSHLibrary.Login With Public Key ${user} %{HOME}/.ssh/id_rsa
711 ${namespace}= Run Keyword If '${container_type}' == 'K8S' SSHLibrary.Execute Command
712 ... kubectl get pods --all-namespaces | grep ${container_name} | awk '{print $1}'
713 Run Keyword If '${container_type}' == 'LXC'
714 ... SSHLibrary.Start Command lxc exec ${container_name} -- ${cmd}
715 ... ELSE IF '${container_type}' == 'K8S'
716 ... SSHLibrary.Start Command kubectl -n ${namespace} exec ${container_name} -- ${cmd}
717 ... ELSE
718 ... SSHLibrary.Start Command ${cmd}
Andy Bavierae762b22020-06-30 15:12:20 -0700719 # It seems that closing the connection immediately will sometimes kill the command
720 Sleep 1s
Suraj Gour33651272020-05-04 10:10:16 +0530721 SSHLibrary.Close Connection
722
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000723Run Iperf3 Test Client
724 [Arguments] ${src} ${server} ${args}
725 [Documentation] Login to ${src} and run the iperf3 client against ${server} using ${args}.
726 ... Return a Dictionary containing the results of the test.
Andy Bavierf6ab19c2020-05-14 10:34:47 -0700727 ${output} ${stderr} ${rc}= Execute Remote Command iperf3 -J -c ${server} ${args} | jq -M -c '.'
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000728 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Andy Bavierf6ab19c2020-05-14 10:34:47 -0700729 Should Be Equal As Integers ${rc} 0
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000730 ${object}= Evaluate json.loads(r'''${output}''') json
731 [Return] ${object}
Hung-Wei Chiue0bec7c2020-05-29 22:16:56 +0000732
Hung-Wei Chiue0bec7c2020-05-29 22:16:56 +0000733RestoreONUs
734 [Documentation] Restore all connected ONUs
735 [Arguments] ${num_onus}
736 FOR ${I} IN RANGE 0 ${num_onus}
737 ${src}= Set Variable ${hosts.src[${I}]}
Hung-Wei Chiucc6e6552020-06-04 12:57:38 -0700738 ${container_type}= Get Variable Value ${src['container_type']} "null"
739 ${container_name}= Get Variable Value ${src['container_name']} "null"
Hung-Wei Chiue0bec7c2020-05-29 22:16:56 +0000740 ${onu_type}= Get Variable Value ${src['onu_type']} "null"
Hung-Wei Chiucc6e6552020-06-04 12:57:38 -0700741 #Get ens6f0 from ens6f0.22
742 ${if_name}= Replace String Using Regexp ${src['dp_iface_name']} \\..* \
Hung-Wei Chiue0bec7c2020-05-29 22:16:56 +0000743 Run Keyword IF '${onu_type}' == 'alpha' AlphaONURestoreDefault ${src['ip']} ${src['user']}
Hung-Wei Chiucc6e6552020-06-04 12:57:38 -0700744 ... ${src['pass']} ${if_name} admin admin ${container_type} ${container_name}
Hung-Wei Chiue0bec7c2020-05-29 22:16:56 +0000745 END
746
747AlphaONURestoreDefault
748 [Documentation] Restore the Alpha ONU to factory setting
749 [Arguments] ${rg_ip} ${rg_user} ${rg_pass} ${onu_ifname}
Hung-Wei Chiucc6e6552020-06-04 12:57:38 -0700750 ... ${onu_user} ${onu_pass} ${container_type}=${None} ${container_name}=${None}
Hung-Wei Chiue0bec7c2020-05-29 22:16:56 +0000751 ${output}= Login And Run Command On Remote System sudo ifconfig ${onu_ifname} 192.168.1.3/24
Hung-Wei Chiucc6e6552020-06-04 12:57:38 -0700752 ... ${rg_ip} ${rg_user} ${rg_pass} ${container_type} ${container_name}
Hung-Wei Chiue0bec7c2020-05-29 22:16:56 +0000753 ${cmd} Catenate
754 ... (echo open "192.168.1.1"; sleep 1;
755 ... echo "${onu_user}"; sleep 1;
756 ... echo "${onu_pass}"; sleep 1;
757 ... echo "restoredefault"; sleep 1) | telnet
758 ${output}= Login And Run Command On Remote System ${cmd}
Hung-Wei Chiucc6e6552020-06-04 12:57:38 -0700759 ... ${rg_ip} ${rg_user} ${rg_pass} ${container_type} ${container_name}
Hung-Wei Chiue0bec7c2020-05-29 22:16:56 +0000760 Log To Console ${output}
761 ${output}= Login And Run Command On Remote System sudo ifconfig ${onu_ifname} 0
Hung-Wei Chiucc6e6552020-06-04 12:57:38 -0700762 ... ${rg_ip} ${rg_user} ${rg_pass} ${container_type} ${container_name}
Suraj Gour33651272020-05-04 10:10:16 +0530763
764Create traffic with each pbit and capture at other end
765 [Documentation] Generates upstream traffic using Mausezahn tool
766 ... with each pbit and validates reception at other end using tcpdump
767 [Arguments] ${target_ip} ${target_iface} ${src_iface}
768 ... ${packet_count} ${packet_type} ${target_port} ${vlan} ${tcpdump_filter}
769 ... ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
770 ... ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
771 FOR ${pbit} IN RANGE 8
Andy Baviereff938d2020-06-29 18:27:49 -0700772 Execute Remote Command sudo pkill mausezahn
Suraj Gour33651272020-05-04 10:10:16 +0530773 ... ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
Andy Baviereff938d2020-06-29 18:27:49 -0700774 ${var1}= Set Variable sudo mausezahn ${src_iface} -B ${target_ip} -c ${packet_count} -d 100m
Suraj Gour33651272020-05-04 10:10:16 +0530775 ${var2}= Set Variable -t ${packet_type} "dp=${target_port}" -p 1472 -Q ${pbit}:${vlan}
776 ${cmd}= Set Variable ${var1} ${var2}
777 Start Remote Command ${cmd} ${src_ip} ${src_user} ${src_pass}
778 ... ${src_container_type} ${src_container_name}
779 ${output} ${stderr} ${rc}= Execute Remote Command
Andy Baviereff938d2020-06-29 18:27:49 -0700780 ... sudo tcpdump -l -U -c 30 -i ${target_iface} -e ${tcpdump_filter}
Suraj Gour33651272020-05-04 10:10:16 +0530781 ... ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
Andy Baviereff938d2020-06-29 18:27:49 -0700782 ... timeout=30 seconds
783 Execute Remote Command sudo pkill mausezahn
Suraj Gour33651272020-05-04 10:10:16 +0530784 ... ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
785 # VOL-3262: I'm seeing untagged downstream traffic at RG for pbit 0. According to Girish this is
786 # incorrect behavior. Simplify the following check when VOL-3262 is resolved.
787 Run Keyword If ${pbit}==0 and "${tcpdump_filter}"=="udp"
788 ... Should Match Regexp ${output} \\.${target_port}: UDP,
789 ... ELSE Should Match Regexp ${output} , p ${pbit},.*\\.${target_port}: UDP,
790 END