blob: e7a9143f68d5b7db5683876d7ff2c3bfad377148 [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
TorstenThieme4e2168e2021-06-22 14:01:47 +000020Suite Teardown Teardown Suite
Gayathri.Selvan283a63c2020-01-23 04:09:18 +000021Library 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
Hardik Windlassc082c422021-03-16 15:44:10 +000034Resource ../../libraries/bbsim.robot
Gayathri.Selvan283a63c2020-01-23 04:09:18 +000035
36*** Variables ***
37${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
44${NAMESPACE} voltha
Matteo Scandoloa4e59522021-08-31 14:56:24 -070045${STACK_NAME} voltha
Hardik Windlass4288c6a2021-09-28 07:22:06 +000046${INFRA_NAMESPACE} default
Gayathri.Selvan283a63c2020-01-23 04:09:18 +000047# For below variable value, using deployment name as using grep for
48# parsing radius pod name, we can also use full radius pod name
49${RESTART_POD_NAME} radius
50${timeout} 60s
51${of_id} 0
52${logical_id} 0
Suchitra Vemuri109feb12020-01-23 16:25:02 -080053${has_dataplane} True
Gayathri.Selvan283a63c2020-01-23 04:09:18 +000054${teardown_device} False
55${scripts} ../../scripts
56
Matteo Scandolo7e519fb2021-08-13 11:35:16 -070057${suppressaddsubscriber} True
58
Andy Bavierabeba262020-02-07 16:22:16 -070059# Per-test logging on failure is turned off by default; set this variable to enable
60${container_log_dir} ${None}
61
Matteo Scandoloda1c64b2021-07-20 10:14:49 -070062# logging flag to enable Collect Logs, can be passed via the command line too
63# example: -v logging:False
64${logging} True
65
Gayathri.Selvan283a63c2020-01-23 04:09:18 +000066*** Test Cases ***
Suchitra Vemuri60be98b2020-02-19 16:41:21 -080067Verify ONU after rebooting physically
68 [Documentation] Test the ONU functionality by physically turning on/off ONU.
69 ... Prerequisite : Subscriber are authenticated/DHCP/pingable state
70 ... Test case runs only on the PODs that are configured with PowerSwitch that
71 ... controls the power off/on ONUs/OLT remotely (simulating a physical reboot)
72 ... VOL-2634
73 [Tags] functional PowerSwitch
Andy Baviere187eda2020-04-20 15:00:02 -070074 [Setup] Start Logging ONUreboot_PowerSwitch
Suchitra Vemuri60be98b2020-02-19 16:41:21 -080075 [Teardown] Run Keywords Collect Logs
Suchitra Vemuria6879aa2020-11-03 11:03:11 -080076 ... AND Delete All Devices and Verify
Girish Gowdraf244d5b2021-09-01 17:16:16 -070077 ... AND Run Keyword If ${logging} Collect Logs
78 ... AND Stop Logging ONUreboot_PowerSwitch
Suchitra Vemuri60be98b2020-02-19 16:41:21 -080079 # Add OLT device
80 setup
81 # Performing Sanity Test to make sure subscribers are all AUTH+DHCP and pingable
82 Run Keyword If ${has_dataplane} Clean Up Linux
83 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
84 Power Switch Connection Suite ${web_power_switch.ip} ${web_power_switch.user} ${web_power_switch.password}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -080085 FOR ${I} IN RANGE 0 ${num_all_onus}
Suchitra Vemuri60be98b2020-02-19 16:41:21 -080086 ${src}= Set Variable ${hosts.src[${I}]}
87 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -080088 ${of_id}= Get ofID From OLT List ${src['olt']}
TorstenThiemedda37652021-11-11 16:22:05 +000089 ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id}
Hardik Windlass0560f802020-05-06 23:06:53 +053090 ${onu_device_id}= Get Device ID From SN ${src['onu']}
Suchitra Vemuri60be98b2020-02-19 16:41:21 -080091 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
Hardik Windlass1ed2eee2021-06-25 09:51:03 +000092 ... Get ONU Port in ONOS ${src['onu']} ${of_id} ${src['uni_id']}
Girish Gowdraa3a05c62022-02-16 13:54:37 -080093 # If the power switch port is not specified, continue
94 Continue For Loop If '${src["power_switch_port"]}' == '${None}'
Suchitra Vemuri60be98b2020-02-19 16:41:21 -080095 Disable Switch Outlet ${src['power_switch_port']}
96 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
97 ... Wait Until Keyword Succeeds 60s 2s
98 ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
99 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Hardik Windlass7c801e62020-05-04 19:33:21 +0530100 # Remove Subscriber Access (To replicate ATT workflow)
TorstenThieme4e2168e2021-06-22 14:01:47 +0000101 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
Hardik Windlass7c801e62020-05-04 19:33:21 +0530102 ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port}
Suchitra Vemuri60be98b2020-02-19 16:41:21 -0800103
104 Enable Switch Outlet ${src['power_switch_port']}
105 # Check ONU port is Enabled in ONOS
106 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
Hardik Windlass39015672021-07-05 05:48:08 +0000107 ... Verify UNI Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']}
Suchitra Vemuri60be98b2020-02-19 16:41:21 -0800108 # Verify EAPOL flows are added for the ONU port
109 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
Matteo Scandolo7e519fb2021-08-13 11:35:16 -0700110 ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} ${onu_port}
Suchitra Vemuri60be98b2020-02-19 16:41:21 -0800111 # Verify ONU state in voltha
Suchitra Vemuricdc32d82020-07-17 12:24:46 -0700112 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 360s 5s Validate Device
Suchitra Vemuri60be98b2020-02-19 16:41:21 -0800113 ... ENABLED ACTIVE REACHABLE
114 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
Hardik Windlass7c801e62020-05-04 19:33:21 +0530115 Run Keyword If ${has_dataplane} Clean Up Linux
116 # Perform Authentication
117 ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=.
118 ... /tmp/wpa ${src['dp_iface_name']} log
119 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True
120 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
121 ... ${src['container_type']} ${src['container_name']} ${wpa_log}
122 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
123 ... Verify ONU in AAA-Users ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
124 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
TorstenThieme4e2168e2021-06-22 14:01:47 +0000125 ... Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
Hardik Windlass7c801e62020-05-04 19:33:21 +0530126 ... volt-add-subscriber-access ${of_id} ${onu_port}
127 # Verify that no pending flows exist for the ONU port
128 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
129 ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Hardik Windlass21807632020-04-14 16:24:55 +0530130 # Verify subscriber access flows are added for the ONU port
131 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
132 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
133 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
Hardik Windlass7c801e62020-05-04 19:33:21 +0530134 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
135 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
Suchitra Vemuri60be98b2020-02-19 16:41:21 -0800136 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Hardik Windlass7c801e62020-05-04 19:33:21 +0530137 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
138 ... ${dst['container_name']}
139 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
140 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Suchitra Vemuri60be98b2020-02-19 16:41:21 -0800141 END
Suchitra Vemurid7096132020-02-21 14:50:47 -0800142 # Deleting OLT after tests completes independently (as this test doesn't not run on each POD)
Suchitra Vemuri0656bc22020-03-21 19:07:49 -0700143 #Run Keyword If ${has_dataplane} Delete Device and Verify
Suchitra Vemuria7dae322020-02-19 22:38:18 -0800144
Suchitra Vemuri784e1ae2020-03-16 18:40:25 -0700145Verify OLT after rebooting physically
146 [Documentation] Test the physical reboot of the OLT
147 ... Prerequisite : Subscriber are authenticated/DHCP/pingable state
148 ... Test performs a physical reboot, performs "reboot" from the OLT CLI
149 ... VOL-1956
150 [Tags] functional PhysicalOLTReboot
Andy Baviere187eda2020-04-20 15:00:02 -0700151 [Setup] Start Logging PhysicalOLTReboot
Suchitra Vemuri784e1ae2020-03-16 18:40:25 -0700152 [Teardown] Run Keywords Collect Logs
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800153 ... AND Delete All Devices and Verify
Girish Gowdraf244d5b2021-09-01 17:16:16 -0700154 ... AND Run Keyword If ${logging} Collect Logs
155 ... AND Stop Logging PhysicalOLTReboot
Suchitra Vemuri784e1ae2020-03-16 18:40:25 -0700156 # Add OLT device
157 setup
158 # Performing Sanity Test to make sure subscribers are all AUTH+DHCP and pingable
159 Run Keyword If ${has_dataplane} Clean Up Linux
160 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
161 # Reboot the OLT from the OLT CLI
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800162 FOR ${I} IN RANGE 0 ${olt_count}
163 ${olt_user}= Get From Dictionary ${list_olts}[${I}] user
164 ${olt_pass}= Get From Dictionary ${list_olts}[${I}] pass
165 ${olt_ssh_ip}= Get From Dictionary ${list_olts}[${I}] sship
166 ${olt_serial_number}= Get From Dictionary ${list_olts}[${I}] sn
167 ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
168 Run Keyword If ${has_dataplane} Login And Run Command On Remote System
Andrea Campanella5ef88142021-02-02 14:34:50 +0100169 ... reboot ${olt_ssh_ip} ${olt_user} ${olt_pass} prompt=#
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800170 END
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800171 FOR ${I} IN RANGE 0 ${num_all_onus}
Suchitra Vemuri784e1ae2020-03-16 18:40:25 -0700172 ${src}= Set Variable ${hosts.src[${I}]}
173 ${dst}= Set Variable ${hosts.dst[${I}]}
174 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
175 ... Wait Until Keyword Succeeds 60s 2s
176 ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
177 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
178 END
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800179 # Wait for the OLTs to come back up
180 FOR ${I} IN RANGE 0 ${olt_count}
181 ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn
182 ${olt_user}= Get From Dictionary ${list_olts}[${I}] user
183 ${olt_pass}= Get From Dictionary ${list_olts}[${I}] pass
184 ${olt_ssh_ip}= Get From Dictionary ${list_olts}[${I}] sship
185 ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
186 Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds 120s 10s
187 ... Check Remote System Reachability True ${olt_ssh_ip}
188 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 360s 5s
189 ... Validate OLT Device ENABLED ACTIVE
190 ... REACHABLE ${olt_serial_number}
191 END
Suchitra Vemuri64db9652020-03-22 21:11:13 -0700192 # Waiting extra time for the ONUs to come up
193 Sleep 60s
Suchitra Vemuri784e1ae2020-03-16 18:40:25 -0700194 Run Keyword If ${has_dataplane} Clean Up Linux
195 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
196 # Deleting OLT after test completes
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800197 #Run Keyword If ${has_dataplane} Delete All Devices and Verify
Suchitra Vemuri784e1ae2020-03-16 18:40:25 -0700198
Suchitra Vemuri05180cb2020-03-26 13:13:27 -0700199Verify restart openolt-adapter container after subscriber provisioning
Suchitra Vemuria7dae322020-02-19 22:38:18 -0800200 [Documentation] Restart openolt-adapter container after VOLTHA is operational.
201 ... Prerequisite : ONUs are authenticated and pingable.
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800202 [Tags] functional VOL-1958 Restart-OpenOlt released
Andy Baviere187eda2020-04-20 15:00:02 -0700203 [Setup] Start Logging Restart-OpenOlt
Suchitra Vemuria7dae322020-02-19 22:38:18 -0800204 [Teardown] Run Keywords Collect Logs
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800205 ... AND Stop Logging Restart-OpenOlt
Suchitra Vemuria7dae322020-02-19 22:38:18 -0800206 # Add OLT device
207 setup
208 # Performing Sanity Test to make sure subscribers are all AUTH+DHCP and pingable
209 Run Keyword If ${has_dataplane} Clean Up Linux
210 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
211 ${waitforRestart} Set Variable 120s
212 ${podStatusOutput}= Run kubectl get pods -n ${NAMESPACE}
213 Log ${podStatusOutput}
214 ${countBforRestart}= Run kubectl get pods -n ${NAMESPACE} | grep Running | wc -l
Andrea Campanella3dcce272021-01-15 16:04:47 +0100215 ${podName} Set Variable ${OLT_ADAPTER_APP_LABEL}
Hardik Windlass79b40ff2020-06-11 22:55:47 +0530216 Wait Until Keyword Succeeds ${timeout} 15s Delete K8s Pods By Label ${NAMESPACE} app ${podName}
Hardik Windlass79b40ff2020-06-11 22:55:47 +0530217 Wait Until Keyword Succeeds ${timeout} 2s Validate Pods Status By Label ${NAMESPACE}
218 ... app ${podName} Running
Suchitra Vemuri312bfe02020-03-16 16:11:34 -0700219 # Wait for 1min after openolt adapter is restarted
Hardik Windlass5e214b22021-02-26 10:37:14 +0000220 # TBD: Need for this Sleep
Suchitra Vemuri312bfe02020-03-16 16:11:34 -0700221 Sleep 60s
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800222 Run Keyword If ${has_dataplane} Clean Up Linux
Matteo Scandolo7e519fb2021-08-13 11:35:16 -0700223 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test ${suppressaddsubscriber}
Suchitra Vemuria7dae322020-02-19 22:38:18 -0800224 ${podStatusOutput}= Run kubectl get pods -n ${NAMESPACE}
225 Log ${podStatusOutput}
226 ${countAfterRestart}= Run kubectl get pods -n ${NAMESPACE} | grep Running | wc -l
227 Should Be Equal As Strings ${countAfterRestart} ${countBforRestart}
228 Log to console Pod ${podName} restarted and sanity checks passed successfully
Suchitra Vemuri60be98b2020-02-19 16:41:21 -0800229
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800230Check OLT/ONU Authentication After Radius Pod Restart
231 [Documentation] After radius restart, triggers reassociation, checks status and
232 ... authentication, validates dhcp and ping. Note : wpa reassociate works only when
233 ... wpa supplicant is running in background hence it is recommended to remove
234 ... teardown from previous test or uncomment 'Teardown None'.
235 ... Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable
236 [Tags] functional RadiusRestart released
Andy Baviere187eda2020-04-20 15:00:02 -0700237 [Setup] Start Logging RadiusRestart
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800238 [Teardown] Run Keywords Collect Logs
239 ... AND Stop Logging RadiusRestart
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800240 ${waitforRestart} Set Variable 120s
Hardik Windlass79b40ff2020-06-11 22:55:47 +0530241 ${podName} Set Variable radius
Matteo Scandolo10acf562021-05-03 15:35:16 -0700242 Wait Until Keyword Succeeds ${timeout} 15s Delete K8s Pods By Label ${INFRA_NAMESPACE} app ${podName}
243 Wait Until Keyword Succeeds ${waitforRestart} 2s Validate Pods Status By Label ${INFRA_NAMESPACE}
Hardik Windlass79b40ff2020-06-11 22:55:47 +0530244 ... app ${podName} Running
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800245 FOR ${I} IN RANGE 0 ${num_all_onus}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800246 ${src}= Set Variable ${hosts.src[${I}]}
247 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800248 ${of_id}= Get ofID From OLT List ${src['olt']}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800249 ${onu_device_id}= Get Device ID From SN ${src['onu']}
250 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000251 ... Get ONU Port in ONOS ${src['onu']} ${of_id} ${src['uni_id']}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800252 Wait Until Keyword Succeeds ${timeout} 2s
Matteo Scandolo7e519fb2021-08-13 11:35:16 -0700253 ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} ${onu_port}
254 ... ${src['c_tag']}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800255 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
256 ... Validate Authentication After Reassociate True ${src['dp_iface_name']}
257 ... ${src['ip']} ${src['user']} ${src['pass']}
258 ... ${src['container_type']} ${src['container_name']}
ubuntu6b6e7d42020-03-02 12:35:42 -0800259 Wait Until Keyword Succeeds ${timeout} 2s Verify ONU in AAA-Users ${ONOS_SSH_IP}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800260 ... ${ONOS_SSH_PORT} ${onu_port}
261 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
262 ... Validate DHCP and Ping True True ${src['dp_iface_name']}
263 ... ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
264 ... ${src['ip']} ${src['user']} ${src['pass']}
265 ... ${src['container_type']} ${src['container_name']}
266 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']}
267 ... ${dst['pass']} ${dst['container_type']} ${dst['container_name']}
268 Wait Until Keyword Succeeds ${timeout} 2s Run Keyword And Continue On Failure
ubuntu6b6e7d42020-03-02 12:35:42 -0800269 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800270 END
271
Suchitra Vemuri05180cb2020-03-26 13:13:27 -0700272Verify openolt adapter restart before subscriber provisioning
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800273 [Documentation] Deploys an device instance and waits for it to authenticate. After
274 ... authentication is successful the rw-core deployment is scaled to 0 instances to
275 ... simulate a POD crash. The test then scales the rw-core back to a single instance
276 ... and configures ONOS for access. The test succeeds if the device is able to
277 ... complete the DHCP sequence.
Hung-Wei Chiud3576762020-03-25 18:06:26 -0700278 [Tags] functional olt-adapter-restart
Andy Baviere187eda2020-04-20 15:00:02 -0700279 [Setup] Start Logging OltAdapterRestart
Suchitra Vemuria0c086f2020-03-29 19:14:13 -0700280 #... AND Clear All Devices Then Create New Device
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800281 [Teardown] Run Keywords Collect Logs
282 ... AND Stop Logging OltAdapterRestart
Hung-Wei Chiud3576762020-03-25 18:06:26 -0700283 # Add OLT and perform sanity test
Suchitra Vemuri59ad2772020-03-26 22:27:27 -0700284 #setup
Suchitra Vemuri91537c82020-03-29 15:03:26 -0700285 Run Keyword If ${has_dataplane} Clean Up Linux
Suchitra Vemuri59ad2772020-03-26 22:27:27 -0700286 #Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800287 #Set Global Variable ${of_id}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800288
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800289 FOR ${I} IN RANGE 0 ${num_all_onus}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800290 ${src}= Set Variable ${hosts.src[${I}]}
291 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800292 ${of_id}= Get ofID From OLT List ${src['olt']}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800293 ${onu_device_id}= Get Device ID From SN ${src['onu']}
294 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000295 ... ${of_id} ${src['uni_id']}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800296
297 # Bring up the device and verify it authenticates
Suchitra Vemuricdc32d82020-07-17 12:24:46 -0700298 Wait Until Keyword Succeeds 360s 5s Validate Device ENABLED ACTIVE REACHABLE
Hardik Windlass8b446492021-06-10 06:25:23 +0000299 ... ${onu_device_id} onu=True onu_reason=omci-flows-pushed by_dev_id=True
ubuntu6b6e7d42020-03-02 12:35:42 -0800300 Wait Until Keyword Succeeds ${timeout} 2s Verify Eapol Flows Added For ONU ${ONOS_SSH_IP}
Matteo Scandolo7e519fb2021-08-13 11:35:16 -0700301 ... ${ONOS_SSH_PORT} ${of_id} ${onu_port} ${src['c_tag']}
Andy Bavier84834d42020-02-25 13:49:50 -0700302 ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=.
303 ... /tmp/wpa ${src['dp_iface_name']} log
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800304 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True
305 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
Andy Bavier84834d42020-02-25 13:49:50 -0700306 ... ${src['container_type']} ${src['container_name']} ${wpa_log}
ubuntu6b6e7d42020-03-02 12:35:42 -0800307 Wait Until Keyword Succeeds ${timeout} 2s Verify ONU in AAA-Users ${ONOS_SSH_IP}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800308 ... ${ONOS_SSH_PORT} ${onu_port}
309 END
310 # Scale down the open OLT adapter deployment to 0 PODs and once confirmed, scale it back to 1
Andrea Campanella3dcce272021-01-15 16:04:47 +0100311 Scale K8s Deployment by Pod Label ${NAMESPACE} app ${OLT_ADAPTER_APP_LABEL} 0
312 Wait Until Keyword Succeeds ${timeout} 2s Pods Do Not Exist By Label ${NAMESPACE} app
313 ... ${OLT_ADAPTER_APP_LABEL}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800314 # Scale up the open OLT adapter deployment and make sure both it and the ofagent deployment are back
Andrea Campanella3dcce272021-01-15 16:04:47 +0100315 Scale K8s Deployment by Pod Label ${NAMESPACE} app ${OLT_ADAPTER_APP_LABEL} 1
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800316 Wait Until Keyword Succeeds ${timeout} 2s
Andrea Campanella3dcce272021-01-15 16:04:47 +0100317 ... Check Expected Available Deployment Replicas By Pod Label ${NAMESPACE} app ${OLT_ADAPTER_APP_LABEL} 1
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800318
319 # Ensure the device is available in ONOS, this represents system connectivity being restored
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800320 FOR ${I} IN RANGE 0 ${olt_count}
321 ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn
322 ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
323 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS
324 ... ${olt_serial_number}
325 Wait Until Keyword Succeeds ${timeout} 2s Device Is Available In ONOS
326 ... http://karaf:karaf@${ONOS_REST_IP}:${ONOS_REST_PORT} ${of_id}
327 END
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800328
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800329 FOR ${I} IN RANGE 0 ${num_all_onus}
330 ${src}= Set Variable ${hosts.src[${I}]}
331 ${dst}= Set Variable ${hosts.dst[${I}]}
332 ${of_id}= Get ofID From OLT List ${src['olt']}
TorstenThiemedda37652021-11-11 16:22:05 +0000333 ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800334 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000335 ... ${of_id} ${src['uni_id']}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800336 # Add subscriber access and verify that DHCP completes to ensure system is still functioning properly
TorstenThieme4e2168e2021-06-22 14:01:47 +0000337 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800338 ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port}
Hardik Windlass21807632020-04-14 16:24:55 +0530339 # Verify subscriber access flows are added for the ONU port
340 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
341 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
342 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800343 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
344 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
345 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
346 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
347 ... ${dst['container_name']}
348 Wait Until Keyword Succeeds ${timeout} 2s Run Keyword And Continue On Failure
ubuntu6b6e7d42020-03-02 12:35:42 -0800349 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800350 END
351
hwchiu14c05102020-03-27 00:44:30 +0000352Verify restart ofagent container after subscriber is provisioned
Gayathri.Selvanb6a2b542020-01-24 07:24:23 +0000353 [Documentation] Restart ofagent container after VOLTHA is operational.
Gayathri.Selvanb6a2b542020-01-24 07:24:23 +0000354 ... Prerequisite : ONUs are authenticated and pingable.
Hardik Windlass7a846662020-03-19 20:42:59 +0530355 [Tags] functional VOL-2409 ofagentRestart
Andy Baviere187eda2020-04-20 15:00:02 -0700356 [Setup] Start Logging ofagentRestart
Andy Bavier4a8450e2020-02-04 08:58:37 -0700357 [Teardown] Run Keywords Collect Logs
Andy Bavierabeba262020-02-07 16:22:16 -0700358 ... AND Stop Logging ofagentRestart
Matteo Scandoloa4e59522021-08-31 14:56:24 -0700359 ... AND Scale K8s Deployment ${NAMESPACE} ${STACK_NAME}-voltha-ofagent 1
Suchitra Vemuriceb002a2020-03-25 13:36:21 -0700360 # set timeout value
Gayathri.Selvanb6a2b542020-01-24 07:24:23 +0000361 ${waitforRestart} Set Variable 120s
Andy Bavier4a8450e2020-02-04 08:58:37 -0700362 ${podStatusOutput}= Run kubectl get pods -n ${NAMESPACE}
Gayathri.Selvanb6a2b542020-01-24 07:24:23 +0000363 Log ${podStatusOutput}
Andy Bavier4a8450e2020-02-04 08:58:37 -0700364 ${countBforRestart}= Run kubectl get pods -n ${NAMESPACE} | grep Running | wc -l
Hardik Windlass8f2aadc2020-03-16 20:16:39 +0530365 ${podName} Set Variable ofagent
Hardik Windlass79b40ff2020-06-11 22:55:47 +0530366 Wait Until Keyword Succeeds ${timeout} 15s Delete K8s Pods By Label ${NAMESPACE} app ${podName}
Hardik Windlass79b40ff2020-06-11 22:55:47 +0530367 Wait Until Keyword Succeeds ${timeout} 2s Validate Pods Status By Label ${NAMESPACE}
368 ... app ${podName} Running
Hardik Windlass8f2aadc2020-03-16 20:16:39 +0530369 # Performing Sanity Test to make sure subscribers are all AUTH+DHCP and pingable
370 Run Keyword If ${has_dataplane} Clean Up Linux
Matteo Scandolo7e519fb2021-08-13 11:35:16 -0700371 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test ${suppressaddsubscriber}
Andy Bavier4a8450e2020-02-04 08:58:37 -0700372 ${podStatusOutput}= Run kubectl get pods -n ${NAMESPACE}
Gayathri.Selvanb6a2b542020-01-24 07:24:23 +0000373 Log ${podStatusOutput}
Andy Bavier4a8450e2020-02-04 08:58:37 -0700374 ${countAfterRestart}= Run kubectl get pods -n ${NAMESPACE} | grep Running | wc -l
Gayathri.Selvanb6a2b542020-01-24 07:24:23 +0000375 Should Be Equal As Strings ${countAfterRestart} ${countBforRestart}
Hardik Windlass8f2aadc2020-03-16 20:16:39 +0530376 # Scale Down the Of-Agent Deployment
Matteo Scandoloa4e59522021-08-31 14:56:24 -0700377 Scale K8s Deployment ${NAMESPACE} ${STACK_NAME}-voltha-ofagent 0
Hardik Windlass8f2aadc2020-03-16 20:16:39 +0530378 Sleep 30s
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800379 FOR ${I} IN RANGE 0 ${num_all_onus}
Hardik Windlass8f2aadc2020-03-16 20:16:39 +0530380 ${src}= Set Variable ${hosts.src[${I}]}
381 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800382 ${of_id}= Get ofID From OLT List ${src['olt']}
TorstenThiemedda37652021-11-11 16:22:05 +0000383 ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id}
Hardik Windlass8f2aadc2020-03-16 20:16:39 +0530384 ${onu_device_id}= Get Device ID From SN ${src['onu']}
385 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000386 ... Get ONU Port in ONOS ${src['onu']} ${of_id} ${src['uni_id']}
Hardik Windlass8f2aadc2020-03-16 20:16:39 +0530387 # Verify ONU state in voltha
Suchitra Vemuricdc32d82020-07-17 12:24:46 -0700388 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 360s 5s Validate Device
Hardik Windlass8f2aadc2020-03-16 20:16:39 +0530389 ... ENABLED ACTIVE REACHABLE
390 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
391 # Check ONU port is Disabled in ONOS
392 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
Hardik Windlass39015672021-07-05 05:48:08 +0000393 ... Verify UNI Port Is Disabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']} ${src['uni_id']}
Hardik Windlass8f2aadc2020-03-16 20:16:39 +0530394 # Verify EAPOL flows are present for the ONU port
395 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
Matteo Scandolo7e519fb2021-08-13 11:35:16 -0700396 ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} ${onu_port}
397 ... ${src['c_tag']}
Hardik Windlass8f2aadc2020-03-16 20:16:39 +0530398 # Verify ONU in AAA-Users
399 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
400 ... Verify ONU in AAA-Users ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
401 # Verify DHCP-Allocations
402 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
403 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Hardik Windlass21807632020-04-14 16:24:55 +0530404 # Verify subscriber access flows are added for the ONU port
405 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
406 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
407 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
Hardik Windlass8f2aadc2020-03-16 20:16:39 +0530408 # Verify Ping
409 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Check Ping True
410 ... ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} ${src['ip']}
411 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Hardik Windlass8f2aadc2020-03-16 20:16:39 +0530412 END
413 # Scale Up the Of-Agent Deployment
Matteo Scandoloa4e59522021-08-31 14:56:24 -0700414 Scale K8s Deployment ${NAMESPACE} ${STACK_NAME}-voltha-ofagent 1
Hardik Windlass8f2aadc2020-03-16 20:16:39 +0530415 Wait Until Keyword Succeeds ${waitforRestart} 2s Validate Pod Status ofagent ${NAMESPACE}
416 ... Running
417 # Performing Sanity Test to make sure subscribers are all AUTH+DHCP and pingable
418 Run Keyword If ${has_dataplane} Clean Up Linux
Matteo Scandolo7e519fb2021-08-13 11:35:16 -0700419 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test ${suppressaddsubscriber}
Hardik Windlass8f2aadc2020-03-16 20:16:39 +0530420 Log to console Pod ${podName} restarted and sanity checks passed successfully
Gayathri.Selvanb6a2b542020-01-24 07:24:23 +0000421
Gayathri.Selvanc0b37022020-02-06 05:17:00 +0000422Check ONU adapter crash not forcing authentication again
423 [Documentation] After ONU adapter restart, checks wpa log for 'authentication started'
424 ... message count to make sure auth not started again and validates EAP status and ping.
425 ... Assuming that test1 or sanity was executed where all the ONUs are authenticated/DHCP/pingable
hwchiu14c05102020-03-27 00:44:30 +0000426 [Tags] functional ONUAdaptCrash
Andy Baviere187eda2020-04-20 15:00:02 -0700427 [Setup] Start Logging ONUAdaptCrash
Andy Bavierabeba262020-02-07 16:22:16 -0700428 [Teardown] Run Keywords Collect Logs
429 ... AND Stop Logging ONUAdaptCrash
hwchiu14c05102020-03-27 00:44:30 +0000430 # Wait for adapter to resync
Hardik Windlass5e214b22021-02-26 10:37:14 +0000431 # TBD: Need for this Sleep
hwchiu14c05102020-03-27 00:44:30 +0000432 Sleep 60s
433 # Restart the onu
Hardik Windlass79b40ff2020-06-11 22:55:47 +0530434 ${podName} Set Variable adapter-open-onu
Hung-Wei Chiu2bee4d42020-04-24 11:31:50 -0700435 Wait Until Keyword Succeeds ${timeout} 15s Delete K8s Pods By Label ${NAMESPACE} app ${podName}
hwchiu14c05102020-03-27 00:44:30 +0000436 # Validate ONU Ports
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800437 FOR ${I} IN RANGE 0 ${num_all_onus}
Gayathri.Selvanc0b37022020-02-06 05:17:00 +0000438 ${src}= Set Variable ${hosts.src[${I}]}
439 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800440 ${of_id}= Get ofID From OLT List ${src['olt']}
Gayathri.Selvanc0b37022020-02-06 05:17:00 +0000441 ${onu_device_id}= Get Device ID From SN ${src['onu']}
442 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000443 ... ${of_id} ${src['uni_id']}
Hardik Windlass39015672021-07-05 05:48:08 +0000444 Run Keyword And Continue On Failure Verify UNI Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000445 ... ${src['onu']} ${src['uni_id']}
Gayathri.Selvanc0b37022020-02-06 05:17:00 +0000446 ${output}= Run Keyword If ${has_dataplane} Login And Run Command On Remote System
447 ... wpa_cli status | grep SUCCESS ${src['ip']} ${src['user']} ${src['pass']}
448 ... ${src['container_type']} ${src['container_name']}
449 Run Keyword If ${has_dataplane} Should Contain ${output} SUCCESS
Gayathri.Selvanc0b37022020-02-06 05:17:00 +0000450 END
Hung-Wei Chiu2bee4d42020-04-24 11:31:50 -0700451 Wait Until Keyword Succeeds ${timeout} 2s Validate Pods Status By Label ${NAMESPACE}
452 ... app ${podName} Running
hwchiu14c05102020-03-27 00:44:30 +0000453 # Wait for adapter to resync
Hardik Windlass5e214b22021-02-26 10:37:14 +0000454 # TBD: Need for this Sleep
hwchiu14c05102020-03-27 00:44:30 +0000455 Sleep 60s
Andy Bavier8da0e132020-04-13 10:25:16 -0700456 Run Keyword If ${has_dataplane} Clean Up Linux
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800457 # Validate OLTs are active in ONOS
458 FOR ${I} IN RANGE 0 ${olt_count}
459 ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn
460 ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
461 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS
462 ... ${olt_serial_number}
463 END
hwchiu14c05102020-03-27 00:44:30 +0000464 # Perform all steps in Sanity Test except the subscriber addition
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800465 FOR ${I} IN RANGE 0 ${num_all_onus}
hwchiu14c05102020-03-27 00:44:30 +0000466 ${src}= Set Variable ${hosts.src[${I}]}
467 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800468 ${of_id}= Get ofID From OLT List ${src['olt']}
TorstenThiemedda37652021-11-11 16:22:05 +0000469 ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id}
hwchiu14c05102020-03-27 00:44:30 +0000470 ${onu_device_id}= Get Device ID From SN ${src['onu']}
471 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000472 ... Get ONU Port in ONOS ${src['onu']} ${of_id} ${src['uni_id']}
hwchiu14c05102020-03-27 00:44:30 +0000473 # Check ONU port is Enabled in ONOS
474 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
Hardik Windlass39015672021-07-05 05:48:08 +0000475 ... Verify UNI Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']} ${src['uni_id']}
hwchiu14c05102020-03-27 00:44:30 +0000476 # Verify EAPOL flows are added for the ONU port
477 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
Matteo Scandolo7e519fb2021-08-13 11:35:16 -0700478 ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} ${onu_port}
479 ... ${src['c_tag']}
hwchiu14c05102020-03-27 00:44:30 +0000480 # Verify ONU state in voltha
Suchitra Vemuricdc32d82020-07-17 12:24:46 -0700481 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 360s 5s Validate Device
hwchiu14c05102020-03-27 00:44:30 +0000482 ... ENABLED ACTIVE REACHABLE
483 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
484 # Perform Authentication
485 ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=.
486 ... /tmp/wpa ${src['dp_iface_name']} log
487 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True
488 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
489 ... ${src['container_type']} ${src['container_name']} ${wpa_log}
490 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
491 ... Verify ONU in AAA-Users ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
492 # Verify that no pending flows exist for the ONU port
493 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
494 ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Hardik Windlass21807632020-04-14 16:24:55 +0530495 # Verify subscriber access flows are added for the ONU port
496 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
497 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
498 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
hwchiu14c05102020-03-27 00:44:30 +0000499 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
500 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
501 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
502 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
503 ... ${dst['container_name']}
504 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
505 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
hwchiu14c05102020-03-27 00:44:30 +0000506 END
507
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700508Sanity E2E Test for OLT/ONU on POD With Core Fail and Restart
509 [Documentation] Deploys an device instance and waits for it to authenticate. After
510 ... authentication is successful the rw-core deployment is scaled to 0 instances to
511 ... simulate a POD crash. The test then scales the rw-core back to a single instance
512 ... and configures ONOS for access. The test succeeds if the device is able to
513 ... complete the DHCP sequence.
514 [Tags] functional rwcore-restart
Andy Baviere187eda2020-04-20 15:00:02 -0700515 [Setup] Run Keywords Start Logging RwCoreFailAndRestart
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700516 ... AND Clear All Devices Then Create New Device
517 [Teardown] Run Keywords Collect Logs
518 ... AND Stop Logging RwCoreFailAndRestart
Suchitra Vemuri5d3383f2020-04-03 11:02:26 -0700519 #... AND Delete Device and Verify
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700520 Run Keyword If ${has_dataplane} Clean Up Linux
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800521 FOR ${I} IN RANGE 0 ${olt_count}
522 ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn
523 ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
524 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS
525 ... ${olt_serial_number}
TorstenThiemedda37652021-11-11 16:22:05 +0000526 ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800527 END
528 FOR ${I} IN RANGE 0 ${num_all_onus}
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700529 ${src}= Set Variable ${hosts.src[${I}]}
530 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800531 ${of_id}= Get ofID From OLT List ${src['olt']}
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700532 ${onu_device_id}= Get Device ID From SN ${src['onu']}
533 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000534 ... ${of_id} ${src['uni_id']}
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700535 # Bring up the device and verify it authenticates
Suchitra Vemuricdc32d82020-07-17 12:24:46 -0700536 Wait Until Keyword Succeeds 360s 5s Validate Device ENABLED ACTIVE REACHABLE
Hardik Windlass8b446492021-06-10 06:25:23 +0000537 ... ${onu_device_id} onu=True onu_reason=omci-flows-pushed by_dev_id=True
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700538 Wait Until Keyword Succeeds ${timeout} 2s Verify Eapol Flows Added For ONU ${ONOS_SSH_IP}
Matteo Scandolo7e519fb2021-08-13 11:35:16 -0700539 ... ${ONOS_SSH_PORT} ${of_id} ${onu_port}
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700540 ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=.
541 ... /tmp/wpa ${src['dp_iface_name']} log
542 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True
543 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
544 ... ${src['container_type']} ${src['container_name']} ${wpa_log}
545 Wait Until Keyword Succeeds ${timeout} 2s Verify ONU in AAA-Users ${ONOS_SSH_IP}
546 ... ${ONOS_SSH_PORT} ${onu_port}
547 END
548
549 # Scale down the rw-core deployment to 0 PODs and once confirmed, scale it back to 1
Matteo Scandoloa4e59522021-08-31 14:56:24 -0700550 Scale K8s Deployment ${NAMESPACE} ${STACK_NAME}-voltha-rw-core 0
551 Wait Until Keyword Succeeds ${timeout} 2s Pod Does Not Exist ${NAMESPACE} ${STACK_NAME}-voltha-rw-core
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700552 # Ensure the ofagent POD goes "not-ready" as expected
553 Wait Until keyword Succeeds ${timeout} 2s
Matteo Scandoloa4e59522021-08-31 14:56:24 -0700554 ... Check Expected Available Deployment Replicas ${NAMESPACE} ${STACK_NAME}-voltha-ofagent 0
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700555 # Scale up the core deployment and make sure both it and the ofagent deployment are back
Matteo Scandoloa4e59522021-08-31 14:56:24 -0700556 Scale K8s Deployment ${NAMESPACE} ${STACK_NAME}-voltha-rw-core 1
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700557 Wait Until Keyword Succeeds ${timeout} 2s
Matteo Scandoloa4e59522021-08-31 14:56:24 -0700558 ... Check Expected Available Deployment Replicas ${NAMESPACE} ${STACK_NAME}-voltha-rw-core 1
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700559 Wait Until Keyword Succeeds ${timeout} 2s
Matteo Scandoloa4e59522021-08-31 14:56:24 -0700560 ... Check Expected Available Deployment Replicas ${NAMESPACE} ${STACK_NAME}-voltha-ofagent 1
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700561 # For some reason scaling down and up the POD behind a service causes the port forward to stop working,
562 # so restart the port forwarding for the API service
David Bainbridge07321ff2020-06-12 13:55:42 -0700563 Restart VOLTHA Port Forward voltha-api
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700564 # Ensure that the ofagent pod is up and ready and the device is available in ONOS, this
565 # represents system connectivity being restored
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800566 FOR ${I} IN RANGE 0 ${olt_count}
567 ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn
568 ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
569 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS
570 ... ${olt_serial_number}
Girish Gowdrae4de3b32021-03-23 22:20:00 -0700571 Wait Until Keyword Succeeds 120s 2s Device Is Available In ONOS
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800572 ... http://karaf:karaf@${ONOS_REST_IP}:${ONOS_REST_PORT} ${of_id}
573 END
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700574
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800575 FOR ${I} IN RANGE 0 ${num_all_onus}
Andy Bavier52094622020-05-12 15:54:24 -0700576 ${src}= Set Variable ${hosts.src[${I}]}
577 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800578 ${of_id}= Get ofID From OLT List ${src['olt']}
TorstenThiemedda37652021-11-11 16:22:05 +0000579 ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id}
Andy Bavier52094622020-05-12 15:54:24 -0700580 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000581 ... ${of_id} ${src['uni_id']}
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700582 # Add subscriber access and verify that DHCP completes to ensure system is still functioning properly
TorstenThieme4e2168e2021-06-22 14:01:47 +0000583 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700584 ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port}
Hardik Windlass21807632020-04-14 16:24:55 +0530585 # Verify subscriber access flows are added for the ONU port
586 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
587 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
588 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
Suchitra Vemuriebf65322020-04-03 10:09:41 -0700589 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
590 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
591 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
592 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
593 ... ${dst['container_name']}
594 Wait Until Keyword Succeeds ${timeout} 2s Run Keyword And Continue On Failure
595 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
596 END
597
Suchitra Vemuri19e942f2020-08-11 18:04:28 -0700598Verify OLT Soft Reboot
599 [Documentation] Test soft reboot of the OLT using voltctl command
600 [Tags] VOL-2745 OLTSoftReboot functional
601 [Setup] Start Logging OLTSoftReboot
602 [Teardown] Run Keywords Collect Logs
603 ... AND Stop Logging OLTSoftReboot
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800604 FOR ${I} IN RANGE 0 ${olt_count}
605 ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn
606 ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
607 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 360s 5s
608 ... Validate OLT Device ENABLED ACTIVE
609 ... REACHABLE ${olt_serial_number}
610 # Reboot the OLT using "voltctl device reboot" command
611 Reboot Device ${olt_device_id}
Andrea Campanella9d8d3a52021-06-17 12:18:23 +0200612 # Wait for the OLT to actually go down
613 Wait Until Keyword Succeeds 360s 5s Validate OLT Device ENABLED UNKNOWN UNREACHABLE
614 ... ${olt_serial_number}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800615 END
Suchitra Vemuri19e942f2020-08-11 18:04:28 -0700616 #Verify that ping fails
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800617 FOR ${I} IN RANGE 0 ${num_all_onus}
Suchitra Vemuri19e942f2020-08-11 18:04:28 -0700618 ${src}= Set Variable ${hosts.src[${I}]}
619 ${dst}= Set Variable ${hosts.dst[${I}]}
620 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
621 ... Wait Until Keyword Succeeds 60s 2s
622 ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
623 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
624 END
Suchitra Vemuri19e942f2020-08-11 18:04:28 -0700625 # Check OLT states
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800626 FOR ${I} IN RANGE 0 ${olt_count}
627 ${olt_serial_number}= Get From Dictionary ${list_olts}[${I}] sn
628 ${olt_ssh_ip}= Get From Dictionary ${list_olts}[${I}] sship
629 ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
630 # Wait for the OLT to come back up
631 Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds 120s 10s
632 ... Check Remote System Reachability True ${olt_ssh_ip}
633 # Check OLT states
634 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 360s 5s
635 ... Validate OLT Device ENABLED ACTIVE
636 ... REACHABLE ${olt_serial_number}
637 END
638 # Waiting extra time for the ONUs to come up
639 Sleep 60s
Suchitra Vemuri19e942f2020-08-11 18:04:28 -0700640 #Check after reboot that ONUs are active, authenticated/DHCP/pingable
641 Run Keyword If ${has_dataplane} Clean Up Linux
642 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
643
Suchitra Vemuri10e737e2020-08-14 14:59:10 -0700644Verify restart ofagent container before subscriber is provisioned
645 [Documentation] Restart ofagent container before subscriber is provisioned.
646 [Tags] functional VOL-2962 ofagentRestart2
647 [Setup] Start Logging ofagentRestart2
648 [Teardown] Run Keywords Collect Logs
Suchitra Vemuri8130be82020-09-15 16:47:58 -0700649 ... AND Stop Logging ofagentRestart2
Matteo Scandolo01fefb22021-12-14 14:33:56 -0800650 ... AND Scale K8s Deployment ${NAMESPACE} ${STACK_NAME}-voltha-ofagent 1
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800651 Delete All Devices And Verify
Suchitra Vemuri10e737e2020-08-14 14:59:10 -0700652 setup
653 Run Keyword If ${has_dataplane} Clean Up Linux
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800654 FOR ${I} IN RANGE 0 ${olt_count}
655 ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn
656 ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
657 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS
658 ... ${olt_serial_number}
659 Wait Until Keyword Succeeds ${timeout} 2s Device Is Available In ONOS
660 ... http://karaf:karaf@${ONOS_REST_IP}:${ONOS_REST_PORT} ${of_id}
661 END
662 FOR ${I} IN RANGE 0 ${num_all_onus}
Suchitra Vemuri10e737e2020-08-14 14:59:10 -0700663 ${src}= Set Variable ${hosts.src[${I}]}
664 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800665 ${of_id}= Get ofID From OLT List ${src['olt']}
Suchitra Vemuri10e737e2020-08-14 14:59:10 -0700666 ${onu_device_id}= Get Device ID From SN ${src['onu']}
667 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000668 ... ${of_id} ${src['uni_id']}
Suchitra Vemuri10e737e2020-08-14 14:59:10 -0700669 # Bring up the device and verify it authenticates
670 Wait Until Keyword Succeeds ${timeout} 5s Validate Device ENABLED ACTIVE REACHABLE
Hardik Windlass8b446492021-06-10 06:25:23 +0000671 ... ${onu_device_id} onu=True onu_reason=omci-flows-pushed by_dev_id=True
Suchitra Vemuri10e737e2020-08-14 14:59:10 -0700672 Wait Until Keyword Succeeds ${timeout} 2s Verify Eapol Flows Added For ONU ${ONOS_SSH_IP}
Matteo Scandolo7e519fb2021-08-13 11:35:16 -0700673 ... ${ONOS_SSH_PORT} ${of_id} ${onu_port}
Suchitra Vemuri10e737e2020-08-14 14:59:10 -0700674 ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=.
675 ... /tmp/wpa ${src['dp_iface_name']} log
676 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True
677 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
678 ... ${src['container_type']} ${src['container_name']} ${wpa_log}
679 Wait Until Keyword Succeeds ${timeout} 2s Verify ONU in AAA-Users ${ONOS_SSH_IP}
680 ... ${ONOS_SSH_PORT} ${onu_port}
681 END
682 # Restart POD ofagent
683 ${waitforRestart} Set Variable 120s
684 ${podStatusOutput}= Run kubectl get pods -n ${NAMESPACE}
685 Log ${podStatusOutput}
686 ${countBforRestart}= Run kubectl get pods -n ${NAMESPACE} | grep Running | wc -l
687 ${podName} Set Variable ofagent
TorstenThieme37165402021-09-03 11:39:40 +0000688 Restart Pod By Label ${NAMESPACE} app ${podName}
Suchitra Vemuri10e737e2020-08-14 14:59:10 -0700689 Wait Until Keyword Succeeds ${waitforRestart} 2s Validate Pod Status ofagent ${NAMESPACE}
690 ... Running
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800691 FOR ${I} IN RANGE 0 ${num_all_onus}
Suchitra Vemuri10e737e2020-08-14 14:59:10 -0700692 # Add subscriber access and verify that DHCP completes to ensure system is still functioning properly
TorstenThieme4e2168e2021-06-22 14:01:47 +0000693 #Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
Suchitra Vemuri10e737e2020-08-14 14:59:10 -0700694 #... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port}
695 ${src}= Set Variable ${hosts.src[${I}]}
696 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800697 ${of_id}= Get ofID From OLT List ${src['olt']}
Suchitra Vemuri10e737e2020-08-14 14:59:10 -0700698 ${onu_device_id}= Get Device ID From SN ${src['onu']}
699 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000700 ... Get ONU Port in ONOS ${src['onu']} ${of_id} ${src['uni_id']}
Suchitra Vemuri10e737e2020-08-14 14:59:10 -0700701 # Add subscriber access and verify that DHCP completes to ensure system is still functioning properly
TorstenThieme4e2168e2021-06-22 14:01:47 +0000702 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
Suchitra Vemuri10e737e2020-08-14 14:59:10 -0700703 ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port}
704 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
705 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
706 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
707 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
708 ... ${dst['container_name']}
709 # Verify DHCP-Allocations
710 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
711 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Suchitra Vemuri10e737e2020-08-14 14:59:10 -0700712 END
713
Hardik Windlassc082c422021-03-16 15:44:10 +0000714Verify OLT Grpc Disconnection
715 [Documentation] Restarts OLT Grpc Server and verifies everything works as before without any system disruption.
716 [Tags] functional VOL-3904 restartGrpcServer bbsim
717 [Setup] Start Logging restartGrpcServer
718 [Teardown] Run Keywords Collect Logs
719 ... AND Stop Logging restartGrpcServer
720 Delete All Devices And Verify
721 Setup
722 Run Keyword If ${has_dataplane} Clean Up Linux
723 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
724 FOR ${J} IN RANGE 0 ${num_olts}
725 ${bbsim_rel}= Catenate SEPARATOR= bbsim ${J}
726 ${bbsim_pod}= Get Pod Name By Label ${NAMESPACE} release ${bbsim_rel}
727 Restart Grpc Server ${NAMESPACE} ${bbsim_pod} 5
728 END
729 # Repeat sanity test without subscriber changes
Matteo Scandolo7e519fb2021-08-13 11:35:16 -0700730 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test ${suppressaddsubscriber}
Elia Battiston00e586b2022-02-15 10:15:50 +0100731 # Without this sleep there are cases in which the request to disable the device
732 # comes before the Grpc server is restarted and is never executed.
733 # Checking BBSIM's connection status before proceeding would be better, but it is not currently exposed
734 Sleep 15s
Hardik Windlassc082c422021-03-16 15:44:10 +0000735 # Additional Verification
736 Wait Until Keyword Succeeds ${timeout} 2s Delete All Devices and Verify
737 Setup
738 Run Keyword If ${has_dataplane} Clean Up Linux
739 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
740
Hema123aff52020-05-26 15:41:47 +0530741Verify ONU Soft Reboot
742 [Documentation] Test soft reboot of the ONU using voltctl command
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800743 [Tags] VOL-1957 ONUSoftReboot functional notready
Hema123aff52020-05-26 15:41:47 +0530744 [Setup] Start Logging ONUSoftReboot
745 #... AND Setup
Andy Bavier4a8450e2020-02-04 08:58:37 -0700746 [Teardown] Run Keywords Collect Logs
Hema123aff52020-05-26 15:41:47 +0530747 ... AND Stop Logging ONUSoftReboot
748 #... AND Delete Device and Verify
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800749 FOR ${I} IN RANGE 0 ${num_all_onus}
Gayathri.Selvanf68ea4b2020-02-03 07:36:39 +0000750 ${src}= Set Variable ${hosts.src[${I}]}
751 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800752 ${of_id}= Get ofID From OLT List ${src['olt']}
TorstenThiemedda37652021-11-11 16:22:05 +0000753 ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id}
Gayathri.Selvanf68ea4b2020-02-03 07:36:39 +0000754 ${onu_device_id}= Get Device ID From SN ${src['onu']}
Suchitra Vemuricd2f64f2020-02-18 18:30:27 -0800755 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
756 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
Hema123aff52020-05-26 15:41:47 +0530757 Reboot Device ${onu_device_id}
758 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
759 ... Wait Until Keyword Succeeds 60s 2s
760 ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
761 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
762 # Remove Subscriber Access (To replicate ATT workflow)
TorstenThieme4e2168e2021-06-22 14:01:47 +0000763 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
Hema123aff52020-05-26 15:41:47 +0530764 ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port}
Hardik Windlassb75cf1b2021-01-18 06:59:09 +0000765 Verify ping is successful except for given device ${num_all_onus} ${src['onu']}
Hema123aff52020-05-26 15:41:47 +0530766 Sleep 40s
Suchitra Vemuricd2f64f2020-02-18 18:30:27 -0800767 # Check ONU port is Enabled in ONOS
768 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
Hardik Windlass39015672021-07-05 05:48:08 +0000769 ... Verify UNI Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']}
Suchitra Vemuricd2f64f2020-02-18 18:30:27 -0800770 # Verify EAPOL flows are added for the ONU port
771 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
Matteo Scandolo7e519fb2021-08-13 11:35:16 -0700772 ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} ${onu_port}
Suchitra Vemuricd2f64f2020-02-18 18:30:27 -0800773 # Verify ONU state in voltha
Suchitra Vemuricdc32d82020-07-17 12:24:46 -0700774 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 360s 5s Validate Device
Suchitra Vemuricd2f64f2020-02-18 18:30:27 -0800775 ... ENABLED ACTIVE REACHABLE
776 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
Hema123aff52020-05-26 15:41:47 +0530777 Run Keyword If ${has_dataplane} Clean Up Linux
778 # Perform Authentication
779 ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=.
780 ... /tmp/wpa ${src['dp_iface_name']} log
781 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True
782 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
783 ... ${src['container_type']} ${src['container_name']} ${wpa_log}
784 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
785 ... Verify ONU in AAA-Users ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
786 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2
TorstenThieme4e2168e2021-06-22 14:01:47 +0000787 ... Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
Hema123aff52020-05-26 15:41:47 +0530788 ... volt-add-subscriber-access ${of_id} ${onu_port}
789 # Verify that no pending flows exist for the ONU port
790 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
791 ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Hardik Windlass21807632020-04-14 16:24:55 +0530792 # Verify subscriber access flows are added for the ONU port
793 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
794 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
795 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
Hema123aff52020-05-26 15:41:47 +0530796 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
797 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
Suchitra Vemuricd2f64f2020-02-18 18:30:27 -0800798 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Hema123aff52020-05-26 15:41:47 +0530799 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
800 ... ${dst['container_name']}
801 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
802 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Gayathri.Selvanf68ea4b2020-02-03 07:36:39 +0000803 END
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800804
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800805
806*** Keywords ***
807Setup Suite
808 [Documentation] Set up the test suite
809 Common Test Suite Setup
HungWei Chiu1408fb92020-03-03 19:43:30 -0500810 #power_switch.robot needs it to support different vendor's power switch
Hung-Wei Chiufcc6d8e2020-03-10 12:05:11 -0700811 ${switch_type}= Get Variable Value ${web_power_switch.type}
812 Run Keyword If "${switch_type}"!="" Set Global Variable ${powerswitch_type} ${switch_type}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800813
814Clear All Devices Then Create New Device
815 [Documentation] Remove any devices from VOLTHA and ONOS
816 # Remove all devices from voltha and nos
817 Delete All Devices and Verify
818 # Execute normal test Setup Keyword
819 Setup
TorstenThieme4e2168e2021-06-22 14:01:47 +0000820
821Teardown Suite
822 [Documentation] Clean up ONOS SSH connections
823 Close All ONOS SSH Connections
Hardik Windlass81375222021-12-02 10:48:01 +0000824 Run Keyword If ${has_dataplane} Clean Up All Nodes