Gayathri.Selvan | 283a63c | 2020-01-23 04:09:18 +0000 | [diff] [blame] | 1 | # 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.Selvan | 283a63c | 2020-01-23 04:09:18 +0000 | [diff] [blame] | 14 | |
| 15 | *** Settings *** |
HungWei Chiu | 87edb1f | 2020-01-28 00:10:58 +0000 | [diff] [blame] | 16 | Documentation Test various failure scenarios |
HungWei Chiu | 1408fb9 | 2020-03-03 19:43:30 -0500 | [diff] [blame] | 17 | Suite Setup Setup Suite |
Gayathri.Selvan | 283a63c | 2020-01-23 04:09:18 +0000 | [diff] [blame] | 18 | Test Setup Setup |
| 19 | Test Teardown Teardown |
| 20 | #Suite Teardown Teardown Suite |
| 21 | Library Collections |
| 22 | Library String |
| 23 | Library OperatingSystem |
| 24 | Library XML |
| 25 | Library RequestsLibrary |
| 26 | Library ../../libraries/DependencyLibrary.py |
| 27 | Resource ../../libraries/onos.robot |
| 28 | Resource ../../libraries/voltctl.robot |
| 29 | Resource ../../libraries/voltha.robot |
| 30 | Resource ../../libraries/utils.robot |
| 31 | Resource ../../libraries/k8s.robot |
| 32 | Resource ../../variables/variables.robot |
HungWei Chiu | 87edb1f | 2020-01-28 00:10:58 +0000 | [diff] [blame] | 33 | Resource ../../libraries/power_switch.robot |
Gayathri.Selvan | 283a63c | 2020-01-23 04:09:18 +0000 | [diff] [blame] | 34 | |
| 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 Vemuri | ca1c5d3 | 2020-04-09 18:45:29 -0700 | [diff] [blame] | 44 | ${DEFAULTSPACE} default |
Gayathri.Selvan | 283a63c | 2020-01-23 04:09:18 +0000 | [diff] [blame] | 45 | # For below variable value, using deployment name as using grep for |
| 46 | # parsing radius pod name, we can also use full radius pod name |
| 47 | ${RESTART_POD_NAME} radius |
| 48 | ${timeout} 60s |
| 49 | ${of_id} 0 |
| 50 | ${logical_id} 0 |
Suchitra Vemuri | 109feb1 | 2020-01-23 16:25:02 -0800 | [diff] [blame] | 51 | ${has_dataplane} True |
Gayathri.Selvan | 283a63c | 2020-01-23 04:09:18 +0000 | [diff] [blame] | 52 | ${teardown_device} False |
| 53 | ${scripts} ../../scripts |
| 54 | |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 55 | # Per-test logging on failure is turned off by default; set this variable to enable |
| 56 | ${container_log_dir} ${None} |
| 57 | |
Gayathri.Selvan | 283a63c | 2020-01-23 04:09:18 +0000 | [diff] [blame] | 58 | *** Test Cases *** |
Suchitra Vemuri | 60be98b | 2020-02-19 16:41:21 -0800 | [diff] [blame] | 59 | Verify 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 Bavier | e187eda | 2020-04-20 15:00:02 -0700 | [diff] [blame] | 66 | [Setup] Start Logging ONUreboot_PowerSwitch |
Suchitra Vemuri | 60be98b | 2020-02-19 16:41:21 -0800 | [diff] [blame] | 67 | [Teardown] Run Keywords Collect Logs |
Suchitra Vemuri | 9a6dd6d | 2020-02-28 17:46:26 -0800 | [diff] [blame] | 68 | ... AND Stop Logging ONUreboot_PowerSwitch |
Suchitra Vemuri | 0656bc2 | 2020-03-21 19:07:49 -0700 | [diff] [blame] | 69 | ... AND Delete Device and Verify |
Suchitra Vemuri | 60be98b | 2020-02-19 16:41:21 -0800 | [diff] [blame] | 70 | # 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 Windlass | 0560f80 | 2020-05-06 23:06:53 +0530 | [diff] [blame] | 79 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
Suchitra Vemuri | 60be98b | 2020-02-19 16:41:21 -0800 | [diff] [blame] | 80 | ${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 Windlass | 7c801e6 | 2020-05-04 19:33:21 +0530 | [diff] [blame] | 87 | # 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 Vemuri | 60be98b | 2020-02-19 16:41:21 -0800 | [diff] [blame] | 90 | |
| 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 |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 94 | ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
Suchitra Vemuri | 60be98b | 2020-02-19 16:41:21 -0800 | [diff] [blame] | 95 | # Verify EAPOL flows are added for the ONU port |
| 96 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 97 | ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
Suchitra Vemuri | 60be98b | 2020-02-19 16:41:21 -0800 | [diff] [blame] | 98 | # 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 Windlass | 7c801e6 | 2020-05-04 19:33:21 +0530 | [diff] [blame] | 102 | 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 Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 117 | # 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 Windlass | 7c801e6 | 2020-05-04 19:33:21 +0530 | [diff] [blame] | 121 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True |
| 122 | ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
Suchitra Vemuri | 60be98b | 2020-02-19 16:41:21 -0800 | [diff] [blame] | 123 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
Hardik Windlass | 7c801e6 | 2020-05-04 19:33:21 +0530 | [diff] [blame] | 124 | ... ${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 Vemuri | 60be98b | 2020-02-19 16:41:21 -0800 | [diff] [blame] | 129 | Run Keyword And Ignore Error Collect Logs |
| 130 | END |
Suchitra Vemuri | d709613 | 2020-02-21 14:50:47 -0800 | [diff] [blame] | 131 | # Deleting OLT after tests completes independently (as this test doesn't not run on each POD) |
Suchitra Vemuri | 0656bc2 | 2020-03-21 19:07:49 -0700 | [diff] [blame] | 132 | #Run Keyword If ${has_dataplane} Delete Device and Verify |
Suchitra Vemuri | a7dae32 | 2020-02-19 22:38:18 -0800 | [diff] [blame] | 133 | |
Suchitra Vemuri | 784e1ae | 2020-03-16 18:40:25 -0700 | [diff] [blame] | 134 | Verify 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 Bavier | e187eda | 2020-04-20 15:00:02 -0700 | [diff] [blame] | 140 | [Setup] Start Logging PhysicalOLTReboot |
Suchitra Vemuri | 784e1ae | 2020-03-16 18:40:25 -0700 | [diff] [blame] | 141 | [Teardown] Run Keywords Collect Logs |
| 142 | ... AND Stop Logging PhysicalOLTReboot |
Suchitra Vemuri | b3a92e4 | 2020-03-21 16:49:57 -0700 | [diff] [blame] | 143 | ... AND Delete Device and Verify |
Suchitra Vemuri | 784e1ae | 2020-03-16 18:40:25 -0700 | [diff] [blame] | 144 | # 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 Bavier | 8da0e13 | 2020-04-13 10:25:16 -0700 | [diff] [blame] | 162 | Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds 120s 10s |
| 163 | ... Check Remote System Reachability True ${olt_ip} |
Suchitra Vemuri | 64db965 | 2020-03-22 21:11:13 -0700 | [diff] [blame] | 164 | # Waiting extra time for the ONUs to come up |
| 165 | Sleep 60s |
Suchitra Vemuri | 784e1ae | 2020-03-16 18:40:25 -0700 | [diff] [blame] | 166 | 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 Vemuri | b3a92e4 | 2020-03-21 16:49:57 -0700 | [diff] [blame] | 170 | #Run Keyword If ${has_dataplane} Delete Device and Verify |
Suchitra Vemuri | 784e1ae | 2020-03-16 18:40:25 -0700 | [diff] [blame] | 171 | |
Suchitra Vemuri | 05180cb | 2020-03-26 13:13:27 -0700 | [diff] [blame] | 172 | Verify restart openolt-adapter container after subscriber provisioning |
Suchitra Vemuri | a7dae32 | 2020-02-19 22:38:18 -0800 | [diff] [blame] | 173 | [Documentation] Restart openolt-adapter container after VOLTHA is operational. |
| 174 | ... Prerequisite : ONUs are authenticated and pingable. |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 175 | [Tags] functional VOL-1958 Restart-OpenOlt released |
Andy Bavier | e187eda | 2020-04-20 15:00:02 -0700 | [diff] [blame] | 176 | [Setup] Start Logging Restart-OpenOlt |
Suchitra Vemuri | a7dae32 | 2020-02-19 22:38:18 -0800 | [diff] [blame] | 177 | [Teardown] Run Keywords Collect Logs |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 178 | ... AND Stop Logging Restart-OpenOlt |
Suchitra Vemuri | a7dae32 | 2020-02-19 22:38:18 -0800 | [diff] [blame] | 179 | # 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 |
| 188 | ${podName} Set Variable adapter-open-olt |
| 189 | Restart Pod ${NAMESPACE} ${podName} |
| 190 | Wait Until Keyword Succeeds ${waitforRestart} 2s Validate Pod Status ${podName} ${NAMESPACE} |
| 191 | ... Running |
Suchitra Vemuri | 312bfe0 | 2020-03-16 16:11:34 -0700 | [diff] [blame] | 192 | # Wait for 1min after openolt adapter is restarted |
| 193 | Sleep 60s |
Suchitra Vemuri | a7dae32 | 2020-02-19 22:38:18 -0800 | [diff] [blame] | 194 | Repeat Sanity Test |
Suchitra Vemuri | d709613 | 2020-02-21 14:50:47 -0800 | [diff] [blame] | 195 | Run Keyword and Ignore Error Collect Logs |
Suchitra Vemuri | a7dae32 | 2020-02-19 22:38:18 -0800 | [diff] [blame] | 196 | ${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 Vemuri | 60be98b | 2020-02-19 16:41:21 -0800 | [diff] [blame] | 201 | |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 202 | Check 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 Bavier | e187eda | 2020-04-20 15:00:02 -0700 | [diff] [blame] | 209 | [Setup] Start Logging RadiusRestart |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 210 | [Teardown] Run Keywords Collect Logs |
| 211 | ... AND Stop Logging RadiusRestart |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 212 | ${waitforRestart} Set Variable 120s |
Suchitra Vemuri | ca1c5d3 | 2020-04-09 18:45:29 -0700 | [diff] [blame] | 213 | 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 Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 216 | 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 |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 223 | ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 224 | 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']} |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 228 | Wait Until Keyword Succeeds ${timeout} 2s Verify ONU in AAA-Users ${ONOS_SSH_IP} |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 229 | ... ${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 |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 238 | ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 239 | 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 Vemuri | 05180cb | 2020-03-26 13:13:27 -0700 | [diff] [blame] | 243 | Verify openolt adapter restart before subscriber provisioning |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 244 | [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 Chiu | d357676 | 2020-03-25 18:06:26 -0700 | [diff] [blame] | 249 | [Tags] functional olt-adapter-restart |
Andy Bavier | e187eda | 2020-04-20 15:00:02 -0700 | [diff] [blame] | 250 | [Setup] Start Logging OltAdapterRestart |
Suchitra Vemuri | a0c086f | 2020-03-29 19:14:13 -0700 | [diff] [blame] | 251 | #... AND Clear All Devices Then Create New Device |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 252 | [Teardown] Run Keywords Collect Logs |
| 253 | ... AND Stop Logging OltAdapterRestart |
Hung-Wei Chiu | d357676 | 2020-03-25 18:06:26 -0700 | [diff] [blame] | 254 | # Add OLT and perform sanity test |
Suchitra Vemuri | 59ad277 | 2020-03-26 22:27:27 -0700 | [diff] [blame] | 255 | #setup |
Suchitra Vemuri | 91537c8 | 2020-03-29 15:03:26 -0700 | [diff] [blame] | 256 | Run Keyword If ${has_dataplane} Clean Up Linux |
Suchitra Vemuri | 59ad277 | 2020-03-26 22:27:27 -0700 | [diff] [blame] | 257 | #Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 258 | 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 |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 270 | Wait Until Keyword Succeeds ${timeout} 2s Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 271 | ... ${ONOS_SSH_PORT} ${onu_port} |
Andy Bavier | 84834d4 | 2020-02-25 13:49:50 -0700 | [diff] [blame] | 272 | ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=. |
| 273 | ... /tmp/wpa ${src['dp_iface_name']} log |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 274 | 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 Bavier | 84834d4 | 2020-02-25 13:49:50 -0700 | [diff] [blame] | 276 | ... ${src['container_type']} ${src['container_name']} ${wpa_log} |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 277 | Wait Until Keyword Succeeds ${timeout} 2s Verify ONU in AAA-Users ${ONOS_SSH_IP} |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 278 | ... ${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 |
| 281 | Scale K8s Deployment voltha adapter-open-olt 0 |
| 282 | Wait Until Keyword Succeeds ${timeout} 2s Pod Does Not Exist voltha adapter-open-olt |
| 283 | # Scale up the open OLT adapter deployment and make sure both it and the ofagent deployment are back |
| 284 | Scale K8s Deployment voltha adapter-open-olt 1 |
| 285 | Wait Until Keyword Succeeds ${timeout} 2s |
| 286 | ... Check Expected Available Deployment Replicas voltha adapter-open-olt 1 |
| 287 | |
| 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 |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 290 | ... http://karaf:karaf@${ONOS_REST_IP}:${ONOS_REST_PORT} ${of_id} |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 291 | |
| 292 | FOR ${I} IN RANGE 0 ${num_onus} |
| 293 | # Add subscriber access and verify that DHCP completes to ensure system is still functioning properly |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 294 | Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command ${ONOS_SSH_IP} |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 295 | ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port} |
Hardik Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 296 | # 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 Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 300 | 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 |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 306 | ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 307 | END |
| 308 | |
hwchiu | 14c0510 | 2020-03-27 00:44:30 +0000 | [diff] [blame] | 309 | Verify restart ofagent container after subscriber is provisioned |
Gayathri.Selvan | b6a2b54 | 2020-01-24 07:24:23 +0000 | [diff] [blame] | 310 | [Documentation] Restart ofagent container after VOLTHA is operational. |
Gayathri.Selvan | b6a2b54 | 2020-01-24 07:24:23 +0000 | [diff] [blame] | 311 | ... Prerequisite : ONUs are authenticated and pingable. |
Hardik Windlass | 7a84666 | 2020-03-19 20:42:59 +0530 | [diff] [blame] | 312 | [Tags] functional VOL-2409 ofagentRestart |
Andy Bavier | e187eda | 2020-04-20 15:00:02 -0700 | [diff] [blame] | 313 | [Setup] Start Logging ofagentRestart |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 314 | [Teardown] Run Keywords Collect Logs |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 315 | ... AND Stop Logging ofagentRestart |
Hardik Windlass | 8f2aadc | 2020-03-16 20:16:39 +0530 | [diff] [blame] | 316 | ... AND Scale K8s Deployment ${NAMESPACE} voltha-ofagent 1 |
Suchitra Vemuri | ceb002a | 2020-03-25 13:36:21 -0700 | [diff] [blame] | 317 | # set timeout value |
Gayathri.Selvan | b6a2b54 | 2020-01-24 07:24:23 +0000 | [diff] [blame] | 318 | ${waitforRestart} Set Variable 120s |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 319 | ${podStatusOutput}= Run kubectl get pods -n ${NAMESPACE} |
Gayathri.Selvan | b6a2b54 | 2020-01-24 07:24:23 +0000 | [diff] [blame] | 320 | Log ${podStatusOutput} |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 321 | ${countBforRestart}= Run kubectl get pods -n ${NAMESPACE} | grep Running | wc -l |
Hardik Windlass | 8f2aadc | 2020-03-16 20:16:39 +0530 | [diff] [blame] | 322 | ${podName} Set Variable ofagent |
| 323 | Restart Pod ${NAMESPACE} ${podName} |
Gayathri.Selvan | b6a2b54 | 2020-01-24 07:24:23 +0000 | [diff] [blame] | 324 | Sleep 60s |
| 325 | Wait Until Keyword Succeeds ${waitforRestart} 2s Validate Pod Status ofagent ${NAMESPACE} |
| 326 | ... Running |
Hardik Windlass | 8f2aadc | 2020-03-16 20:16:39 +0530 | [diff] [blame] | 327 | # 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 Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 330 | ${podStatusOutput}= Run kubectl get pods -n ${NAMESPACE} |
Gayathri.Selvan | b6a2b54 | 2020-01-24 07:24:23 +0000 | [diff] [blame] | 331 | Log ${podStatusOutput} |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 332 | ${countAfterRestart}= Run kubectl get pods -n ${NAMESPACE} | grep Running | wc -l |
Gayathri.Selvan | b6a2b54 | 2020-01-24 07:24:23 +0000 | [diff] [blame] | 333 | Should Be Equal As Strings ${countAfterRestart} ${countBforRestart} |
Hardik Windlass | 8f2aadc | 2020-03-16 20:16:39 +0530 | [diff] [blame] | 334 | # 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 Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 360 | # 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 Windlass | 8f2aadc | 2020-03-16 20:16:39 +0530 | [diff] [blame] | 364 | # 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.Selvan | b6a2b54 | 2020-01-24 07:24:23 +0000 | [diff] [blame] | 379 | |
Gayathri.Selvan | c0b3702 | 2020-02-06 05:17:00 +0000 | [diff] [blame] | 380 | Check 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 |
hwchiu | 14c0510 | 2020-03-27 00:44:30 +0000 | [diff] [blame] | 384 | [Tags] functional ONUAdaptCrash |
Andy Bavier | e187eda | 2020-04-20 15:00:02 -0700 | [diff] [blame] | 385 | [Setup] Start Logging ONUAdaptCrash |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 386 | [Teardown] Run Keywords Collect Logs |
| 387 | ... AND Stop Logging ONUAdaptCrash |
hwchiu | 14c0510 | 2020-03-27 00:44:30 +0000 | [diff] [blame] | 388 | # Wait for adapter to resync |
| 389 | Sleep 60s |
| 390 | # Restart the onu |
| 391 | ${podName} Set Variable adapter-open-onu |
Hung-Wei Chiu | 2bee4d4 | 2020-04-24 11:31:50 -0700 | [diff] [blame] | 392 | Wait Until Keyword Succeeds ${timeout} 15s Delete K8s Pods By Label ${NAMESPACE} app ${podName} |
hwchiu | 14c0510 | 2020-03-27 00:44:30 +0000 | [diff] [blame] | 393 | # Validate ONU Ports |
Gayathri.Selvan | c0b3702 | 2020-02-06 05:17:00 +0000 | [diff] [blame] | 394 | 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} |
hwchiu | 14c0510 | 2020-03-27 00:44:30 +0000 | [diff] [blame] | 400 | Run Keyword And Continue On Failure Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
| 401 | ... ${onu_port} |
Gayathri.Selvan | c0b3702 | 2020-02-06 05:17:00 +0000 | [diff] [blame] | 402 | ${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.Selvan | c0b3702 | 2020-02-06 05:17:00 +0000 | [diff] [blame] | 406 | END |
Hung-Wei Chiu | 2bee4d4 | 2020-04-24 11:31:50 -0700 | [diff] [blame] | 407 | Wait Until Keyword Succeeds ${timeout} 2s Validate Pods Status By Label ${NAMESPACE} |
| 408 | ... app ${podName} Running |
hwchiu | 14c0510 | 2020-03-27 00:44:30 +0000 | [diff] [blame] | 409 | # Wait for adapter to resync |
| 410 | Sleep 60s |
Andy Bavier | 8da0e13 | 2020-04-13 10:25:16 -0700 | [diff] [blame] | 411 | Run Keyword If ${has_dataplane} Clean Up Linux |
hwchiu | 14c0510 | 2020-03-27 00:44:30 +0000 | [diff] [blame] | 412 | # 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 Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 443 | # 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']} |
hwchiu | 14c0510 | 2020-03-27 00:44:30 +0000 | [diff] [blame] | 447 | 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.Selvan | c0b3702 | 2020-02-06 05:17:00 +0000 | [diff] [blame] | 458 | Run Keyword and Ignore Error Collect Logs |
| 459 | |
Suchitra Vemuri | ebf6532 | 2020-04-03 10:09:41 -0700 | [diff] [blame] | 460 | Sanity 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 Bavier | e187eda | 2020-04-20 15:00:02 -0700 | [diff] [blame] | 467 | [Setup] Run Keywords Start Logging RwCoreFailAndRestart |
Suchitra Vemuri | ebf6532 | 2020-04-03 10:09:41 -0700 | [diff] [blame] | 468 | ... AND Clear All Devices Then Create New Device |
| 469 | [Teardown] Run Keywords Collect Logs |
| 470 | ... AND Stop Logging RwCoreFailAndRestart |
Suchitra Vemuri | 5d3383f | 2020-04-03 11:02:26 -0700 | [diff] [blame] | 471 | #... AND Delete Device and Verify |
Suchitra Vemuri | ebf6532 | 2020-04-03 10:09:41 -0700 | [diff] [blame] | 472 | 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 Windlass | e05e471 | 2020-04-29 10:40:42 +0530 | [diff] [blame] | 476 | ${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 Vemuri | ebf6532 | 2020-04-03 10:09:41 -0700 | [diff] [blame] | 479 | 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 Bavier | 5209462 | 2020-05-12 15:54:24 -0700 | [diff] [blame] | 520 | ${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 Vemuri | ebf6532 | 2020-04-03 10:09:41 -0700 | [diff] [blame] | 524 | # 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 Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 527 | # 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 Vemuri | ebf6532 | 2020-04-03 10:09:41 -0700 | [diff] [blame] | 531 | 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 | |
Gayathri.Selvan | f68ea4b | 2020-02-03 07:36:39 +0000 | [diff] [blame] | 540 | ONU Reboot |
| 541 | [Documentation] Reboot ONU and verify that ONU comes up properly |
| 542 | [Tags] VOL-1957 RebootONU notready |
Andy Bavier | e187eda | 2020-04-20 15:00:02 -0700 | [diff] [blame] | 543 | [Setup] Start Logging RebootONU |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 544 | [Teardown] Run Keywords Collect Logs |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 545 | ... AND Stop Logging RebootONU |
Gayathri.Selvan | f68ea4b | 2020-02-03 07:36:39 +0000 | [diff] [blame] | 546 | FOR ${I} IN RANGE 0 ${num_onus} |
| 547 | ${src}= Set Variable ${hosts.src[${I}]} |
| 548 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 549 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
Suchitra Vemuri | cd2f64f | 2020-02-18 18:30:27 -0800 | [diff] [blame] | 550 | ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 551 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
Gayathri.Selvan | f68ea4b | 2020-02-03 07:36:39 +0000 | [diff] [blame] | 552 | Reboot ONU ${onu_device_id} ${src} ${dst} |
| 553 | Verify ping is succesful except for given device ${num_onus} ${onu_device_id} |
Suchitra Vemuri | cd2f64f | 2020-02-18 18:30:27 -0800 | [diff] [blame] | 554 | # Check ONU port is Enabled in ONOS |
| 555 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 556 | ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
Suchitra Vemuri | cd2f64f | 2020-02-18 18:30:27 -0800 | [diff] [blame] | 557 | # Verify EAPOL flows are added for the ONU port |
| 558 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 559 | ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
Suchitra Vemuri | cd2f64f | 2020-02-18 18:30:27 -0800 | [diff] [blame] | 560 | # Verify ONU state in voltha |
| 561 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device |
| 562 | ... ENABLED ACTIVE REACHABLE |
| 563 | ... ${src['onu']} onu=True onu_reason=omci-flows-pushed |
Hardik Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 564 | # Verify subscriber access flows are added for the ONU port |
| 565 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 566 | ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 567 | ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']} |
Suchitra Vemuri | cd2f64f | 2020-02-18 18:30:27 -0800 | [diff] [blame] | 568 | # Verify pings are successful after reboot on the current ONU |
| 569 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 570 | ... Wait Until Keyword Succeeds 60s 2s |
| 571 | ... Check Ping True ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 572 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
Gayathri.Selvan | f68ea4b | 2020-02-03 07:36:39 +0000 | [diff] [blame] | 573 | END |
Suchitra Vemuri | cd2f64f | 2020-02-18 18:30:27 -0800 | [diff] [blame] | 574 | #Run Keyword If ${has_dataplane} Clean Up Linux |
| 575 | #Check after reboot that ONUs are active, authenticated/DHCP/pingable |
| 576 | #Perform Sanity Test |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 577 | |
| 578 | *** Keywords *** |
| 579 | Setup Suite |
| 580 | [Documentation] Set up the test suite |
| 581 | Common Test Suite Setup |
HungWei Chiu | 1408fb9 | 2020-03-03 19:43:30 -0500 | [diff] [blame] | 582 | #power_switch.robot needs it to support different vendor's power switch |
Hung-Wei Chiu | fcc6d8e | 2020-03-10 12:05:11 -0700 | [diff] [blame] | 583 | ${switch_type}= Get Variable Value ${web_power_switch.type} |
| 584 | Run Keyword If "${switch_type}"!="" Set Global Variable ${powerswitch_type} ${switch_type} |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 585 | |
| 586 | Clear All Devices Then Create New Device |
| 587 | [Documentation] Remove any devices from VOLTHA and ONOS |
| 588 | # Remove all devices from voltha and nos |
| 589 | Delete All Devices and Verify |
| 590 | # Execute normal test Setup Keyword |
| 591 | Setup |