blob: 967317b03a1e5ad503ba75c01af19a6ae89504a8 [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 Vemurib7253a52020-07-14 22:35:17 -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 Vemurib7253a52020-07-14 22:35:17 -070078 Set Suite Variable ${olt_ssh_ip}
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}
Hardik Windlass2a9b1592020-07-23 18:28:13 +0530159 # Verify Default Meter in ONOS (valid only for ATT)
160 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
161 ... Verify Default Meter Present in ONOS ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000162 FOR ${I} IN RANGE 0 ${num_onus}
163 ${src}= Set Variable ${hosts.src[${I}]}
164 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuri03005912020-02-20 18:59:46 -0800165 Run Keyword and Ignore Error Collect Logs
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000166 ${onu_device_id}= Get Device ID From SN ${src['onu']}
167 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
168 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800169 # Check ONU port is Enabled in ONOS
170 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
Suchitra Vemuri760bdd32020-06-17 12:34:48 -0700171 ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']}
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800172 # Verify EAPOL flows are added for the ONU port
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000173 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
ubuntu6b6e7d42020-03-02 12:35:42 -0800174 ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800175 # Verify ONU state in voltha
176 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
177 ... ENABLED ACTIVE REACHABLE
178 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
179 # Perform Authentication
Andy Bavier84834d42020-02-25 13:49:50 -0700180 ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=.
181 ... /tmp/wpa ${src['dp_iface_name']} log
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000182 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True
183 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
Andy Bavier84834d42020-02-25 13:49:50 -0700184 ... ${src['container_type']} ${src['container_name']} ${wpa_log}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000185 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
ubuntu6b6e7d42020-03-02 12:35:42 -0800186 ... Verify ONU in AAA-Users ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000187 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
ubuntu6b6e7d42020-03-02 12:35:42 -0800188 ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000189 ... volt-add-subscriber-access ${of_id} ${onu_port}
Suchitra Vemuri9da44302020-03-04 14:24:49 -0800190 # Verify that no pending flows exist for the ONU port
191 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
192 ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Hardik Windlass21807632020-04-14 16:24:55 +0530193 # Verify subscriber access flows are added for the ONU port
194 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
195 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
196 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
Hardik Windlass2a9b1592020-07-23 18:28:13 +0530197 # Verify Meters in ONOS
198 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
199 ... Verify Meters in ONOS ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} ${onu_port}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000200 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
201 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
202 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
203 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
204 ... ${dst['container_name']}
205 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
ubuntu6b6e7d42020-03-02 12:35:42 -0800206 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000207 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
208 Run Keyword and Ignore Error Collect Logs
209 END
210
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000211Perform Sanity Test DT
212 [Documentation] This keyword performs Sanity Test Procedure for DT Workflow
213 ... Sanity test performs dhcp and pings (without EAPOL and DHCP flows) for all the ONUs given for the POD
214 ... This keyword can be used to call in any other tests where sanity check is required
215 ... and avoids duplication of code.
Suchitra Vemurib598aba2020-09-17 21:08:14 -0700216 ${of_id}= Wait Until Keyword Succeeds 360s 15s Validate OLT Device in ONOS ${olt_serial_number}
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000217 Set Global Variable ${of_id}
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530218 ${nni_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
219 ... Get NNI Port in ONOS ${of_id}
220 Set Global Variable ${nni_port}
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000221 FOR ${I} IN RANGE 0 ${num_onus}
222 ${src}= Set Variable ${hosts.src[${I}]}
223 ${dst}= Set Variable ${hosts.dst[${I}]}
224 ${onu_device_id}= Get Device ID From SN ${src['onu']}
225 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
226 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
227 # Check ONU port is Enabled in ONOS
228 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
Suchitra Vemuri760bdd32020-06-17 12:34:48 -0700229 ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']}
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000230 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
ubuntu6b6e7d42020-03-02 12:35:42 -0800231 ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000232 ... volt-add-subscriber-access ${of_id} ${onu_port}
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530233 # Verify subscriber access flows are added for the ONU port
234 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
Hardik Windlass25e11702020-03-30 20:05:19 +0530235 ... Verify Subscriber Access Flows Added For ONU DT ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
236 ... ${onu_port} ${nni_port} ${src['s_tag']}
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000237 # Verify ONU state in voltha
238 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
239 ... ENABLED ACTIVE REACHABLE
240 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
Hardik Windlass2a9b1592020-07-23 18:28:13 +0530241 # Verify Meters in ONOS
242 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
243 ... Verify Meters in ONOS ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} ${onu_port}
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530244 # TODO: Yet to Verify on the GPON based Physical POD (VOL-2652)
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000245 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
246 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
247 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
248 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
249 ... ${dst['container_name']}
250 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
251 Run Keyword and Ignore Error Collect Logs
252 END
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530253 # Verify ONOS Flows
254 # Number of Access Flows on ONOS equals 4 * the Number of Active ONUs (2 for each downstream and upstream)
255 ${onos_flows_count}= Evaluate 4 * ${num_onus}
256 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
Hardik Windlass25e11702020-03-30 20:05:19 +0530257 ... Verify Subscriber Access Flows Added Count DT ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
258 ... ${onos_flows_count}
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530259 # Verify VOLTHA Flows
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000260 # Number of per OLT Flows equals Twice the Number of Active ONUs (each for downstream and upstream) + 1 for LLDP
261 ${olt_flows}= Evaluate 2 * ${num_onus} + 1
262 # Number of per ONU Flows equals 2 (one each for downstream and upstream)
263 ${onu_flows}= Set Variable 2
264 Run Keyword Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Flows ${olt_flows}
265 ${List_ONU_Serial} Create List
266 Set Suite Variable ${List_ONU_Serial}
267 Build ONU SN List ${List_ONU_Serial}
268 Log ${List_ONU_Serial}
269 Run Keyword Wait Until Keyword Succeeds ${timeout} 5s Validate ONU Flows
270 ... ${List_ONU_Serial} ${onu_flows}
271
Suchitra Vemuri2f1e07d2020-06-26 19:18:01 -0700272Perform Sanity Test TT
273 [Documentation] This keyword performs Sanity Test Procedure for TT Workflow
274 ... Sanity test performs dhcp and pings (without EAPOL and DHCP flows) for all the ONUs given for the POD
275 ... This keyword can be used to call in any other tests where sanity check is required
276 ... and avoids duplication of code.
Suchitra Vemuri85cb7d62020-07-16 23:46:16 -0700277 FOR ${I} IN RANGE 0 ${num_onus}
278 ${src}= Set Variable ${hosts.src[${I}]}
279 ${dst}= Set Variable ${hosts.dst[${I}]}
280 ${service_type}= Get Variable Value ${src['service_type']} "null"
281 Run Keyword IF '${service_type}' != 'mcast' Sanity Test TT one ONU ${src} ${dst}
282 Run Keyword and Ignore Error Collect Logs
283 END
284 Run Keyword and Ignore Error Collect Logs
285
286Sanity Test TT one ONU
287 [Documentation] This keyword performs sanity test for a single ONU for TT workflow
288 ... Tests for one ONU
289 ... Assertions apply to HSIA, VoD, VoIP services
290 [Arguments] ${src} ${dst}
Suchitra Vemuri2f1e07d2020-06-26 19:18:01 -0700291 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number}
292 Set Global Variable ${of_id}
293 ${nni_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
294 ... Get NNI Port in ONOS ${of_id}
295 Set Global Variable ${nni_port}
Suchitra Vemuri85cb7d62020-07-16 23:46:16 -0700296 ${onu_device_id}= Get Device ID From SN ${src['onu']}
297 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
298 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
299 # Check ONU port is Enabled in ONOS
300 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
301 ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']}
302 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
303 ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
304 ... volt-add-subscriber-access ${of_id} ${onu_port}
305 Sleep 30s
306 # Verify ONU state in voltha
307 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
308 ... ENABLED ACTIVE REACHABLE
309 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
310 # TODO: Yet to Verify on the GPON based Physical POD (VOL-2652)
311 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
312 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
313 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
314 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
315 ... ${dst['container_name']}
Suchitra Vemuri42819412020-10-01 17:45:43 -0700316 Run Keyword IF ${has_dataplane} and ${src['service_type']} != 'hsia'
317 ... Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
Suchitra Vemuri8d3b0032020-09-11 17:49:08 -0700318 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Suchitra Vemuri42819412020-10-01 17:45:43 -0700319 ... ${src['c_tag']}
Suchitra Vemuri85cb7d62020-07-16 23:46:16 -0700320 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
321 Run Keyword and Ignore Error Collect Logs
322
323Perform Sanity Test TT MCAST
324 [Documentation] This keyword performs Sanity Test Procedure for TT Workflow
325 ... Adds subscribers
326 ... Validates for MCAST
Suchitra Vemuri2f1e07d2020-06-26 19:18:01 -0700327 FOR ${I} IN RANGE 0 ${num_onus}
328 ${src}= Set Variable ${hosts.src[${I}]}
329 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuri85cb7d62020-07-16 23:46:16 -0700330 ${service_type}= Get Variable Value ${src['service_type']} "null"
331 Run Keyword IF '${service_type}' == 'mcast' Sanity Test TT MCAST one ONU ${src}
332 ... ${dst}
Suchitra Vemuri2f1e07d2020-06-26 19:18:01 -0700333 Run Keyword and Ignore Error Collect Logs
334 END
Suchitra Vemuri85cb7d62020-07-16 23:46:16 -0700335 Run Keyword and Ignore Error Collect Logs
336
337Sanity Test TT MCAST one ONU
338 [Documentation] This keyword performs sanity test for a single ONU for TT workflow
339 ... Tests for one ONU
340 ... Assertions apply to MCAST services
341 [Arguments] ${src} ${dst}
342 # Check for iperf and jq tools
343 ${stdout} ${stderr} ${rc}= Execute Remote Command which iperf jq
344 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']}
345 ... ${src['container_name']}
346 Pass Execution If ${rc} != 0 Skipping test: iperf / jq not found on the RG
347
348 #Reset the IP on the interface
349 ${output}= Login And Run Command On Remote System sudo ifconfig ${src['dp_iface_name']} 0
350 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
351 # Kill iperf on BNG
352 ${rg_output}= Run Keyword and Continue On Failure Login And Run Command On Remote System
353 ... sudo kill -9 `pidof iperf`
354 ... ${dst['bng_ip']} ${dst['bng_user']} ${dst['bng_pass']} ${dst['container_type']}
355 ... ${dst['container_name']}
356
357 # Setup RG for Multi-cast test
358 ${output}= Login And Run Command On Remote System
359 ... sudo ifconfig ${src['dp_iface_name']} ${src['mcast_rg']} up ; sudo kill -9 `pidof iperf`
360 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
361 ${output}= Login And Run Command On Remote System
362 ... sudo ip route add ${src['mcast_grp_subnet_mask']} dev ${src['dp_iface_name']} scope link
363 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
364
365 # Perform operations for adding subscriber
366 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number}
367 Set Global Variable ${of_id}
368 ${nni_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
369 ... Get NNI Port in ONOS ${of_id}
370 Set Global Variable ${nni_port}
371 ${onu_device_id}= Get Device ID From SN ${src['onu']}
372 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
373 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
374 # Check ONU port is Enabled in ONOS
375 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
376 ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']}
377 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
378 ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
379 ... volt-add-subscriber-access ${of_id} ${onu_port}
380 Sleep 30s
381 # Verify ONU state in voltha
382 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
383 ... ENABLED ACTIVE REACHABLE
384 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
385
386 # Setup iperf on the BNG
387 ${server_output}= Login And Run Command On Remote System
388 ... sudo iperf -c ${dst['dp_iface_ip_qinq']} -u -T 32 -t 60 -i 1 &
389 ... ${dst['bng_ip']} ${dst['bng_user']} ${dst['bng_pass']} ${dst['container_type']}
390 ... ${dst['container_name']}
391
392 # Setup iperf on the RG
393 ${rg_output}= Run Keyword and Continue On Failure Wait Until Keyword Succeeds 90s 5s
394 ... Login And Run Command On Remote System
395 ... rm -rf /tmp/rg_output ; sudo iperf -s -u -B ${dst['dp_iface_ip_qinq']} -i 1 -D >> /tmp/rg_output
396 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
397 Log ${rg_output}
398 Sleep 60s
399 ${output}= Run Keyword and Continue On Failure Wait Until Keyword Succeeds 90s 5s
400 ... Login And Run Command On Remote System
401 ... cat /tmp/rg_output | grep KBytes
402 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
403 Log ${output}
404 Should Contain ${output} KBytes
405
406 # Kill iperf on BNG
407 ${rg_output}= Run Keyword and Continue On Failure Login And Run Command On Remote System
408 ... sudo kill -9 `pidof iperf`
409 ... ${dst['bng_ip']} ${dst['bng_user']} ${dst['bng_pass']} ${dst['container_type']}
410 ... ${dst['container_name']}
411
412 # Kill iperf on the RG
413 ${output}= Run Keyword and Continue On Failure Login And Run Command On Remote System
414 ... sudo kill -9 `pidof iperf`
415 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
416
Suchitra Vemuri2f1e07d2020-06-26 19:18:01 -0700417
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000418Setup
419 [Documentation] Pre-test Setup
420 #test for empty device list
421 Test Empty Device List
Suchitra Vemuri3158f3c2020-05-28 17:58:26 -0700422 #Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds 120s 10s Openolt is Up
423 #... ${olt_ip} ${olt_user} ${olt_pass}
Suchitra Vemuri1d8e8172020-06-17 17:43:56 -0700424 Run Keyword If ${has_dataplane} Sleep 230s
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000425 #create/preprovision device
426 ${olt_device_id}= Create Device ${olt_ip} ${OLT_PORT}
427 Set Suite Variable ${olt_device_id}
428 #validate olt states
429 Wait Until Keyword Succeeds ${timeout} 5s
ubuntu6b6e7d42020-03-02 12:35:42 -0800430 ... Validate OLT Device PREPROVISIONED UNKNOWN UNKNOWN ${olt_device_id}
Suchitra Vemuria7e8ad22020-02-11 18:02:40 -0800431 Sleep 5s
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000432 Enable Device ${olt_device_id}
Suchitra Vemuricdc32d82020-07-17 12:24:46 -0700433 Wait Until Keyword Succeeds 380s 5s
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000434 ... Validate OLT Device ENABLED ACTIVE REACHABLE ${olt_serial_number}
435 ${logical_id}= Get Logical Device ID From SN ${olt_serial_number}
436 Set Suite Variable ${logical_id}
437
Hardik Windlassaaea3402020-03-10 19:45:45 +0530438Validate ONUs After OLT Disable
439 [Documentation] Validates the ONUs state in Voltha, ONUs port state in ONOS
440 ... and that pings do not succeed After corresponding OLT is Disabled
441 FOR ${I} IN RANGE 0 ${num_onus}
442 ${src}= Set Variable ${hosts.src[${I}]}
443 ${dst}= Set Variable ${hosts.dst[${I}]}
444 ${onu_device_id}= Get Device ID From SN ${src['onu']}
445 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
446 ... ${of_id}
447 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
448 ... Validate Device ENABLED DISCOVERED
449 ... UNREACHABLE ${src['onu']} onu=True onu_reason=stopping-openomci
450 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
Suchitra Vemuri760bdd32020-06-17 12:34:48 -0700451 ... Verify ONU Port Is Disabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']}
Hardik Windlassaaea3402020-03-10 19:45:45 +0530452 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
453 ... Wait Until Keyword Succeeds 60s 2s
454 ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
455 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
456 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
457 Run Keyword and Ignore Error Collect Logs
458 END
459
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000460Delete All Devices and Verify
461 [Documentation] Remove any devices from VOLTHA and ONOS
462 # Clear devices from VOLTHA
463 Disable Devices In Voltha Root=true
Suchitra Vemuri970747f2020-03-30 17:31:34 -0700464 Sleep 5s
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000465 Wait Until Keyword Succeeds ${timeout} 2s Test Devices Disabled In Voltha Root=true
466 Delete Devices In Voltha Root=true
Matteo Scandolof6cea382020-04-20 14:32:00 -0700467 Run Keyword If ${has_dataplane} Sleep 30s
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000468 Wait Until Keyword Succeeds ${timeout} 2s Test Empty Device List
469 # Clear devices from ONOS
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800470 #Remove All Devices From ONOS
ubuntu6b6e7d42020-03-02 12:35:42 -0800471 #... http://karaf:karaf@${ONOS_REST_IP}:${ONOS_REST_PORT}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000472
473Teardown
474 [Documentation] kills processes and cleans up interfaces on src+dst servers
475 Run Keyword If ${has_dataplane} Clean Up Linux
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000476
477Teardown Suite
478 [Documentation] Clean up device if desired
479 Run Keyword If ${teardown_device} Delete All Devices and Verify
480
481Delete Device and Verify
482 [Documentation] Disable -> Delete devices via voltctl and verify its removed
Suchitra Vemuri2fa9bba2020-01-22 17:38:48 -0800483 ${olt_device_id}= Get Device ID From SN ${olt_serial_number}
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000484 ${rc} ${output}= Run and Return Rc and Output
485 ... ${VOLTCTL_CONFIG}; voltctl device disable ${olt_device_id}
486 Should Be Equal As Integers ${rc} 0
487 Sleep 5s
488 Wait Until Keyword Succeeds ${timeout} 5s
489 ... Validate OLT Device DISABLED UNKNOWN REACHABLE ${olt_serial_number}
490 ${rc} ${output}= Run and Return Rc and Output
491 ... ${VOLTCTL_CONFIG}; voltctl device delete ${olt_device_id}
Matteo Scandolof6cea382020-04-20 14:32:00 -0700492 Run Keyword If ${has_dataplane} Sleep 50s
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +0000493 Should Be Equal As Integers ${rc} 0
494 Wait Until Keyword Succeeds ${timeout} 5s Validate Device Removed ${olt_device_id}
495
Gayathri.Selvan283a63c2020-01-23 04:09:18 +0000496Repeat Sanity Test
497 [Documentation] This keyword performs Sanity Test Procedure
498 ... Sanity test performs authentication, dhcp and pings for all the ONUs given for the POD
499 ... This keyword can be used to call in any other tests where sanity check is required
500 ... with wpa reassociation
501 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number}
502 Set Global Variable ${of_id}
503 FOR ${I} IN RANGE 0 ${num_onus}
Suchitra Vemuri03005912020-02-20 18:59:46 -0800504 Run Keyword and Ignore Error Collect Logs
Gayathri.Selvan283a63c2020-01-23 04:09:18 +0000505 ${src}= Set Variable ${hosts.src[${I}]}
506 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800507 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
508 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
509 # Check ONU port is Enabled in ONOD
510 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
Suchitra Vemuri760bdd32020-06-17 12:34:48 -0700511 ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']}
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800512 # Verify EAPOL flows are added for the ONU port
513 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
David K. Bainbridgec0617c92020-03-05 21:17:19 -0800514 ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800515 # Verify ONU state in voltha
Suchitra Vemurid1e27fb2020-02-01 16:34:37 -0800516 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
Suchitra Vemuri81e4f022020-02-01 13:16:02 -0800517 ... ENABLED ACTIVE REACHABLE
518 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800519 # Perform Authentication
Gayathri.Selvan283a63c2020-01-23 04:09:18 +0000520 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
521 ... Validate Authentication After Reassociate
522 ... True ${src['dp_iface_name']} ${src['ip']} ${src['user']} ${src['pass']}
523 ... ${src['container_type']} ${src['container_name']}
524 Wait Until Keyword Succeeds ${timeout} 2s
David K. Bainbridgec0617c92020-03-05 21:17:19 -0800525 ... Verify ONU in AAA-Users ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Gayathri.Selvan283a63c2020-01-23 04:09:18 +0000526 Wait Until Keyword Succeeds ${timeout} 2s
David K. Bainbridgec0617c92020-03-05 21:17:19 -0800527 ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
Gayathri.Selvan283a63c2020-01-23 04:09:18 +0000528 ... volt-add-subscriber-access ${of_id} ${onu_port}
529 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
530 ... Validate DHCP and Ping True True
531 ... ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
532 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
533 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
534 ... ${dst['container_name']}
535 Wait Until Keyword Succeeds ${timeout} 2s Run Keyword And Continue On Failure
David K. Bainbridgec0617c92020-03-05 21:17:19 -0800536 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Gayathri.Selvan283a63c2020-01-23 04:09:18 +0000537 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
538 Run Keyword and Ignore Error Collect Logs
539 END
Gayathri.Selvanb6a2b542020-01-24 07:24:23 +0000540
Hardik Windlass16cdf962020-04-29 15:26:50 +0530541Validate ONUs for PON OLT Disable
542 [Arguments] ${olt_peer_list}
543 [Documentation] This keyword validates that Ping fails for ONUs connected to Disabled OLT PON port
544 ... And Pings succeed for other Active OLT PON port ONUs
545 ... Also it removes subscriber for Disabled OLT PON port ONUs to replicate ATT workflow
546 FOR ${I} IN RANGE 0 ${num_onus}
547 ${src}= Set Variable ${hosts.src[${I}]}
548 ${dst}= Set Variable ${hosts.dst[${I}]}
549 ${onu_device_id}= Get Device ID From SN ${src['onu']}
550 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
551 ... ${of_id}
552 ${matched}= Match ONU in PON OLT Peer List ${olt_peer_list} ${onu_device_id}
553 Run Keyword If ${matched}
554 ... Run Keywords
555 ... Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
556 ... Validate Device ENABLED DISCOVERED
557 ... UNREACHABLE ${src['onu']} onu=True onu_reason=stopping-openomci
558 ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
559 ... Verify ONU Port Is Disabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']}
560 ... AND Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
561 ... Wait Until Keyword Succeeds 60s 2s
562 ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
563 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']}
564 ... ${src['container_name']}
565 # Remove Subscriber Access (To replicate ATT workflow)
566 ... AND Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command ${ONOS_SSH_IP}
567 ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port}
568 ... ELSE
569 ... Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
570 ... Wait Until Keyword Succeeds 60s 2s
571 ... Check Ping True ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
572 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']}
573 ... ${src['container_name']}
574 Run Keyword and Ignore Error Collect Logs
575 END
576
577Validate ONUs for PON OLT Enable
578 [Arguments] ${olt_peer_list}
579 [Documentation] This keyword validates Ping succeeds for all Enabled/Acitve OLT PON ports
580 ... Also performs Auth/subscriberAdd/DHCP/Ping for the ONUs on Re-Enabled OLT PON port
581 FOR ${I} IN RANGE 0 ${num_onus}
582 ${src}= Set Variable ${hosts.src[${I}]}
583 ${dst}= Set Variable ${hosts.dst[${I}]}
584 ${onu_device_id}= Get Device ID From SN ${src['onu']}
585 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
586 ... ${of_id}
587 ${matched}= Match ONU in PON OLT Peer List ${olt_peer_list} ${onu_device_id}
588 ${wpa_log}= Run Keyword If ${has_dataplane} and ${matched} Catenate SEPARATOR=.
589 ... /tmp/wpa ${src['dp_iface_name']} log
590 Run Keyword If ${matched}
591 ... Run Keywords
592 # Perform Cleanup
593 ... Run Keyword If ${has_dataplane} Clean Up Linux ${onu_device_id}
594 # Verify ONU port status
595 ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
596 ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']}
597 # Verify EAPOL flows are added for the ONU port
598 ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
599 ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
600 # Verify ONU state in voltha
601 ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
602 ... Validate Device ENABLED ACTIVE REACHABLE
603 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
604 # Perform Authentication
605 ... AND Run Keyword If ${has_dataplane}
606 ... Run Keyword And Continue On Failure Validate Authentication True
607 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
608 ... ${src['container_type']} ${src['container_name']} ${wpa_log}
609 ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
610 ... Verify ONU in AAA-Users ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
611 ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
612 ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
613 ... volt-add-subscriber-access ${of_id} ${onu_port}
614 # Verify that no pending flows exist for the ONU port
615 ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
616 ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
617 # Verify subscriber access flows are added for the ONU port
618 ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
619 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
620 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
621 ... AND Run Keyword If ${has_dataplane}
622 ... Run Keyword And Continue On Failure Validate DHCP and Ping True
623 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
624 ... ${src['ip']} ${src['user']} ${src['pass']}
625 ... ${src['container_type']} ${src['container_name']}
626 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']}
627 ... ${dst['container_type']} ${dst['container_name']}
628 ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
629 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
630 ... AND Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
631 ... ELSE
632 ... Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
633 ... Wait Until Keyword Succeeds 60s 2s
634 ... Check Ping True ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
635 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']}
636 ... ${src['container_name']}
637 Run Keyword and Ignore Error Collect Logs
638 END
639
640Validate ONUs for PON OLT Disable DT
641 [Arguments] ${olt_peer_list}
642 [Documentation] This keyword validates that Ping fails for ONUs connected to Disabled OLT PON port
643 ... And Pings succeed for other Active OLT PON port ONUs
644 ... Also it removes subscriber and deletes ONUs for Disabled OLT PON port to replicate DT workflow
645 FOR ${I} IN RANGE 0 ${num_onus}
646 ${src}= Set Variable ${hosts.src[${I}]}
647 ${dst}= Set Variable ${hosts.dst[${I}]}
648 ${onu_device_id}= Get Device ID From SN ${src['onu']}
649 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
650 ... ${of_id}
651 ${matched}= Match ONU in PON OLT Peer List ${olt_peer_list} ${onu_device_id}
652 Run Keyword If ${matched}
653 ... Run Keywords
654 ... Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
655 ... Validate Device ENABLED DISCOVERED
656 ... UNREACHABLE ${src['onu']} onu=True onu_reason=stopping-openomci
657 ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
658 ... Verify ONU Port Is Disabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']}
659 ... AND Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
660 ... Wait Until Keyword Succeeds 60s 2s
661 ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
662 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']}
663 ... ${src['container_name']}
664 # Remove Subscriber Access (To replicate DT workflow)
665 ... AND Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command ${ONOS_SSH_IP}
666 ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port}
667 ... AND Sleep 10s
668 # Delete ONU Device (To replicate DT workflow)
669 ... AND Delete Device ${onu_device_id}
670 ... AND Sleep 5s
671 ... ELSE
672 ... Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
673 ... Wait Until Keyword Succeeds 60s 2s
674 ... Check Ping True ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
675 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']}
676 ... ${src['container_name']}
677 Run Keyword and Ignore Error Collect Logs
678 END
679
680Validate ONUs for PON OLT Enable DT
681 [Arguments] ${olt_peer_list}
682 [Documentation] This keyword validates Ping succeeds for all Enabled/Acitve OLT PON ports
683 ... Also performs subscriberAdd/DHCP/Ping for the ONUs on Re-Enabled OLT PON port
684 FOR ${I} IN RANGE 0 ${num_onus}
685 ${src}= Set Variable ${hosts.src[${I}]}
686 ${dst}= Set Variable ${hosts.dst[${I}]}
687 ${onu_device_id}= Get Device ID From SN ${src['onu']}
688 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
689 ... ${of_id}
690 ${matched}= Match ONU in PON OLT Peer List ${olt_peer_list} ${onu_device_id}
691 Run Keyword If ${matched}
692 ... Run Keywords
693 # Perform Cleanup
694 ... Run Keyword If ${has_dataplane} Clean Up Linux ${onu_device_id}
695 # Verify ONU port status
696 ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
697 ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']}
698 ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
699 ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
700 ... volt-add-subscriber-access ${of_id} ${onu_port}
701 # Verify ONU state in voltha
702 ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
703 ... Validate Device ENABLED ACTIVE REACHABLE
704 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
705 # Verify subscriber access flows are added for the ONU port
706 ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
707 ... Verify Subscriber Access Flows Added For ONU DT ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
708 ... ${onu_port} ${nni_port} ${src['s_tag']}
709 ... AND Run Keyword If ${has_dataplane}
710 ... Run Keyword And Continue On Failure Validate DHCP and Ping True
711 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
712 ... ${src['ip']} ${src['user']} ${src['pass']}
713 ... ${src['container_type']} ${src['container_name']}
714 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']}
715 ... ${dst['container_type']} ${dst['container_name']}
716 ... ELSE
717 ... Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
718 ... Wait Until Keyword Succeeds 60s 2s
719 ... Check Ping True ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
720 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']}
721 ... ${src['container_name']}
722 Run Keyword and Ignore Error Collect Logs
723 END
724
725Match ONU in PON OLT Peer List
726 [Arguments] ${olt_peer_list} ${onu_device_id}
727 [Documentation] This keyword matches if ONU device is present in OLT PON port peer list
728 ${matched}= Set Variable False
729 FOR ${olt_peer} IN @{olt_peer_list}
730 ${matched}= Set Variable If '${onu_device_id}' == '${olt_peer}' True False
731 Exit For Loop If ${matched}
732 END
733 [Return] ${matched}
734
Gayathri.Selvanb6a2b542020-01-24 07:24:23 +0000735Collect Logs
736 [Documentation] Collect Logs from voltha and onos cli for various commands
737 Run Keyword and Ignore Error Get Device List from Voltha
738 Run Keyword and Ignore Error Get Device Output from Voltha ${olt_device_id}
739 Run Keyword and Ignore Error Get Logical Device Output from Voltha ${logical_id}
ubuntu6b6e7d42020-03-02 12:35:42 -0800740 Get ONOS Status ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
Gayathri.Selvanf68ea4b2020-02-03 07:36:39 +0000741
742Verify ping is succesful except for given device
743 [Arguments] ${num_onus} ${exceptional_onu_id}
744 [Documentation] Checks that ping for all the devices are successful except the given ONU.
745 ${pingStatus} Set Variable True
746 FOR ${I} IN RANGE 0 ${num_onus}
747 ${src}= Set Variable ${hosts.src[${I}]}
748 ${dst}= Set Variable ${hosts.dst[${I}]}
749 ${onu_device_id}= Get Device ID From SN ${src['onu']}
750 ${pingStatus} Run Keyword If '${onu_device_id}' == '${exceptional_onu_id}' Set Variable False
751 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 60s 2s
752 ... Check Ping ${pingStatus} ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
753 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
754 END
Andy Bavier4a8450e2020-02-04 08:58:37 -0700755
Andy Bavier1923ecc2020-06-18 14:06:40 -0700756Echo Message to OLT Logs
757 [Arguments] ${message}
758 [Documentation] Echoes ${message} into the OLT logs
Andy Bavier690ce432020-06-20 16:31:10 -0700759 Wait Until Keyword Succeeds 180s 10s Execute Remote Command
Andy Bavier6f613612020-06-19 15:08:30 -0700760 ... printf '%s\n' '' '' '${message}' '' >> /var/log/openolt.log
Suchitra Vemurib7253a52020-07-14 22:35:17 -0700761 ... ${olt_ssh_ip} ${olt_user} ${olt_pass}
Andy Bavier690ce432020-06-20 16:31:10 -0700762 Wait Until Keyword Succeeds 180s 10s Execute Remote Command
Andy Bavier6f613612020-06-19 15:08:30 -0700763 ... printf '%s\n' '' '' '${message}' '' >> /var/log/dev_mgmt_daemon.log
Suchitra Vemurib7253a52020-07-14 22:35:17 -0700764 ... ${olt_ssh_ip} ${olt_user} ${olt_pass}
Girish Gowdra26711d52020-07-28 15:57:02 -0700765 Wait Until Keyword Succeeds 180s 10s Execute Remote Command
766 ... printf '%s\n' '' '' '${message}' '' >> /var/log/openolt_process_watchdog.log
767 ... ${olt_ssh_ip} ${olt_user} ${olt_pass}
Andy Bavier1923ecc2020-06-18 14:06:40 -0700768
Andy Bavierabeba262020-02-07 16:22:16 -0700769Start Logging
770 [Arguments] ${label}
771 [Documentation] Start logging for test ${label}
772 ${kail_process}= Run Keyword If "${container_log_dir}" != "${None}" Start Process kail -n default
773 ... -n voltha cwd=${container_log_dir} stdout=${label}-combined.log
774 Set Test Variable ${kail_process}
Andy Bavier1923ecc2020-06-18 14:06:40 -0700775 Run Keyword If ${has_dataplane} Echo Message to OLT Logs START ${label}
Andy Bavierabeba262020-02-07 16:22:16 -0700776
777Stop Logging
778 [Arguments] ${label}
779 [Documentation] End logging for test; remove logfile if test passed
780 Run sync
781 Run Keyword If ${kail_process} Terminate Process ${kail_process}
782 ${test_logfile}= Run Keyword If "${container_log_dir}" != "${None}"
783 ... Join Path ${container_log_dir} ${label}-combined.log
784 Run Keyword If Test Passed Run Keyword If "${test_logfile}" != "${None}" Remove File ${test_logfile}
Andy Bavier1923ecc2020-06-18 14:06:40 -0700785 Run Keyword If ${has_dataplane} Echo Message to OLT Logs END ${label}
Andy Bavierabeba262020-02-07 16:22:16 -0700786
Suchitra Vemuria5fa3dd2020-02-04 14:38:49 -0800787Clean Up Linux
788 [Documentation] Kill processes and clean up interfaces on src+dst servers
Hardik Windlass16cdf962020-04-29 15:26:50 +0530789 [Arguments] ${onu_id}=${EMPTY}
Suchitra Vemuria5fa3dd2020-02-04 14:38:49 -0800790 FOR ${I} IN RANGE 0 ${num_onus}
791 ${src}= Set Variable ${hosts.src[${I}]}
792 ${dst}= Set Variable ${hosts.dst[${I}]}
Hardik Windlass16cdf962020-04-29 15:26:50 +0530793 ${onu_device_id}= Get Device ID From SN ${src['onu']}
794 Continue For Loop If '${onu_id}' != '${EMPTY}' and '${onu_id}' != '${onu_device_id}'
Andy Bavier84b83282020-06-30 05:47:49 -0700795 Execute Remote Command sudo pkill wpa_supplicant ${src['ip']}
Suchitra Vemuria5fa3dd2020-02-04 14:38:49 -0800796 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Andy Bavier84b83282020-06-30 05:47:49 -0700797 Execute Remote Command sudo pkill dhclient ${src['ip']}
Suchitra Vemuria5fa3dd2020-02-04 14:38:49 -0800798 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Andy Baviereff938d2020-06-29 18:27:49 -0700799 Execute Remote Command sudo pkill mausezahn ${src['ip']}
800 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
801 Run Keyword If '${dst['ip']}' != '${None}' Execute Remote Command pkill dhcpd
802 ... ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} ${dst['container_name']}
Suchitra Vemuria5fa3dd2020-02-04 14:38:49 -0800803 Delete IP Addresses from Interface on Remote Host ${src['dp_iface_name']} ${src['ip']}
804 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
805 Run Keyword If '${dst['ip']}' != '${None}' Delete Interface on Remote Host
806 ... ${dst['dp_iface_name']}.${src['s_tag']} ${dst['ip']} ${dst['user']} ${dst['pass']}
807 ... ${dst['container_type']} ${dst['container_name']}
Andy Bavier84b83282020-06-30 05:47:49 -0700808 ${bng_ip}= Get Variable Value ${dst['noroot_ip']}
809 ${bng_user}= Get Variable Value ${dst['noroot_user']}
810 ${bng_pass}= Get Variable Value ${dst['noroot_pass']}
Andy Bavierf4b7d1d2020-06-30 11:14:04 -0700811 Run Keyword If "${bng_ip}" != "${NONE}" and "${bng_user}" != "${NONE}" and "${bng_pass}" != "${NONE}"
812 ... Execute Remote Command sudo pkill mausezahn ${bng_ip} ${bng_user} ${bng_pass}
Andy Baviereff938d2020-06-29 18:27:49 -0700813 ... ${dst['container_type']} ${dst['container_name']}
Suchitra Vemuria5fa3dd2020-02-04 14:38:49 -0800814 END
Scott Baker60e570d2020-02-02 22:10:13 -0800815
Suchitra Vemuri8d3b0032020-09-11 17:49:08 -0700816Clean dhclient
817 [Documentation] Kills dhclient processes only for all RGs
818 FOR ${I} IN RANGE 0 ${num_onus}
819 ${src}= Set Variable ${hosts.src[${I}]}
820 ${dst}= Set Variable ${hosts.dst[${I}]}
821 Execute Remote Command sudo pkill dhclient ${src['ip']}
822 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
823 END
824
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800825Clean WPA Process
826 [Documentation] Kills wpa_supplicant processes only for all RGs
827 FOR ${I} IN RANGE 0 ${num_onus}
828 ${src}= Set Variable ${hosts.src[${I}]}
829 ${dst}= Set Variable ${hosts.dst[${I}]}
830 Run Keyword And Ignore Error Kill Linux Process [w]pa_supplicant ${src['ip']}
831 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
832 END
833
Scott Baker60e570d2020-02-02 22:10:13 -0800834Should Be Larger Than
835 [Documentation] Verify that value_1 is > value_2
836 [Arguments] ${value_1} ${value_2}
837 Run Keyword If ${value_1} <= ${value_2}
838 ... Fail The value ${value_1} is not larger than ${value_2}
839
Scott Bakeree675552020-02-11 10:43:34 -0800840Should Be Larger Than Or Equal To
841 [Documentation] Verify that value_1 is >= value_2
842 [Arguments] ${value_1} ${value_2}
843 Run Keyword If ${value_1} < ${value_2}
844 ... Fail The value ${value_1} is not larger than or equal to ${value_2}
845
Scott Baker60e570d2020-02-02 22:10:13 -0800846Should Be Float
847 [Documentation] Verify that value is a floating point number type
848 [Arguments] ${value}
849 ${type} Evaluate type(${value}).__name__
850 Should Be Equal ${type} float
851
Scott Bakeree675552020-02-11 10:43:34 -0800852Should Be Newer Than Or Equal To
853 [Documentation] Compare two RFC3339 dates
854 [Arguments] ${value_1} ${value_2}
855 ${unix_v1} Parse RFC3339 ${value_1}
856 ${unix_v2} Parse RFC3339 ${value_2}
857 Run Keyword If ${unix_v1} < ${unix_v2}
858 ... Fail The value ${value_1} is not newer than or equal to ${value_2}
859
Scott Baker60e570d2020-02-02 22:10:13 -0800860Get Current Time
861 [Documentation] Return the current time in RFC3339 format
862 ${output}= Run date -u +"%FT%T%:z"
863 [return] ${output}
Scott Bakeree675552020-02-11 10:43:34 -0800864
865Parse RFC3339
866 [Documentation] Parse an RFC3339 timestamp
867 [Arguments] ${dateStr}
868 ${rc} ${output}= Run and Return Rc and Output date --date="${dateStr}" "+%s"
869 Should Be Equal As Numbers ${rc} 0
870 [return] ${output}
Matteo Scandolo142e6272020-04-29 17:36:59 -0700871
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000872Get Bandwidth Profile Name For Given Subscriber
873 [Arguments] ${subscriber_id} ${stream_type}=upstreamBandwidthProfile
874 [Documentation] Keyword to get the bandwidth details of the given subscriber
875 ${bandwidth_profile_output}= Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
876 ... volt-programmed-subscribers | grep ${subscriber_id}
877 @{bandwidth_profile_array}= Split String ${bandwidth_profile_output} ,
878 Log ${bandwidth_profile_array}
879 FOR ${value} IN @{bandwidth_profile_array}
880 @{row_value}= Split String ${value} =
881 ${bandwidth_profile_name}= Set Variable If '${row_value[0]}' == ' ${stream_type}'
882 ... ${row_value[1]}
883 ${bandwidth_profile_name}= Convert To String ${bandwidth_profile_name}
884 Run Keyword If "${bandwidth_profile_name}" != "None" Exit For Loop
885 END
886 Log ${bandwidth_profile_name}
887 [Return] ${bandwidth_profile_name}
888
889Execute Remote Command
890 [Documentation] SSH into a remote host and execute a command on the bare host or in a container.
891 ... This replaces and simplifies the Login And Run Command On Remote System keyword in CORDRobot.
892 [Arguments] ${cmd} ${ip} ${user} ${pass}=${None}
Andy Baviereff938d2020-06-29 18:27:49 -0700893 ... ${container_type}=${None} ${container_name}=${None} ${timeout}=${None}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000894 ${conn_id}= SSHLibrary.Open Connection ${ip}
895 Run Keyword If '${pass}' != '${None}'
896 ... SSHLibrary.Login ${user} ${pass}
897 ... ELSE
898 ... SSHLibrary.Login With Public Key ${user} %{HOME}/.ssh/id_rsa
899 ${namespace}= Run Keyword If '${container_type}' == 'K8S' SSHLibrary.Execute Command
900 ... kubectl get pods --all-namespaces | grep ${container_name} | awk '{print $1}'
Andy Bavierf6ab19c2020-05-14 10:34:47 -0700901 ${stdout} ${stderr} ${rc}= Run Keyword If '${container_type}' == 'LXC'
902 ... SSHLibrary.Execute Command lxc exec ${container_name} -- ${cmd}
Andy Baviereff938d2020-06-29 18:27:49 -0700903 ... return_stderr=True return_rc=True timeout=${timeout}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000904 ... ELSE IF '${container_type}' == 'K8S'
Andy Bavierf6ab19c2020-05-14 10:34:47 -0700905 ... SSHLibrary.Execute Command kubectl -n ${namespace} exec ${container_name} -- ${cmd}
Andy Baviereff938d2020-06-29 18:27:49 -0700906 ... return_stderr=True return_rc=True timeout=${timeout}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000907 ... ELSE
Andy Baviereff938d2020-06-29 18:27:49 -0700908 ... SSHLibrary.Execute Command ${cmd} return_stderr=True return_rc=True timeout=${timeout}
Andy Bavierf6ab19c2020-05-14 10:34:47 -0700909
910 Log ${stdout}
911 Log ${stderr}
912 Log ${rc}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000913 SSHLibrary.Close Connection
Andy Bavierf6ab19c2020-05-14 10:34:47 -0700914 [Return] ${stdout} ${stderr} ${rc}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000915
Suraj Gour33651272020-05-04 10:10:16 +0530916Start Remote Command
917 [Documentation] SSH into a remote host and execute a command on the bare host or in a container.
918 ... This replaces and simplifies the Login And Run Command On Remote System keyword in CORDRobot.
919 [Arguments] ${cmd} ${ip} ${user} ${pass}=${None}
920 ... ${container_type}=${None} ${container_name}=${None}
921 ${conn_id}= SSHLibrary.Open Connection ${ip}
922 Run Keyword If '${pass}' != '${None}'
923 ... SSHLibrary.Login ${user} ${pass}
924 ... ELSE
925 ... SSHLibrary.Login With Public Key ${user} %{HOME}/.ssh/id_rsa
926 ${namespace}= Run Keyword If '${container_type}' == 'K8S' SSHLibrary.Execute Command
927 ... kubectl get pods --all-namespaces | grep ${container_name} | awk '{print $1}'
928 Run Keyword If '${container_type}' == 'LXC'
929 ... SSHLibrary.Start Command lxc exec ${container_name} -- ${cmd}
930 ... ELSE IF '${container_type}' == 'K8S'
931 ... SSHLibrary.Start Command kubectl -n ${namespace} exec ${container_name} -- ${cmd}
932 ... ELSE
933 ... SSHLibrary.Start Command ${cmd}
Andy Bavier9fb23232020-06-30 15:12:20 -0700934 # It seems that closing the connection immediately will sometimes kill the command
935 Sleep 1s
Suraj Gour33651272020-05-04 10:10:16 +0530936 SSHLibrary.Close Connection
937
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000938Run Iperf3 Test Client
939 [Arguments] ${src} ${server} ${args}
940 [Documentation] Login to ${src} and run the iperf3 client against ${server} using ${args}.
941 ... Return a Dictionary containing the results of the test.
Andy Bavierf6ab19c2020-05-14 10:34:47 -0700942 ${output} ${stderr} ${rc}= Execute Remote Command iperf3 -J -c ${server} ${args} | jq -M -c '.'
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000943 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Andy Bavierf6ab19c2020-05-14 10:34:47 -0700944 Should Be Equal As Integers ${rc} 0
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000945 ${object}= Evaluate json.loads(r'''${output}''') json
946 [Return] ${object}
Hung-Wei Chiue0bec7c2020-05-29 22:16:56 +0000947
Suchitra Vemuri85cb7d62020-07-16 23:46:16 -0700948Run Iperf Test Client for MCAST
949 [Arguments] ${src} ${server} ${args}
950 [Documentation] Login to ${src} and run the iperf client against ${server} using ${args}.
951 ... Return a Dictionary containing the results of the test.
952 ${output} ${stderr} ${rc}= Execute Remote Command sudo iperf -c ${server} ${args} | jq -M -c '.'
953 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
954 Should Be Equal As Integers ${rc} 0
955 ${object}= Evaluate json.loads(r'''${output}''') json
956 [Return] ${object}
957
Hung-Wei Chiue0bec7c2020-05-29 22:16:56 +0000958RestoreONUs
959 [Documentation] Restore all connected ONUs
960 [Arguments] ${num_onus}
961 FOR ${I} IN RANGE 0 ${num_onus}
962 ${src}= Set Variable ${hosts.src[${I}]}
Hung-Wei Chiucc6e6552020-06-04 12:57:38 -0700963 ${container_type}= Get Variable Value ${src['container_type']} "null"
964 ${container_name}= Get Variable Value ${src['container_name']} "null"
Hung-Wei Chiue0bec7c2020-05-29 22:16:56 +0000965 ${onu_type}= Get Variable Value ${src['onu_type']} "null"
Hung-Wei Chiucc6e6552020-06-04 12:57:38 -0700966 #Get ens6f0 from ens6f0.22
967 ${if_name}= Replace String Using Regexp ${src['dp_iface_name']} \\..* \
Hung-Wei Chiue0bec7c2020-05-29 22:16:56 +0000968 Run Keyword IF '${onu_type}' == 'alpha' AlphaONURestoreDefault ${src['ip']} ${src['user']}
Hung-Wei Chiucc6e6552020-06-04 12:57:38 -0700969 ... ${src['pass']} ${if_name} admin admin ${container_type} ${container_name}
Hung-Wei Chiue0bec7c2020-05-29 22:16:56 +0000970 END
971
972AlphaONURestoreDefault
973 [Documentation] Restore the Alpha ONU to factory setting
974 [Arguments] ${rg_ip} ${rg_user} ${rg_pass} ${onu_ifname}
Hung-Wei Chiucc6e6552020-06-04 12:57:38 -0700975 ... ${onu_user} ${onu_pass} ${container_type}=${None} ${container_name}=${None}
Hung-Wei Chiue0bec7c2020-05-29 22:16:56 +0000976 ${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 -0700977 ... ${rg_ip} ${rg_user} ${rg_pass} ${container_type} ${container_name}
Hung-Wei Chiue0bec7c2020-05-29 22:16:56 +0000978 ${cmd} Catenate
979 ... (echo open "192.168.1.1"; sleep 1;
980 ... echo "${onu_user}"; sleep 1;
981 ... echo "${onu_pass}"; sleep 1;
982 ... echo "restoredefault"; sleep 1) | telnet
983 ${output}= Login And Run Command On Remote System ${cmd}
Hung-Wei Chiucc6e6552020-06-04 12:57:38 -0700984 ... ${rg_ip} ${rg_user} ${rg_pass} ${container_type} ${container_name}
Hung-Wei Chiue0bec7c2020-05-29 22:16:56 +0000985 Log To Console ${output}
986 ${output}= Login And Run Command On Remote System sudo ifconfig ${onu_ifname} 0
Hung-Wei Chiucc6e6552020-06-04 12:57:38 -0700987 ... ${rg_ip} ${rg_user} ${rg_pass} ${container_type} ${container_name}
Suraj Gour33651272020-05-04 10:10:16 +0530988
989Create traffic with each pbit and capture at other end
990 [Documentation] Generates upstream traffic using Mausezahn tool
991 ... with each pbit and validates reception at other end using tcpdump
992 [Arguments] ${target_ip} ${target_iface} ${src_iface}
993 ... ${packet_count} ${packet_type} ${target_port} ${vlan} ${tcpdump_filter}
994 ... ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
995 ... ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
996 FOR ${pbit} IN RANGE 8
Andy Baviereff938d2020-06-29 18:27:49 -0700997 Execute Remote Command sudo pkill mausezahn
Suraj Gour33651272020-05-04 10:10:16 +0530998 ... ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
Andy Baviereff938d2020-06-29 18:27:49 -0700999 ${var1}= Set Variable sudo mausezahn ${src_iface} -B ${target_ip} -c ${packet_count} -d 100m
Suraj Gour33651272020-05-04 10:10:16 +05301000 ${var2}= Set Variable -t ${packet_type} "dp=${target_port}" -p 1472 -Q ${pbit}:${vlan}
1001 ${cmd}= Set Variable ${var1} ${var2}
1002 Start Remote Command ${cmd} ${src_ip} ${src_user} ${src_pass}
1003 ... ${src_container_type} ${src_container_name}
1004 ${output} ${stderr} ${rc}= Execute Remote Command
Andy Baviereff938d2020-06-29 18:27:49 -07001005 ... sudo tcpdump -l -U -c 30 -i ${target_iface} -e ${tcpdump_filter}
Suraj Gour33651272020-05-04 10:10:16 +05301006 ... ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
Andy Baviereff938d2020-06-29 18:27:49 -07001007 ... timeout=30 seconds
1008 Execute Remote Command sudo pkill mausezahn
Suraj Gour33651272020-05-04 10:10:16 +05301009 ... ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
1010 # VOL-3262: I'm seeing untagged downstream traffic at RG for pbit 0. According to Girish this is
1011 # incorrect behavior. Simplify the following check when VOL-3262 is resolved.
1012 Run Keyword If ${pbit}==0 and "${tcpdump_filter}"=="udp"
1013 ... Should Match Regexp ${output} \\.${target_port}: UDP,
1014 ... ELSE Should Match Regexp ${output} , p ${pbit},.*\\.${target_port}: UDP,
1015 END