blob: f8c53b8184f160a9830b9dbc23db5e339f672fb5 [file] [log] [blame]
David Bainbridgef81cd642019-11-20 00:14:47 +00001# Copyright 2017 - present Open Networking Foundation
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -07002#
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.
14
Matteo Scandolo1294aeb2019-09-24 16:20:32 -070015# FIXME Can we use the same test against BBSim and Hardware?
16
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -070017*** Settings ***
Zack Williamsec53a1b2019-09-16 15:50:52 -070018Documentation Test various end-to-end scenarios
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -070019Suite Setup Setup Suite
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -070020Test Setup Setup
21Test Teardown Teardown
Andy Bavierba9866b2019-10-11 07:11:53 -070022Suite Teardown Teardown Suite
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -070023Library Collections
24Library String
25Library OperatingSystem
26Library XML
27Library RequestsLibrary
Andy Bavierba9866b2019-10-11 07:11:53 -070028Library ../../libraries/DependencyLibrary.py
Suchitra Vemurib8ed2d52019-09-30 13:22:51 -070029Resource ../../libraries/onos.robot
30Resource ../../libraries/voltctl.robot
David Bainbridgef81cd642019-11-20 00:14:47 +000031Resource ../../libraries/voltha.robot
Suchitra Vemurib8ed2d52019-09-30 13:22:51 -070032Resource ../../libraries/utils.robot
Andy Bavierba9866b2019-10-11 07:11:53 -070033Resource ../../libraries/k8s.robot
Suchitra Vemurib8ed2d52019-09-30 13:22:51 -070034Resource ../../variables/variables.robot
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -070035
36*** Variables ***
Zack Williamsec53a1b2019-09-16 15:50:52 -070037${POD_NAME} flex-ocp-cord
38${KUBERNETES_CONF} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.conf
39${KUBERNETES_CONFIGS_DIR} ~/pod-configs/kubernetes-configs
40#${KUBERNETES_CONFIGS_DIR} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.conf
41${KUBERNETES_YAML} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.yml
42${HELM_CHARTS_DIR} ~/helm-charts
43${VOLTHA_POD_NUM} 8
suraj gourd64356b2019-11-07 13:26:20 +000044${NAMESPACE} voltha
45# For below variable value, using deployment name as using grep for
46# parsing radius pod name, we can also use full radius pod name
47${RESTART_POD_NAME} radius
Andy Bavierba9866b2019-10-11 07:11:53 -070048${timeout} 60s
Zack Williamsec53a1b2019-09-16 15:50:52 -070049${of_id} 0
50${logical_id} 0
Andy Bavierba9866b2019-10-11 07:11:53 -070051${has_dataplane} True
52${external_libs} True
53${teardown_device} False
David Bainbridgef81cd642019-11-20 00:14:47 +000054${scripts} ../../scripts
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -070055
56*** Test Cases ***
57Sanity E2E Test for OLT/ONU on POD
58 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
59 ... Validate successful authentication/DHCP/E2E ping for the tech profile that is used
Andy Bavierba9866b2019-10-11 07:11:53 -070060 [Tags] sanity test1
Suchitra Vemuri6db89412019-11-14 14:52:54 -080061 [Teardown] NONE
Suchitra Vemuric5295a32019-12-15 20:32:04 -080062 Run Keyword If ${has_dataplane} Clean Up Linux
Suchitra Vemurib89b9ac2019-12-11 21:53:11 -080063 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
Suchitra Vemuri582574b2019-12-10 21:11:54 -080064 Run Keyword and Ignore Error Collect Logs
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -070065
Suchitra Vemuri6db89412019-11-14 14:52:54 -080066Test Disable and Enable ONU
67 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
68 ... Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable
69 ... Perform disable on the ONUs and validate that the pings do not succeed
70 ... Perform enable on the ONUs and validate that the pings are successful
Suchitra Vemuri582574b2019-12-10 21:11:54 -080071 [Tags] functional DisableEnableONU
Suchitra Vemuri6db89412019-11-14 14:52:54 -080072 [Setup] None
suraj gour7f6d5fe2019-11-29 10:56:35 +000073 [Teardown] None
Suchitra Vemuri6db89412019-11-14 14:52:54 -080074
75 FOR ${I} IN RANGE 0 ${num_onus}
76 ${src}= Set Variable ${hosts.src[${I}]}
77 ${dst}= Set Variable ${hosts.dst[${I}]}
78
79 ${onu_device_id}= Get Device ID From SN ${src['onu']}
80 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
81 ... ${of_id}
82 Disable Device ${onu_device_id}
83 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 60s 2s Check Ping False ${dst['dp_iface_ip_qinq']}
84 ... ${src['dp_iface_name']} ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
85 Enable Device ${onu_device_id}
86 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
87 ... Validate Subscriber DHCP Allocation ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port}
88 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 60s 2s Check Ping True ${dst['dp_iface_ip_qinq']}
89 ... ${src['dp_iface_name']} ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Suchitra Vemuri582574b2019-12-10 21:11:54 -080090 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
91 Run Keyword and Ignore Error Collect Logs
Suchitra Vemuri6db89412019-11-14 14:52:54 -080092 END
Suchitra Vemuri582574b2019-12-10 21:11:54 -080093 Run Keyword and Ignore Error Collect Logs
Suchitra Vemuri6db89412019-11-14 14:52:54 -080094
suraj gourd64356b2019-11-07 13:26:20 +000095Check OLT/ONU Authentication After Radius Pod Restart
suraj gour7f6d5fe2019-11-29 10:56:35 +000096 [Documentation] After radius restart, triggers reassociation, checks status and
97 ... authentication, validates dhcp and ping. Note : wpa reassociate works only when
98 ... wpa supplicant is running in background hence it is recommended to remove
99 ... teardown from previous test or uncomment 'Teardown None'.
100 ... Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable
Suchitra Vemuri582574b2019-12-10 21:11:54 -0800101 [Tags] functional RadiusRestart
suraj gourd5cfdbb2019-12-13 12:44:55 +0000102 [Setup] None
Suchitra Vemuri73357a42019-12-15 23:18:51 -0800103 #[Teardown] None
suraj gourd64356b2019-11-07 13:26:20 +0000104 Wait Until Keyword Succeeds ${timeout} 15s Restart Pod ${NAMESPACE} ${RESTART_POD_NAME}
105
106 FOR ${I} IN RANGE 0 ${num_onus}
107 ${src}= Set Variable ${hosts.src[${I}]}
108 ${dst}= Set Variable ${hosts.dst[${I}]}
109
110
111 ${onu_device_id}= Get Device ID From SN ${src['onu']}
112 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
113 ... ${of_id}
114 Wait Until Keyword Succeeds ${timeout} 2s Verify Eapol Flows Added For ONU ${k8s_node_ip}
115 ... ${ONOS_SSH_PORT} ${onu_port}
suraj gour7f6d5fe2019-11-29 10:56:35 +0000116 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication After Reassociate
117 ... True ${src['dp_iface_name']} ${src['ip']} ${src['user']} ${src['pass']}
suraj gourd64356b2019-11-07 13:26:20 +0000118 ... ${src['container_type']} ${src['container_name']}
119 Wait Until Keyword Succeeds ${timeout} 2s Verify ONU in AAA-Users ${k8s_node_ip}
120 ... ${ONOS_SSH_PORT} ${onu_port}
121 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
122 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
123 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
124 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
125 ... ${dst['container_name']}
126 Wait Until Keyword Succeeds ${timeout} 2s Run Keyword And Continue On Failure
127 ... Validate Subscriber DHCP Allocation ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port}
Suchitra Vemuri582574b2019-12-10 21:11:54 -0800128 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
129 Run Keyword and Ignore Error Collect Logs
suraj gourd64356b2019-11-07 13:26:20 +0000130 END
Suchitra Vemuri582574b2019-12-10 21:11:54 -0800131 Run Keyword and Ignore Error Collect Logs
suraj gourd64356b2019-11-07 13:26:20 +0000132
suraj gourd5cfdbb2019-12-13 12:44:55 +0000133Check DHCP attempt fails when subscriber is not added
134 [Documentation] Validates when removed subscriber access, DHCP attempt, ping fails and
135 ... when again added subscriber access, DHCP attempt, ping succeeds
136 ... Assuming that test1 or sanity test was executed where all the ONUs are authenticated/DHCP/pingable
Andy Bavier70eab042019-12-14 14:16:26 -0700137 [Tags] functional SubsRemoveDHCP notready
suraj gourd5cfdbb2019-12-13 12:44:55 +0000138 [Setup] None
139 #[Teardown] None
140
141 FOR ${I} IN RANGE 0 ${num_onus}
142 ${src}= Set Variable ${hosts.src[${I}]}
143 ${dst}= Set Variable ${hosts.dst[${I}]}
144
145 ${onu_device_id}= Get Device ID From SN ${src['onu']}
146 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
147 ... ${of_id}
148 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command ${k8s_node_ip}
149 ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port}
150 # For releasing IP, also deleting lease file. Hence passing path where DHCP Client program writes the lease
151 Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds ${timeout} 2s
152 ... Send Dhclient Request To Release Assigned IP ${src['dp_iface_name']} ${src['ip']}
153 ... ${src['user']} /var/lib/dhcp ${src['pass']} ${src['container_type']} ${src['container_name']}
suraj gour19ee3a82019-12-16 09:43:14 +0000154 Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds ${timeout} 2s
155 ... Delete IP Addresses from Interface on Remote Host ${src['dp_iface_name']} ${src['ip']}
156 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000157 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping False
158 ... False ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
159 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
160 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
161 ... ${dst['container_name']}
162 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command ${k8s_node_ip}
163 ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port}
164 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
165 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
166 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
167 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
168 ... ${dst['container_name']}
169 END
170 Run Keyword and Ignore Error Collect Logs
171
David Bainbridgef81cd642019-11-20 00:14:47 +0000172Sanity E2E Test for OLT/ONU on POD With Core Fail and Restart
173 [Documentation] Deploys an device instance and waits for it to authenticate. After
174 ... authentication is successful the rw-core deployment is scaled to 0 instances to
175 ... simulate a POD crash. The test then scales the rw-core back to a single instance
176 ... and configures ONOS for access. The test succeeds if the device is able to
177 ... complete the DHCP sequence.
178 [Tags] bbsim rwcore-restart
179 [Setup] Clear All Devices Then Create New Device
180 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number}
181 Set Global Variable ${of_id}
182
183 FOR ${I} IN RANGE 0 ${num_onus}
184 ${src}= Set Variable ${hosts.src[${I}]}
185 ${dst}= Set Variable ${hosts.dst[${I}]}
186 ${onu_device_id}= Get Device ID From SN ${src['onu']}
187 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
188 ... ${of_id}
189
190 # Bring up the device and verify it authenticates
191 Wait Until Keyword Succeeds ${timeout} 5s Validate Device ENABLED ACTIVE REACHABLE
192 ... ${onu_device_id} onu=True onu_reason=omci-flows-pushed
193 Wait Until Keyword Succeeds ${timeout} 2s Verify Eapol Flows Added For ONU ${k8s_node_ip}
194 ... ${ONOS_SSH_PORT} ${onu_port}
195 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True
196 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
197 ... ${src['container_type']} ${src['container_name']}
198 Wait Until Keyword Succeeds ${timeout} 2s Verify ONU in AAA-Users ${k8s_node_ip}
199 ... ${ONOS_SSH_PORT} ${onu_port}
200
201 # Scale down the rw-core deployment to 0 PODs and once confirmed, scale it back to 1
202 Scale K8s Deployment voltha voltha-rw-core 0
203 Wait Until Keyword Succeeds ${timeout} 2s Pod Does Not Exist voltha voltha-rw-core
204 # Ensure the ofagent POD goes "not-ready" as expected
205 Wait Until keyword Succeeds ${timeout} 2s Check Expected Available Deployment Replicas voltha voltha-ofagent 0
206 # Scale up the core deployment and make sure both it and the ofagent deployment are back
207 Scale K8s Deployment voltha voltha-rw-core 1
208 Wait Until Keyword Succeeds ${timeout} 2s Check Expected Available Deployment Replicas voltha voltha-rw-core 1
209 Wait Until Keyword Succeeds ${timeout} 2s Check Expected Available Deployment Replicas voltha voltha-ofagent 1
210
211 # For some reason scaling down and up the POD behind a service causes the port forward to stop working,
212 # so restart the port forwarding for the API service
213 Restart VOLTHA Port Foward voltha-api-minimal
214
215 # Ensure that the ofagent pod is up and ready and the device is available in ONOS, this
216 # represents system connectivity being restored
217 Wait Until Keyword Succeeds ${timeout} 2s Device Is Available In ONOS
218 ... http://karaf:karaf@${k8s_node_ip}:${ONOS_REST_PORT} ${of_id}
219
220 # Add subscriber access and verify that DHCP completes to ensure system is still functioning properly
221 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command ${k8s_node_ip}
222 ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port}
223 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
224 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
225 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
226 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
227 ... ${dst['container_name']}
228 Wait Until Keyword Succeeds ${timeout} 2s Run Keyword And Continue On Failure
229 ... Validate Subscriber DHCP Allocation ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port}
230 END
231
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -0700232*** Keywords ***
233Setup Suite
Andy Bavier88cd9f62019-11-26 16:22:33 -0700234 [Documentation] Set up the test suite
235 Common Test Suite Setup
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -0700236
237Setup
Zack Williamsec53a1b2019-09-16 15:50:52 -0700238 [Documentation] Pre-test Setup
Gilles Depatieb5682f82019-10-31 10:39:45 -0400239 #test for empty device list
David Bainbridgef81cd642019-11-20 00:14:47 +0000240 Test Empty Device List
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -0700241 #create/preprovision device
Suchitra Vemuric59eb272019-09-18 17:59:33 -0700242 ${olt_device_id}= Create Device ${olt_ip} ${OLT_PORT}
243 Set Suite Variable ${olt_device_id}
Gilles Depatieb5682f82019-10-31 10:39:45 -0400244 #validate olt states
245 Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device PREPROVISIONED UNKNOWN UNKNOWN
246 ... ${EMPTY} ${olt_device_id}
Suchitra Vemuric59eb272019-09-18 17:59:33 -0700247 Enable Device ${olt_device_id}
Gilles Depatieb5682f82019-10-31 10:39:45 -0400248 Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device ENABLED ACTIVE REACHABLE
249 ... ${olt_serial_number}
Suchitra Vemuri00d147d2019-09-13 13:07:32 -0700250 ${logical_id}= Get Logical Device ID From SN ${olt_serial_number}
251 Set Suite Variable ${logical_id}
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -0700252
David Bainbridgef81cd642019-11-20 00:14:47 +0000253Delete All Devices and Verify
254 [Documentation] Remove any devices from VOLTHA and ONOS
255
256 # Clear devices from VOLTHA
257 Disable Devices In Voltha Root=true
258 Wait Until Keyword Succeeds ${timeout} 2s Test Devices Disabled In Voltha Root=true
259 Delete Devices In Voltha Root=true
260 Wait Until Keyword Succeeds ${timeout} 2s Test Empty Device List
261
262 # Clear devices from ONOS
263 Remove All Devices From ONOS
264 ... http://karaf:karaf@${k8s_node_ip}:${ONOS_REST_PORT}
265
266Clear All Devices Then Create New Device
267 [Documentation] Remove any devices from VOLTHA and ONOS
268
269 # Remove all devices from voltha and nos
270 Delete All Devices and Verify
271
272 # Execute normal test Setup Keyword
273 Setup
274
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -0700275Teardown
276 [Documentation] kills processes and cleans up interfaces on src+dst servers
Suchitra Vemuri582574b2019-12-10 21:11:54 -0800277 Run Keyword If ${has_dataplane} Clean Up Linux
278 Run Keyword If ${external_libs} Log Kubernetes Containers Logs Since Time ${datetime} ${container_list}
279
280Collect Logs
281 [Documentation] Collect Logs from voltha and onos cli for various commands
Suchitra Vemuri1a970a62019-11-26 12:52:16 -0800282 Run Keyword and Ignore Error Get Device List from Voltha
283 Run Keyword and Ignore Error Get Device Output from Voltha ${olt_device_id}
284 Run Keyword and Ignore Error Get Logical Device Output from Voltha ${logical_id}
Andy Bavierba9866b2019-10-11 07:11:53 -0700285 Run Keyword If ${external_libs} Get ONOS Status ${k8s_node_ip}
Andy Bavierba9866b2019-10-11 07:11:53 -0700286
287Teardown Suite
288 [Documentation] Clean up device if desired
David Bainbridgef81cd642019-11-20 00:14:47 +0000289 Run Keyword If ${teardown_device} Delete All Devices and Verify
Gilles Depatieb5682f82019-10-31 10:39:45 -0400290
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -0700291Clean Up Linux
292 [Documentation] Kill processes and clean up interfaces on src+dst servers
Suchitra Vemuri8a9c3782019-10-23 12:43:01 -0700293 FOR ${I} IN RANGE 0 ${num_onus}
294 ${src}= Set Variable ${hosts.src[${I}]}
295 ${dst}= Set Variable ${hosts.dst[${I}]}
296 Run Keyword And Ignore Error Kill Linux Process [w]pa_supplicant ${src['ip']}
297 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
298 Run Keyword And Ignore Error Kill Linux Process [d]hclient ${src['ip']}
299 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
300 Run Keyword If '${dst['ip']}' != '${None}' Run Keyword And Ignore Error
301 ... Kill Linux Process [d]hcpd ${dst['ip']} ${dst['user']}
302 ... ${dst['pass']} ${dst['container_type']} ${dst['container_name']}
303 Delete IP Addresses from Interface on Remote Host ${src['dp_iface_name']} ${src['ip']}
304 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
305 Run Keyword If '${dst['ip']}' != '${None}' Delete Interface on Remote Host
306 ... ${dst['dp_iface_name']}.${src['s_tag']} ${dst['ip']} ${dst['user']} ${dst['pass']}
307 ... ${dst['container_type']} ${dst['container_name']}
308 END
Andy Bavierba9866b2019-10-11 07:11:53 -0700309
310Delete Device and Verify
311 [Documentation] Disable -> Delete devices via voltctl and verify its removed
Andy Bavierba9866b2019-10-11 07:11:53 -0700312 ${rc} ${output}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl device disable ${olt_device_id}
313 Should Be Equal As Integers ${rc} 0
Gilles Depatieb5682f82019-10-31 10:39:45 -0400314 Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device DISABLED UNKNOWN REACHABLE
315 ... ${olt_serial_number}
Andy Bavierba9866b2019-10-11 07:11:53 -0700316 ${rc} ${output}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl device delete ${olt_device_id}
317 Should Be Equal As Integers ${rc} 0
318 Wait Until Keyword Succeeds ${timeout} 5s Validate Device Removed ${olt_device_id}
Suchitra Vemurib89b9ac2019-12-11 21:53:11 -0800319
320Perform Sanity Test
321 [Documentation] This keyword performs Sanity Test Procedure
322 ... Sanity test performs authentication, dhcp and pings for all the ONUs given for the POD
323 ... This keyword can be used to call in any other tests where sanity check is required
324 ... and avoids duplication of code.
325
326 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number}
327 Set Global Variable ${of_id}
328
329 FOR ${I} IN RANGE 0 ${num_onus}
330 ${src}= Set Variable ${hosts.src[${I}]}
331 ${dst}= Set Variable ${hosts.dst[${I}]}
332
333 Wait Until Keyword Succeeds ${timeout} 5s Validate Device ENABLED ACTIVE REACHABLE
334 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
335
336 ${onu_device_id}= Get Device ID From SN ${src['onu']}
337 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
338 ... ${of_id}
339 Wait Until Keyword Succeeds ${timeout} 2s Verify Eapol Flows Added For ONU ${k8s_node_ip}
340 ... ${ONOS_SSH_PORT} ${onu_port}
341 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True
342 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
343 ... ${src['container_type']} ${src['container_name']}
344 Wait Until Keyword Succeeds ${timeout} 2s Verify ONU in AAA-Users ${k8s_node_ip}
345 ... ${ONOS_SSH_PORT} ${onu_port}
346 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command ${k8s_node_ip}
347 ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port}
348 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
349 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
350 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
351 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
352 ... ${dst['container_name']}
353 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
354 ... Validate Subscriber DHCP Allocation ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port}
355 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
356 Run Keyword and Ignore Error Collect Logs
357 END