blob: 674ea307f9dc9b7c31eb8ca8beeaafecc3dda156 [file] [log] [blame]
Gayathri.Selvan283a63c2020-01-23 04:09:18 +00001# 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.
Gayathri.Selvan283a63c2020-01-23 04:09:18 +000014
15*** Settings ***
HungWei Chiu87edb1f2020-01-28 00:10:58 +000016Documentation Test various failure scenarios
HungWei Chiu1408fb92020-03-03 19:43:30 -050017Suite Setup Setup Suite
Gayathri.Selvan283a63c2020-01-23 04:09:18 +000018Test Setup Setup
19Test Teardown Teardown
20#Suite Teardown Teardown Suite
21Library Collections
22Library String
23Library OperatingSystem
24Library XML
25Library RequestsLibrary
26Library ../../libraries/DependencyLibrary.py
27Resource ../../libraries/onos.robot
28Resource ../../libraries/voltctl.robot
29Resource ../../libraries/voltha.robot
30Resource ../../libraries/utils.robot
31Resource ../../libraries/k8s.robot
32Resource ../../variables/variables.robot
HungWei Chiu87edb1f2020-01-28 00:10:58 +000033Resource ../../libraries/power_switch.robot
Gayathri.Selvan283a63c2020-01-23 04:09:18 +000034
35*** Variables ***
36${POD_NAME} flex-ocp-cord
37${KUBERNETES_CONF} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.conf
38${KUBERNETES_CONFIGS_DIR} ~/pod-configs/kubernetes-configs
39#${KUBERNETES_CONFIGS_DIR} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.conf
40${KUBERNETES_YAML} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.yml
41${HELM_CHARTS_DIR} ~/helm-charts
42${VOLTHA_POD_NUM} 8
43${NAMESPACE} voltha
Suchitra Vemurica1c5d32020-04-09 18:45:29 -070044${DEFAULTSPACE} default
Gayathri.Selvan283a63c2020-01-23 04:09:18 +000045# 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
48${timeout} 60s
49${of_id} 0
50${logical_id} 0
Suchitra Vemuri109feb12020-01-23 16:25:02 -080051${has_dataplane} True
Gayathri.Selvan283a63c2020-01-23 04:09:18 +000052${teardown_device} False
53${scripts} ../../scripts
54
Andy Bavierabeba262020-02-07 16:22:16 -070055# Per-test logging on failure is turned off by default; set this variable to enable
56${container_log_dir} ${None}
57
Gayathri.Selvan283a63c2020-01-23 04:09:18 +000058*** Test Cases ***
Suchitra Vemuri60be98b2020-02-19 16:41:21 -080059Verify ONU after rebooting physically
60 [Documentation] Test the ONU functionality by physically turning on/off ONU.
61 ... Prerequisite : Subscriber are authenticated/DHCP/pingable state
62 ... Test case runs only on the PODs that are configured with PowerSwitch that
63 ... controls the power off/on ONUs/OLT remotely (simulating a physical reboot)
64 ... VOL-2634
65 [Tags] functional PowerSwitch
Andy Baviere187eda2020-04-20 15:00:02 -070066 [Setup] Start Logging ONUreboot_PowerSwitch
Suchitra Vemuri60be98b2020-02-19 16:41:21 -080067 [Teardown] Run Keywords Collect Logs
Suchitra Vemuri9a6dd6d2020-02-28 17:46:26 -080068 ... AND Stop Logging ONUreboot_PowerSwitch
Suchitra Vemuri0656bc22020-03-21 19:07:49 -070069 ... AND Delete Device and Verify
Suchitra Vemuri60be98b2020-02-19 16:41:21 -080070 # Add OLT device
71 setup
72 # Performing Sanity Test to make sure subscribers are all AUTH+DHCP and pingable
73 Run Keyword If ${has_dataplane} Clean Up Linux
74 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
75 Power Switch Connection Suite ${web_power_switch.ip} ${web_power_switch.user} ${web_power_switch.password}
76 FOR ${I} IN RANGE 0 ${num_onus}
77 ${src}= Set Variable ${hosts.src[${I}]}
78 ${dst}= Set Variable ${hosts.dst[${I}]}
Hardik Windlass0560f802020-05-06 23:06:53 +053079 ${onu_device_id}= Get Device ID From SN ${src['onu']}
Suchitra Vemuri60be98b2020-02-19 16:41:21 -080080 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
81 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
82 Disable Switch Outlet ${src['power_switch_port']}
83 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
84 ... Wait Until Keyword Succeeds 60s 2s
85 ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
86 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Hardik Windlass7c801e62020-05-04 19:33:21 +053087 # Remove Subscriber Access (To replicate ATT workflow)
88 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command ${ONOS_SSH_IP}
89 ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port}
Suchitra Vemuri60be98b2020-02-19 16:41:21 -080090
91 Enable Switch Outlet ${src['power_switch_port']}
92 # Check ONU port is Enabled in ONOS
93 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
ubuntu6b6e7d42020-03-02 12:35:42 -080094 ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Suchitra Vemuri60be98b2020-02-19 16:41:21 -080095 # Verify EAPOL flows are added for the ONU port
96 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
ubuntu6b6e7d42020-03-02 12:35:42 -080097 ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Suchitra Vemuri60be98b2020-02-19 16:41:21 -080098 # Verify ONU state in voltha
99 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
100 ... ENABLED ACTIVE REACHABLE
101 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
Hardik Windlass7c801e62020-05-04 19:33:21 +0530102 Run Keyword If ${has_dataplane} Clean Up Linux
103 # Perform Authentication
104 ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=.
105 ... /tmp/wpa ${src['dp_iface_name']} log
106 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True
107 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
108 ... ${src['container_type']} ${src['container_name']} ${wpa_log}
109 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
110 ... Verify ONU in AAA-Users ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
111 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
112 ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
113 ... volt-add-subscriber-access ${of_id} ${onu_port}
114 # Verify that no pending flows exist for the ONU port
115 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
116 ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Hardik Windlass21807632020-04-14 16:24:55 +0530117 # Verify subscriber access flows are added for the ONU port
118 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
119 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
120 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
Hardik Windlass7c801e62020-05-04 19:33:21 +0530121 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']}
Suchitra Vemuri60be98b2020-02-19 16:41:21 -0800123 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Hardik Windlass7c801e62020-05-04 19:33:21 +0530124 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
125 ... ${dst['container_name']}
126 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
127 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
128 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
Suchitra Vemuri60be98b2020-02-19 16:41:21 -0800129 Run Keyword And Ignore Error Collect Logs
130 END
Suchitra Vemurid7096132020-02-21 14:50:47 -0800131 # Deleting OLT after tests completes independently (as this test doesn't not run on each POD)
Suchitra Vemuri0656bc22020-03-21 19:07:49 -0700132 #Run Keyword If ${has_dataplane} Delete Device and Verify
Suchitra Vemuria7dae322020-02-19 22:38:18 -0800133
Suchitra Vemuri784e1ae2020-03-16 18:40:25 -0700134Verify OLT after rebooting physically
135 [Documentation] Test the physical reboot of the OLT
136 ... Prerequisite : Subscriber are authenticated/DHCP/pingable state
137 ... Test performs a physical reboot, performs "reboot" from the OLT CLI
138 ... VOL-1956
139 [Tags] functional PhysicalOLTReboot
Andy Baviere187eda2020-04-20 15:00:02 -0700140 [Setup] Start Logging PhysicalOLTReboot
Suchitra Vemuri784e1ae2020-03-16 18:40:25 -0700141 [Teardown] Run Keywords Collect Logs
142 ... AND Stop Logging PhysicalOLTReboot
Suchitra Vemurib3a92e42020-03-21 16:49:57 -0700143 ... AND Delete Device and Verify
Suchitra Vemuri784e1ae2020-03-16 18:40:25 -0700144 # Add OLT device
145 setup
146 # Performing Sanity Test to make sure subscribers are all AUTH+DHCP and pingable
147 Run Keyword If ${has_dataplane} Clean Up Linux
148 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
149 # Reboot the OLT from the OLT CLI
150 Run Keyword If ${has_dataplane} Login And Run Command On Remote System
151 ... sudo reboot ${olt_ip} ${olt_user} ${olt_pass} prompt=#
152 Run Keyword And Ignore Error Collect Logs
153 FOR ${I} IN RANGE 0 ${num_onus}
154 ${src}= Set Variable ${hosts.src[${I}]}
155 ${dst}= Set Variable ${hosts.dst[${I}]}
156 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
157 ... Wait Until Keyword Succeeds 60s 2s
158 ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
159 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
160 END
161 # Wait for the OLT to come back up
Andy Bavier8da0e132020-04-13 10:25:16 -0700162 Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds 120s 10s
163 ... Check Remote System Reachability True ${olt_ip}
Suchitra Vemuri64db9652020-03-22 21:11:13 -0700164 # Waiting extra time for the ONUs to come up
165 Sleep 60s
Suchitra Vemuri784e1ae2020-03-16 18:40:25 -0700166 Run Keyword And Ignore Error Collect Logs
167 Run Keyword If ${has_dataplane} Clean Up Linux
168 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
169 # Deleting OLT after test completes
Suchitra Vemurib3a92e42020-03-21 16:49:57 -0700170 #Run Keyword If ${has_dataplane} Delete Device and Verify
Suchitra Vemuri784e1ae2020-03-16 18:40:25 -0700171
Suchitra Vemuri05180cb2020-03-26 13:13:27 -0700172Verify restart openolt-adapter container after subscriber provisioning
Suchitra Vemuria7dae322020-02-19 22:38:18 -0800173 [Documentation] Restart openolt-adapter container after VOLTHA is operational.
174 ... Prerequisite : ONUs are authenticated and pingable.
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800175 [Tags] functional VOL-1958 Restart-OpenOlt released
Andy Baviere187eda2020-04-20 15:00:02 -0700176 [Setup] Start Logging Restart-OpenOlt
Suchitra Vemuria7dae322020-02-19 22:38:18 -0800177 [Teardown] Run Keywords Collect Logs
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800178 ... AND Stop Logging Restart-OpenOlt
Suchitra Vemuria7dae322020-02-19 22:38:18 -0800179 # Add OLT device
180 setup
181 # Performing Sanity Test to make sure subscribers are all AUTH+DHCP and pingable
182 Run Keyword If ${has_dataplane} Clean Up Linux
183 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
184 ${waitforRestart} Set Variable 120s
185 ${podStatusOutput}= Run kubectl get pods -n ${NAMESPACE}
186 Log ${podStatusOutput}
187 ${countBforRestart}= Run kubectl get pods -n ${NAMESPACE} | grep Running | wc -l
Suchitra Vemuri718c0512020-06-10 20:56:02 -0700188 ${podName} Set Variable open-olt
Suchitra Vemuria7dae322020-02-19 22:38:18 -0800189 Restart Pod ${NAMESPACE} ${podName}
190 Wait Until Keyword Succeeds ${waitforRestart} 2s Validate Pod Status ${podName} ${NAMESPACE}
191 ... Running
Suchitra Vemuri312bfe02020-03-16 16:11:34 -0700192 # Wait for 1min after openolt adapter is restarted
193 Sleep 60s
Suchitra Vemuria7dae322020-02-19 22:38:18 -0800194 Repeat Sanity Test
Suchitra Vemurid7096132020-02-21 14:50:47 -0800195 Run Keyword and Ignore Error Collect Logs
Suchitra Vemuria7dae322020-02-19 22:38:18 -0800196 ${podStatusOutput}= Run kubectl get pods -n ${NAMESPACE}
197 Log ${podStatusOutput}
198 ${countAfterRestart}= Run kubectl get pods -n ${NAMESPACE} | grep Running | wc -l
199 Should Be Equal As Strings ${countAfterRestart} ${countBforRestart}
200 Log to console Pod ${podName} restarted and sanity checks passed successfully
Suchitra Vemuri60be98b2020-02-19 16:41:21 -0800201
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800202Check OLT/ONU Authentication After Radius Pod Restart
203 [Documentation] After radius restart, triggers reassociation, checks status and
204 ... authentication, validates dhcp and ping. Note : wpa reassociate works only when
205 ... wpa supplicant is running in background hence it is recommended to remove
206 ... teardown from previous test or uncomment 'Teardown None'.
207 ... Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable
208 [Tags] functional RadiusRestart released
Andy Baviere187eda2020-04-20 15:00:02 -0700209 [Setup] Start Logging RadiusRestart
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800210 [Teardown] Run Keywords Collect Logs
211 ... AND Stop Logging RadiusRestart
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800212 ${waitforRestart} Set Variable 120s
Suchitra Vemurica1c5d32020-04-09 18:45:29 -0700213 Wait Until Keyword Succeeds ${timeout} 15s Restart Pod ${DEFAULTSPACE} ${RESTART_POD_NAME}
214 Wait Until Keyword Succeeds ${waitforRestart} 2s Validate Pod Status ${RESTART_POD_NAME}
215 ... ${DEFAULTSPACE} Running
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800216 FOR ${I} IN RANGE 0 ${num_onus}
217 ${src}= Set Variable ${hosts.src[${I}]}
218 ${dst}= Set Variable ${hosts.dst[${I}]}
219 ${onu_device_id}= Get Device ID From SN ${src['onu']}
220 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s
221 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
222 Wait Until Keyword Succeeds ${timeout} 2s
ubuntu6b6e7d42020-03-02 12:35:42 -0800223 ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800224 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
225 ... Validate Authentication After Reassociate True ${src['dp_iface_name']}
226 ... ${src['ip']} ${src['user']} ${src['pass']}
227 ... ${src['container_type']} ${src['container_name']}
ubuntu6b6e7d42020-03-02 12:35:42 -0800228 Wait Until Keyword Succeeds ${timeout} 2s Verify ONU in AAA-Users ${ONOS_SSH_IP}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800229 ... ${ONOS_SSH_PORT} ${onu_port}
230 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
231 ... Validate DHCP and Ping True True ${src['dp_iface_name']}
232 ... ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
233 ... ${src['ip']} ${src['user']} ${src['pass']}
234 ... ${src['container_type']} ${src['container_name']}
235 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']}
236 ... ${dst['pass']} ${dst['container_type']} ${dst['container_name']}
237 Wait Until Keyword Succeeds ${timeout} 2s Run Keyword And Continue On Failure
ubuntu6b6e7d42020-03-02 12:35:42 -0800238 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800239 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
240 Run Keyword and Ignore Error Collect Logs
241 END
242
Suchitra Vemuri05180cb2020-03-26 13:13:27 -0700243Verify openolt adapter restart before subscriber provisioning
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800244 [Documentation] Deploys an device instance and waits for it to authenticate. After
245 ... authentication is successful the rw-core deployment is scaled to 0 instances to
246 ... simulate a POD crash. The test then scales the rw-core back to a single instance
247 ... and configures ONOS for access. The test succeeds if the device is able to
248 ... complete the DHCP sequence.
Hung-Wei Chiud3576762020-03-25 18:06:26 -0700249 [Tags] functional olt-adapter-restart
Andy Baviere187eda2020-04-20 15:00:02 -0700250 [Setup] Start Logging OltAdapterRestart
Suchitra Vemuria0c086f2020-03-29 19:14:13 -0700251 #... AND Clear All Devices Then Create New Device
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800252 [Teardown] Run Keywords Collect Logs
253 ... AND Stop Logging OltAdapterRestart
Hung-Wei Chiud3576762020-03-25 18:06:26 -0700254 # Add OLT and perform sanity test
Suchitra Vemuri59ad2772020-03-26 22:27:27 -0700255 #setup
Suchitra Vemuri91537c82020-03-29 15:03:26 -0700256 Run Keyword If ${has_dataplane} Clean Up Linux
Suchitra Vemuri59ad2772020-03-26 22:27:27 -0700257 #Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800258 Set Global Variable ${of_id}
259
260 FOR ${I} IN RANGE 0 ${num_onus}
261 ${src}= Set Variable ${hosts.src[${I}]}
262 ${dst}= Set Variable ${hosts.dst[${I}]}
263 ${onu_device_id}= Get Device ID From SN ${src['onu']}
264 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
265 ... ${of_id}
266
267 # Bring up the device and verify it authenticates
268 Wait Until Keyword Succeeds ${timeout} 5s Validate Device ENABLED ACTIVE REACHABLE
269 ... ${onu_device_id} onu=True onu_reason=omci-flows-pushed
ubuntu6b6e7d42020-03-02 12:35:42 -0800270 Wait Until Keyword Succeeds ${timeout} 2s Verify Eapol Flows Added For ONU ${ONOS_SSH_IP}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800271 ... ${ONOS_SSH_PORT} ${onu_port}
Andy Bavier84834d42020-02-25 13:49:50 -0700272 ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=.
273 ... /tmp/wpa ${src['dp_iface_name']} log
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800274 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True
275 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
Andy Bavier84834d42020-02-25 13:49:50 -0700276 ... ${src['container_type']} ${src['container_name']} ${wpa_log}
ubuntu6b6e7d42020-03-02 12:35:42 -0800277 Wait Until Keyword Succeeds ${timeout} 2s Verify ONU in AAA-Users ${ONOS_SSH_IP}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800278 ... ${ONOS_SSH_PORT} ${onu_port}
279 END
280 # Scale down the open OLT adapter deployment to 0 PODs and once confirmed, scale it back to 1
Suchitra Vemuri718c0512020-06-10 20:56:02 -0700281 Scale K8s Deployment voltha open-olt 0
282 Wait Until Keyword Succeeds ${timeout} 2s Pod Does Not Exist voltha open-olt
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800283 # Scale up the open OLT adapter deployment and make sure both it and the ofagent deployment are back
Suchitra Vemuri718c0512020-06-10 20:56:02 -0700284 Scale K8s Deployment voltha open-olt 1
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800285 Wait Until Keyword Succeeds ${timeout} 2s
Suchitra Vemuri718c0512020-06-10 20:56:02 -0700286 ... Check Expected Available Deployment Replicas voltha open-olt 1
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800287
288 # Ensure the device is available in ONOS, this represents system connectivity being restored
289 Wait Until Keyword Succeeds ${timeout} 2s Device Is Available In ONOS
ubuntu6b6e7d42020-03-02 12:35:42 -0800290 ... http://karaf:karaf@${ONOS_REST_IP}:${ONOS_REST_PORT} ${of_id}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800291
292 FOR ${I} IN RANGE 0 ${num_onus}
293 # Add subscriber access and verify that DHCP completes to ensure system is still functioning properly
ubuntu6b6e7d42020-03-02 12:35:42 -0800294 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command ${ONOS_SSH_IP}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800295 ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port}
Hardik Windlass21807632020-04-14 16:24:55 +0530296 # Verify subscriber access flows are added for the ONU port
297 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
298 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
299 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800300 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
301 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
302 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
303 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
304 ... ${dst['container_name']}
305 Wait Until Keyword Succeeds ${timeout} 2s Run Keyword And Continue On Failure
ubuntu6b6e7d42020-03-02 12:35:42 -0800306 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800307 END
308
hwchiu14c05102020-03-27 00:44:30 +0000309Verify restart ofagent container after subscriber is provisioned
Gayathri.Selvanb6a2b542020-01-24 07:24:23 +0000310 [Documentation] Restart ofagent container after VOLTHA is operational.
Gayathri.Selvanb6a2b542020-01-24 07:24:23 +0000311 ... Prerequisite : ONUs are authenticated and pingable.
Hardik Windlass7a846662020-03-19 20:42:59 +0530312 [Tags] functional VOL-2409 ofagentRestart
Andy Baviere187eda2020-04-20 15:00:02 -0700313 [Setup] Start Logging ofagentRestart
Andy Bavier4a8450e2020-02-04 08:58:37 -0700314 [Teardown] Run Keywords Collect Logs
Andy Bavierabeba262020-02-07 16:22:16 -0700315 ... AND Stop Logging ofagentRestart
Hardik Windlass8f2aadc2020-03-16 20:16:39 +0530316 ... AND Scale K8s Deployment ${NAMESPACE} voltha-ofagent 1
Suchitra Vemuriceb002a2020-03-25 13:36:21 -0700317 # set timeout value
Gayathri.Selvanb6a2b542020-01-24 07:24:23 +0000318 ${waitforRestart} Set Variable 120s
Andy Bavier4a8450e2020-02-04 08:58:37 -0700319 ${podStatusOutput}= Run kubectl get pods -n ${NAMESPACE}
Gayathri.Selvanb6a2b542020-01-24 07:24:23 +0000320 Log ${podStatusOutput}
Andy Bavier4a8450e2020-02-04 08:58:37 -0700321 ${countBforRestart}= Run kubectl get pods -n ${NAMESPACE} | grep Running | wc -l
Hardik Windlass8f2aadc2020-03-16 20:16:39 +0530322 ${podName} Set Variable ofagent
323 Restart Pod ${NAMESPACE} ${podName}
Gayathri.Selvanb6a2b542020-01-24 07:24:23 +0000324 Sleep 60s
325 Wait Until Keyword Succeeds ${waitforRestart} 2s Validate Pod Status ofagent ${NAMESPACE}
326 ... Running
Hardik Windlass8f2aadc2020-03-16 20:16:39 +0530327 # Performing Sanity Test to make sure subscribers are all AUTH+DHCP and pingable
328 Run Keyword If ${has_dataplane} Clean Up Linux
329 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
Andy Bavier4a8450e2020-02-04 08:58:37 -0700330 ${podStatusOutput}= Run kubectl get pods -n ${NAMESPACE}
Gayathri.Selvanb6a2b542020-01-24 07:24:23 +0000331 Log ${podStatusOutput}
Andy Bavier4a8450e2020-02-04 08:58:37 -0700332 ${countAfterRestart}= Run kubectl get pods -n ${NAMESPACE} | grep Running | wc -l
Gayathri.Selvanb6a2b542020-01-24 07:24:23 +0000333 Should Be Equal As Strings ${countAfterRestart} ${countBforRestart}
Hardik Windlass8f2aadc2020-03-16 20:16:39 +0530334 # Scale Down the Of-Agent Deployment
335 Scale K8s Deployment ${NAMESPACE} voltha-ofagent 0
336 Sleep 30s
337 FOR ${I} IN RANGE 0 ${num_onus}
338 ${src}= Set Variable ${hosts.src[${I}]}
339 ${dst}= Set Variable ${hosts.dst[${I}]}
340 Run Keyword and Ignore Error Collect Logs
341 ${onu_device_id}= Get Device ID From SN ${src['onu']}
342 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
343 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
344 # Verify ONU state in voltha
345 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
346 ... ENABLED ACTIVE REACHABLE
347 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
348 # Check ONU port is Disabled in ONOS
349 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
350 ... Verify ONU Port Is Disabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
351 # Verify EAPOL flows are present for the ONU port
352 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
353 ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
354 # Verify ONU in AAA-Users
355 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
356 ... Verify ONU in AAA-Users ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
357 # Verify DHCP-Allocations
358 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
359 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Hardik Windlass21807632020-04-14 16:24:55 +0530360 # Verify subscriber access flows are added for the ONU port
361 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
362 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
363 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
Hardik Windlass8f2aadc2020-03-16 20:16:39 +0530364 # Verify Ping
365 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Check Ping True
366 ... ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} ${src['ip']}
367 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
368 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
369 Run Keyword and Ignore Error Collect Logs
370 END
371 # Scale Up the Of-Agent Deployment
372 Scale K8s Deployment ${NAMESPACE} voltha-ofagent 1
373 Wait Until Keyword Succeeds ${waitforRestart} 2s Validate Pod Status ofagent ${NAMESPACE}
374 ... Running
375 # Performing Sanity Test to make sure subscribers are all AUTH+DHCP and pingable
376 Run Keyword If ${has_dataplane} Clean Up Linux
377 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
378 Log to console Pod ${podName} restarted and sanity checks passed successfully
Gayathri.Selvanb6a2b542020-01-24 07:24:23 +0000379
Gayathri.Selvanc0b37022020-02-06 05:17:00 +0000380Check ONU adapter crash not forcing authentication again
381 [Documentation] After ONU adapter restart, checks wpa log for 'authentication started'
382 ... message count to make sure auth not started again and validates EAP status and ping.
383 ... Assuming that test1 or sanity was executed where all the ONUs are authenticated/DHCP/pingable
hwchiu14c05102020-03-27 00:44:30 +0000384 [Tags] functional ONUAdaptCrash
Andy Baviere187eda2020-04-20 15:00:02 -0700385 [Setup] Start Logging ONUAdaptCrash
Andy Bavierabeba262020-02-07 16:22:16 -0700386 [Teardown] Run Keywords Collect Logs
387 ... AND Stop Logging ONUAdaptCrash
hwchiu14c05102020-03-27 00:44:30 +0000388 # Wait for adapter to resync
389 Sleep 60s
390 # Restart the onu
Suchitra Vemuri718c0512020-06-10 20:56:02 -0700391 ${podName} Set Variable open-onu
Hung-Wei Chiu2bee4d42020-04-24 11:31:50 -0700392 Wait Until Keyword Succeeds ${timeout} 15s Delete K8s Pods By Label ${NAMESPACE} app ${podName}
hwchiu14c05102020-03-27 00:44:30 +0000393 # Validate ONU Ports
Gayathri.Selvanc0b37022020-02-06 05:17:00 +0000394 FOR ${I} IN RANGE 0 ${num_onus}
395 ${src}= Set Variable ${hosts.src[${I}]}
396 ${dst}= Set Variable ${hosts.dst[${I}]}
397 ${onu_device_id}= Get Device ID From SN ${src['onu']}
398 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
399 ... ${of_id}
hwchiu14c05102020-03-27 00:44:30 +0000400 Run Keyword And Continue On Failure Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
401 ... ${onu_port}
Gayathri.Selvanc0b37022020-02-06 05:17:00 +0000402 ${output}= Run Keyword If ${has_dataplane} Login And Run Command On Remote System
403 ... wpa_cli status | grep SUCCESS ${src['ip']} ${src['user']} ${src['pass']}
404 ... ${src['container_type']} ${src['container_name']}
405 Run Keyword If ${has_dataplane} Should Contain ${output} SUCCESS
Gayathri.Selvanc0b37022020-02-06 05:17:00 +0000406 END
Hung-Wei Chiu2bee4d42020-04-24 11:31:50 -0700407 Wait Until Keyword Succeeds ${timeout} 2s Validate Pods Status By Label ${NAMESPACE}
408 ... app ${podName} Running
hwchiu14c05102020-03-27 00:44:30 +0000409 # Wait for adapter to resync
410 Sleep 60s
Andy Bavier8da0e132020-04-13 10:25:16 -0700411 Run Keyword If ${has_dataplane} Clean Up Linux
hwchiu14c05102020-03-27 00:44:30 +0000412 # Perform all steps in Sanity Test except the subscriber addition
413 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number}
414 Set Global Variable ${of_id}
415 FOR ${I} IN RANGE 0 ${num_onus}
416 ${src}= Set Variable ${hosts.src[${I}]}
417 ${dst}= Set Variable ${hosts.dst[${I}]}
418 Run Keyword and Ignore Error Collect Logs
419 ${onu_device_id}= Get Device ID From SN ${src['onu']}
420 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
421 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
422 # Check ONU port is Enabled in ONOS
423 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
424 ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
425 # Verify EAPOL flows are added for the ONU port
426 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
427 ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
428 # Verify ONU state in voltha
429 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
430 ... ENABLED ACTIVE REACHABLE
431 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
432 # Perform Authentication
433 ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=.
434 ... /tmp/wpa ${src['dp_iface_name']} log
435 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True
436 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
437 ... ${src['container_type']} ${src['container_name']} ${wpa_log}
438 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
439 ... Verify ONU in AAA-Users ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
440 # Verify that no pending flows exist for the ONU port
441 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
442 ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Hardik Windlass21807632020-04-14 16:24:55 +0530443 # Verify subscriber access flows are added for the ONU port
444 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
445 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
446 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
hwchiu14c05102020-03-27 00:44:30 +0000447 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
448 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
449 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
450 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
451 ... ${dst['container_name']}
452 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
453 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
454 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
455 Run Keyword and Ignore Error Collect Logs
456 END
457
Gayathri.Selvanc0b37022020-02-06 05:17:00 +0000458 Run Keyword and Ignore Error Collect Logs
459
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700460Sanity E2E Test for OLT/ONU on POD With Core Fail and Restart
461 [Documentation] Deploys an device instance and waits for it to authenticate. After
462 ... authentication is successful the rw-core deployment is scaled to 0 instances to
463 ... simulate a POD crash. The test then scales the rw-core back to a single instance
464 ... and configures ONOS for access. The test succeeds if the device is able to
465 ... complete the DHCP sequence.
466 [Tags] functional rwcore-restart
Andy Baviere187eda2020-04-20 15:00:02 -0700467 [Setup] Run Keywords Start Logging RwCoreFailAndRestart
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700468 ... AND Clear All Devices Then Create New Device
469 [Teardown] Run Keywords Collect Logs
470 ... AND Stop Logging RwCoreFailAndRestart
Suchitra Vemuri5d3383f2020-04-03 11:02:26 -0700471 #... AND Delete Device and Verify
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700472 Run Keyword and Ignore Error Collect Logs
473 Run Keyword If ${has_dataplane} Clean Up Linux
474 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number}
475 Set Global Variable ${of_id}
Hardik Windlasse05e4712020-04-29 10:40:42 +0530476 ${nni_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
477 ... Get NNI Port in ONOS ${of_id}
478 Set Global Variable ${nni_port}
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700479 FOR ${I} IN RANGE 0 ${num_onus}
480 ${src}= Set Variable ${hosts.src[${I}]}
481 ${dst}= Set Variable ${hosts.dst[${I}]}
482 ${onu_device_id}= Get Device ID From SN ${src['onu']}
483 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
484 ... ${of_id}
485 # Bring up the device and verify it authenticates
486 Wait Until Keyword Succeeds ${timeout} 5s Validate Device ENABLED ACTIVE REACHABLE
487 ... ${onu_device_id} onu=True onu_reason=omci-flows-pushed
488 Wait Until Keyword Succeeds ${timeout} 2s Verify Eapol Flows Added For ONU ${ONOS_SSH_IP}
489 ... ${ONOS_SSH_PORT} ${onu_port}
490 ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=.
491 ... /tmp/wpa ${src['dp_iface_name']} log
492 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True
493 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
494 ... ${src['container_type']} ${src['container_name']} ${wpa_log}
495 Wait Until Keyword Succeeds ${timeout} 2s Verify ONU in AAA-Users ${ONOS_SSH_IP}
496 ... ${ONOS_SSH_PORT} ${onu_port}
497 END
498
499 # Scale down the rw-core deployment to 0 PODs and once confirmed, scale it back to 1
500 Scale K8s Deployment voltha voltha-rw-core 0
501 Wait Until Keyword Succeeds ${timeout} 2s Pod Does Not Exist voltha voltha-rw-core
502 # Ensure the ofagent POD goes "not-ready" as expected
503 Wait Until keyword Succeeds ${timeout} 2s
504 ... Check Expected Available Deployment Replicas voltha voltha-ofagent 0
505 # Scale up the core deployment and make sure both it and the ofagent deployment are back
506 Scale K8s Deployment voltha voltha-rw-core 1
507 Wait Until Keyword Succeeds ${timeout} 2s
508 ... Check Expected Available Deployment Replicas voltha voltha-rw-core 1
509 Wait Until Keyword Succeeds ${timeout} 2s
510 ... Check Expected Available Deployment Replicas voltha voltha-ofagent 1
511 # For some reason scaling down and up the POD behind a service causes the port forward to stop working,
512 # so restart the port forwarding for the API service
513 Restart VOLTHA Port Foward voltha-api-minimal
514 # Ensure that the ofagent pod is up and ready and the device is available in ONOS, this
515 # represents system connectivity being restored
516 Wait Until Keyword Succeeds ${timeout} 2s Device Is Available In ONOS
517 ... http://karaf:karaf@${ONOS_REST_IP}:${ONOS_REST_PORT} ${of_id}
518
519 FOR ${I} IN RANGE 0 ${num_onus}
Andy Bavier52094622020-05-12 15:54:24 -0700520 ${src}= Set Variable ${hosts.src[${I}]}
521 ${dst}= Set Variable ${hosts.dst[${I}]}
522 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
523 ... ${of_id}
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700524 # Add subscriber access and verify that DHCP completes to ensure system is still functioning properly
525 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command ${ONOS_SSH_IP}
526 ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port}
Hardik Windlass21807632020-04-14 16:24:55 +0530527 # Verify subscriber access flows are added for the ONU port
528 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
529 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
530 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700531 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
532 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
533 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
534 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
535 ... ${dst['container_name']}
536 Wait Until Keyword Succeeds ${timeout} 2s Run Keyword And Continue On Failure
537 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
538 END
539
Hema123aff52020-05-26 15:41:47 +0530540Verify ONU Soft Reboot
541 [Documentation] Test soft reboot of the ONU using voltctl command
542 [Tags] VOL-1957 ONUSoftReboot notready
543 [Setup] Start Logging ONUSoftReboot
544 #... AND Setup
Andy Bavier4a8450e2020-02-04 08:58:37 -0700545 [Teardown] Run Keywords Collect Logs
Hema123aff52020-05-26 15:41:47 +0530546 ... AND Stop Logging ONUSoftReboot
547 #... AND Delete Device and Verify
548 # Performing Sanity Test to make sure subscribers are all AUTH+DHCP and pingable
549 #Run Keyword If ${has_dataplane} Clean Up Linux
550 #Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
551 #Reboot the ONU and verify that ping fails
Gayathri.Selvanf68ea4b2020-02-03 07:36:39 +0000552 FOR ${I} IN RANGE 0 ${num_onus}
553 ${src}= Set Variable ${hosts.src[${I}]}
554 ${dst}= Set Variable ${hosts.dst[${I}]}
555 ${onu_device_id}= Get Device ID From SN ${src['onu']}
Suchitra Vemuricd2f64f2020-02-18 18:30:27 -0800556 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
557 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
Hema123aff52020-05-26 15:41:47 +0530558 Reboot Device ${onu_device_id}
559 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
560 ... Wait Until Keyword Succeeds 60s 2s
561 ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
562 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
563 # Remove Subscriber Access (To replicate ATT workflow)
564 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command ${ONOS_SSH_IP}
565 ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port}
Gayathri.Selvanf68ea4b2020-02-03 07:36:39 +0000566 Verify ping is succesful except for given device ${num_onus} ${onu_device_id}
Hema123aff52020-05-26 15:41:47 +0530567 Sleep 40s
Suchitra Vemuricd2f64f2020-02-18 18:30:27 -0800568 # Check ONU port is Enabled in ONOS
569 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
ubuntu6b6e7d42020-03-02 12:35:42 -0800570 ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Suchitra Vemuricd2f64f2020-02-18 18:30:27 -0800571 # Verify EAPOL flows are added for the ONU port
572 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
ubuntu6b6e7d42020-03-02 12:35:42 -0800573 ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Suchitra Vemuricd2f64f2020-02-18 18:30:27 -0800574 # Verify ONU state in voltha
575 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
576 ... ENABLED ACTIVE REACHABLE
577 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
Hema123aff52020-05-26 15:41:47 +0530578 Run Keyword If ${has_dataplane} Clean Up Linux
579 # Perform Authentication
580 ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=.
581 ... /tmp/wpa ${src['dp_iface_name']} log
582 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True
583 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
584 ... ${src['container_type']} ${src['container_name']} ${wpa_log}
585 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
586 ... Verify ONU in AAA-Users ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
587 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
588 ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
589 ... volt-add-subscriber-access ${of_id} ${onu_port}
590 # Verify that no pending flows exist for the ONU port
591 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
592 ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Hardik Windlass21807632020-04-14 16:24:55 +0530593 # Verify subscriber access flows are added for the ONU port
594 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
595 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
596 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
Hema123aff52020-05-26 15:41:47 +0530597 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
598 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
Suchitra Vemuricd2f64f2020-02-18 18:30:27 -0800599 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Hema123aff52020-05-26 15:41:47 +0530600 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
601 ... ${dst['container_name']}
602 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
603 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
604 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
605 Run Keyword And Ignore Error Collect Logs
Gayathri.Selvanf68ea4b2020-02-03 07:36:39 +0000606 END
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800607
608*** Keywords ***
609Setup Suite
610 [Documentation] Set up the test suite
611 Common Test Suite Setup
HungWei Chiu1408fb92020-03-03 19:43:30 -0500612 #power_switch.robot needs it to support different vendor's power switch
Hung-Wei Chiufcc6d8e2020-03-10 12:05:11 -0700613 ${switch_type}= Get Variable Value ${web_power_switch.type}
614 Run Keyword If "${switch_type}"!="" Set Global Variable ${powerswitch_type} ${switch_type}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800615
616Clear All Devices Then Create New Device
617 [Documentation] Remove any devices from VOLTHA and ONOS
618 # Remove all devices from voltha and nos
619 Delete All Devices and Verify
620 # Execute normal test Setup Keyword
621 Setup