Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [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. |
| 14 | # FIXME Can we use the same test against BBSim and Hardware? |
| 15 | |
| 16 | *** Settings *** |
| 17 | Documentation Test various end-to-end scenarios |
| 18 | Suite Setup Setup Suite |
| 19 | Test Setup Setup |
| 20 | Test Teardown Teardown |
| 21 | Suite Teardown Teardown Suite |
| 22 | Library Collections |
| 23 | Library String |
| 24 | Library OperatingSystem |
| 25 | Library XML |
| 26 | Library RequestsLibrary |
| 27 | Library ../../libraries/DependencyLibrary.py |
| 28 | Resource ../../libraries/onos.robot |
| 29 | Resource ../../libraries/voltctl.robot |
| 30 | Resource ../../libraries/voltha.robot |
| 31 | Resource ../../libraries/utils.robot |
| 32 | Resource ../../libraries/k8s.robot |
| 33 | Resource ../../variables/variables.robot |
Andrea Campanella | 15619c7 | 2020-04-30 09:48:04 +0200 | [diff] [blame] | 34 | Resource ../../libraries/power_switch.robot |
Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [diff] [blame] | 35 | |
| 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 |
| 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 |
| 51 | ${has_dataplane} True |
| 52 | ${teardown_device} False |
| 53 | ${scripts} ../../scripts |
| 54 | |
| 55 | # Per-test logging on failure is turned off by default; set this variable to enable |
| 56 | ${container_log_dir} ${None} |
| 57 | |
Hardik Windlass | 4353133 | 2021-05-19 07:07:03 +0000 | [diff] [blame] | 58 | # logging flag to enable Collect Logs, can be passed via the command line too |
| 59 | # example: -v logging:False |
| 60 | ${logging} True |
| 61 | |
Hardik Windlass | 4ed5450 | 2021-05-14 07:34:15 +0000 | [diff] [blame] | 62 | # Flag specific to Soak Jobs |
| 63 | ${SOAK_TEST} False |
| 64 | |
Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [diff] [blame] | 65 | *** Test Cases *** |
| 66 | Verify ONU after Rebooting Physically for DT |
| 67 | [Documentation] Test the ONU functionality by physically turning on/off ONU. |
| 68 | ... Assuming that all the ONUs are DHCP/pingable (i.e. assuming sanityDt test was executed) |
| 69 | ... Test case runs only on the PODs that are configured with PowerSwitch that |
| 70 | ... controls the power off/on ONUs/OLT remotely (simulating a physical reboot) |
| 71 | [Tags] functionalDt PowerSwitchOnuRebootDt VOL-2819 PowerSwitch |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 72 | [Setup] Start Logging RebootOnu_PowerSwitch_Dt |
Hardik Windlass | 4353133 | 2021-05-19 07:07:03 +0000 | [diff] [blame] | 73 | [Teardown] Run Keywords Run Keyword If ${logging} Collect Logs |
Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [diff] [blame] | 74 | ... AND Stop Logging RebootOnu_PowerSwitch_Dt |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 75 | ... AND Delete All Devices and Verify |
Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [diff] [blame] | 76 | # Add OLT device |
| 77 | Setup |
| 78 | # Performing Sanity Test to make sure subscribers are all DHCP and pingable |
| 79 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 80 | Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test DT |
| 81 | Power Switch Connection Suite ${web_power_switch.ip} ${web_power_switch.user} ${web_power_switch.password} |
Hardik Windlass | 2eb4718 | 2020-05-19 20:24:12 +0530 | [diff] [blame] | 82 | Run Keyword If ${has_dataplane} Clean Up Linux |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 83 | FOR ${I} IN RANGE 0 ${num_all_onus} |
Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [diff] [blame] | 84 | ${src}= Set Variable ${hosts.src[${I}]} |
| 85 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 86 | ${of_id}= Get ofID From OLT List ${src['olt']} |
Hardik Windlass | 0560f80 | 2020-05-06 23:06:53 +0530 | [diff] [blame] | 87 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [diff] [blame] | 88 | ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 89 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
Hardik Windlass | 7c801e6 | 2020-05-04 19:33:21 +0530 | [diff] [blame] | 90 | # Disable Power Switch |
Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [diff] [blame] | 91 | Disable Switch Outlet ${src['power_switch_port']} |
| 92 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 93 | ... Wait Until Keyword Succeeds 60s 2s |
| 94 | ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 95 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
Hardik Windlass | 7c801e6 | 2020-05-04 19:33:21 +0530 | [diff] [blame] | 96 | # Remove Subscriber Access (To replicate DT workflow) |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 97 | Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} |
Hardik Windlass | 7c801e6 | 2020-05-04 19:33:21 +0530 | [diff] [blame] | 98 | ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port} |
| 99 | # Delete ONU Device (To replicate DT workflow) |
| 100 | Delete Device ${onu_device_id} |
| 101 | Sleep 5s |
| 102 | # Enable Power Switch |
Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [diff] [blame] | 103 | Enable Switch Outlet ${src['power_switch_port']} |
Hardik Windlass | 40ccffb | 2020-05-11 14:12:07 +0530 | [diff] [blame] | 104 | # Waiting extra time for the ONU to come up |
| 105 | Sleep 60s |
Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [diff] [blame] | 106 | # Check ONU port is Enabled in ONOS |
| 107 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s |
Hardik Windlass | 3901567 | 2021-07-05 05:48:08 +0000 | [diff] [blame] | 108 | ... Verify UNI Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']} |
Hardik Windlass | 7c801e6 | 2020-05-04 19:33:21 +0530 | [diff] [blame] | 109 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2 |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 110 | ... Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
Hardik Windlass | 7c801e6 | 2020-05-04 19:33:21 +0530 | [diff] [blame] | 111 | ... volt-add-subscriber-access ${of_id} ${onu_port} |
Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [diff] [blame] | 112 | # Verify ONU state in voltha |
Suchitra Vemuri | cdc32d8 | 2020-07-17 12:24:46 -0700 | [diff] [blame] | 113 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 360s 5s Validate Device |
Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [diff] [blame] | 114 | ... ENABLED ACTIVE REACHABLE |
Hardik Windlass | 7c801e6 | 2020-05-04 19:33:21 +0530 | [diff] [blame] | 115 | ... ${src['onu']} onu=True onu_reason=omci-flows-pushed |
Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [diff] [blame] | 116 | # Verify subscriber access flows are added for the ONU port |
| 117 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 118 | ... Verify Subscriber Access Flows Added For ONU DT ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 119 | ... ${onu_port} ${nni_port} ${src['s_tag']} |
Hardik Windlass | 2eb4718 | 2020-05-19 20:24:12 +0530 | [diff] [blame] | 120 | #Run Keyword If ${has_dataplane} Clean Up Linux |
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']} |
Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [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']} |
Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [diff] [blame] | 126 | END |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 127 | # Verify flows for all OLTs |
| 128 | Run Keyword Wait Until Keyword Succeeds ${timeout} 5s Validate All OLT Flows |
Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [diff] [blame] | 129 | |
| 130 | Verify OLT after Rebooting Physically for DT |
| 131 | [Documentation] Test the physical reboot of the OLT |
| 132 | ... Assuming that all the ONUs are DHCP/pingable (i.e. assuming sanityDt test was executed) |
| 133 | ... Test performs a physical reboot, performs "reboot" from the OLT CLI |
| 134 | [Tags] functionalDt PhysicalOltRebootDt VOL-2817 |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 135 | [Setup] Start Logging RebootOlt_Physical_Dt |
Hardik Windlass | 4353133 | 2021-05-19 07:07:03 +0000 | [diff] [blame] | 136 | [Teardown] Run Keywords Run Keyword If ${logging} Collect Logs |
Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [diff] [blame] | 137 | ... AND Stop Logging RebootOlt_Physical_Dt |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 138 | ... AND Delete All Devices and Verify |
Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [diff] [blame] | 139 | # Add OLT device |
| 140 | Setup |
| 141 | # Performing Sanity Test to make sure subscribers are all DHCP and pingable |
| 142 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 143 | Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test DT |
| 144 | # Reboot the OLT from the OLT CLI |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 145 | FOR ${I} IN RANGE 0 ${olt_count} |
| 146 | ${olt_user}= Get From Dictionary ${list_olts}[${I}] user |
| 147 | ${olt_pass}= Get From Dictionary ${list_olts}[${I}] pass |
| 148 | ${olt_ssh_ip}= Get From Dictionary ${list_olts}[${I}] sship |
| 149 | ${olt_serial_number}= Get From Dictionary ${list_olts}[${I}] sn |
| 150 | ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number} |
| 151 | Run Keyword If ${has_dataplane} Login And Run Command On Remote System |
Andrea Campanella | 5ef8814 | 2021-02-02 14:34:50 +0100 | [diff] [blame] | 152 | ... reboot ${olt_ssh_ip} ${olt_user} ${olt_pass} prompt=# |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 153 | END |
| 154 | FOR ${I} IN RANGE 0 ${num_all_onus} |
Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [diff] [blame] | 155 | ${src}= Set Variable ${hosts.src[${I}]} |
| 156 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 157 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 158 | ... Wait Until Keyword Succeeds 60s 2s |
| 159 | ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 160 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 161 | END |
| 162 | # Wait for the OLT to come back up |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 163 | FOR ${I} IN RANGE 0 ${olt_count} |
| 164 | ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn |
| 165 | ${olt_user}= Get From Dictionary ${list_olts}[${I}] user |
| 166 | ${olt_pass}= Get From Dictionary ${list_olts}[${I}] pass |
| 167 | ${olt_ssh_ip}= Get From Dictionary ${list_olts}[${I}] sship |
| 168 | ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number} |
| 169 | Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds 120s 10s |
| 170 | ... Check Remote System Reachability True ${olt_ssh_ip} |
| 171 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 360s 5s |
| 172 | ... Validate OLT Device ENABLED ACTIVE |
| 173 | ... REACHABLE ${olt_serial_number} |
| 174 | END |
Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [diff] [blame] | 175 | # Waiting extra time for the ONUs to come up |
| 176 | Sleep 60s |
Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [diff] [blame] | 177 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 178 | Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test DT |
| 179 | |
TorstenThieme | ed3332f | 2021-02-02 10:30:48 +0000 | [diff] [blame] | 180 | Verify restart openonu-adapter container after subscriber provisioning for DT |
| 181 | [Documentation] Restart openonu-adapter container after VOLTHA is operational. |
| 182 | ... Prerequisite : ONUs are authenticated and pingable. |
Hardik Windlass | 4353133 | 2021-05-19 07:07:03 +0000 | [diff] [blame] | 183 | [Tags] functionalDt Restart-OpenOnu-Dt soak |
TorstenThieme | ed3332f | 2021-02-02 10:30:48 +0000 | [diff] [blame] | 184 | [Setup] Start Logging Restart-OpenOnu-Dt |
Hardik Windlass | 4353133 | 2021-05-19 07:07:03 +0000 | [diff] [blame] | 185 | [Teardown] Run Keywords Run Keyword If ${logging} Collect Logs |
TorstenThieme | ed3332f | 2021-02-02 10:30:48 +0000 | [diff] [blame] | 186 | ... AND Stop Logging Restart-OpenOnu-Dt |
TorstenThieme | ed3332f | 2021-02-02 10:30:48 +0000 | [diff] [blame] | 187 | # Add OLT device |
Hardik Windlass | 3280f2d | 2021-05-20 07:38:31 +0000 | [diff] [blame] | 188 | Run Keyword If '${SOAK_TEST}'=='False' Setup |
TorstenThieme | ed3332f | 2021-02-02 10:30:48 +0000 | [diff] [blame] | 189 | # Performing Sanity Test to make sure subscribers are all DHCP and pingable |
| 190 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 191 | Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test DT |
| 192 | ${podStatusOutput}= Run kubectl get pods -n ${NAMESPACE} |
| 193 | Log ${podStatusOutput} |
| 194 | ${countBeforeRestart}= Run kubectl get pods -n ${NAMESPACE} | grep Running | wc -l |
| 195 | ${podName} Set Variable adapter-open-onu |
| 196 | Wait Until Keyword Succeeds ${timeout} 15s Delete K8s Pods By Label ${NAMESPACE} app ${podName} |
TorstenThieme | ed3332f | 2021-02-02 10:30:48 +0000 | [diff] [blame] | 197 | Wait Until Keyword Succeeds ${timeout} 2s Validate Pods Status By Label ${NAMESPACE} |
| 198 | ... app ${podName} Running |
| 199 | # Wait for 1 min after openonu adapter is restarted |
| 200 | Sleep 60s |
| 201 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 202 | Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test DT |
TorstenThieme | ed3332f | 2021-02-02 10:30:48 +0000 | [diff] [blame] | 203 | ${podStatusOutput}= Run kubectl get pods -n ${NAMESPACE} |
| 204 | Log ${podStatusOutput} |
| 205 | ${countAfterRestart}= Run kubectl get pods -n ${NAMESPACE} | grep Running | wc -l |
| 206 | Should Be Equal As Strings ${countAfterRestart} ${countBeforeRestart} |
| 207 | Log to console Pod ${podName} restarted and sanity checks passed successfully |
Hardik Windlass | 3280f2d | 2021-05-20 07:38:31 +0000 | [diff] [blame] | 208 | Run Keyword If '${SOAK_TEST}'=='False' Delete All Devices and Verify |
TorstenThieme | ed3332f | 2021-02-02 10:30:48 +0000 | [diff] [blame] | 209 | |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 210 | Verify restart openolt-adapter container after subscriber provisioning for DT |
| 211 | [Documentation] Restart openolt-adapter container after VOLTHA is operational. |
| 212 | ... Prerequisite : ONUs are authenticated and pingable. |
Hardik Windlass | 4353133 | 2021-05-19 07:07:03 +0000 | [diff] [blame] | 213 | [Tags] functionalDt Restart-OpenOlt-Dt soak |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 214 | [Setup] Start Logging Restart-OpenOlt-Dt |
Hardik Windlass | 4353133 | 2021-05-19 07:07:03 +0000 | [diff] [blame] | 215 | [Teardown] Run Keywords Run Keyword If ${logging} Collect Logs |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 216 | ... AND Stop Logging Restart-OpenOlt-Dt |
| 217 | # Add OLT device |
Hardik Windlass | 3280f2d | 2021-05-20 07:38:31 +0000 | [diff] [blame] | 218 | Run Keyword If '${SOAK_TEST}'=='False' setup |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 219 | # Performing Sanity Test to make sure subscribers are all DHCP and pingable |
| 220 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 221 | Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test DT |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 222 | ${podStatusOutput}= Run kubectl get pods -n ${NAMESPACE} |
| 223 | Log ${podStatusOutput} |
| 224 | ${countBforRestart}= Run kubectl get pods -n ${NAMESPACE} | grep Running | wc -l |
Andrea Campanella | 3dcce27 | 2021-01-15 16:04:47 +0100 | [diff] [blame] | 225 | ${podName} Set Variable ${OLT_ADAPTER_APP_LABEL} |
Hardik Windlass | 79b40ff | 2020-06-11 22:55:47 +0530 | [diff] [blame] | 226 | Wait Until Keyword Succeeds ${timeout} 15s Delete K8s Pods By Label ${NAMESPACE} app ${podName} |
Hardik Windlass | 79b40ff | 2020-06-11 22:55:47 +0530 | [diff] [blame] | 227 | Wait Until Keyword Succeeds ${timeout} 2s Validate Pods Status By Label ${NAMESPACE} |
| 228 | ... app ${podName} Running |
TorstenThieme | ed3332f | 2021-02-02 10:30:48 +0000 | [diff] [blame] | 229 | # Wait for 1 min after openolt adapter is restarted |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 230 | Sleep 60s |
| 231 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 232 | Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test DT |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 233 | ${podStatusOutput}= Run kubectl get pods -n ${NAMESPACE} |
| 234 | Log ${podStatusOutput} |
| 235 | ${countAfterRestart}= Run kubectl get pods -n ${NAMESPACE} | grep Running | wc -l |
| 236 | Should Be Equal As Strings ${countAfterRestart} ${countBforRestart} |
| 237 | Log to console Pod ${podName} restarted and sanity checks passed successfully |
| 238 | |
| 239 | Verify openolt adapter restart before subscriber provisioning for DT |
| 240 | [Documentation] Deploys an device instance and waits for it to authenticate. After |
| 241 | ... authentication is successful the rw-core deployment is scaled to 0 instances to |
| 242 | ... simulate a POD crash. The test then scales the rw-core back to a single instance |
| 243 | ... and configures ONOS for access. The test succeeds if the device is able to |
| 244 | ... complete the DHCP sequence. |
Hardik Windlass | 4ed5450 | 2021-05-14 07:34:15 +0000 | [diff] [blame] | 245 | [Tags] functionalDt olt-adapter-restart-Dt soak |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 246 | [Setup] Start Logging OltAdapterRestart-Dt |
| 247 | #... AND Clear All Devices Then Create New Device |
Hardik Windlass | 4353133 | 2021-05-19 07:07:03 +0000 | [diff] [blame] | 248 | [Teardown] Run Keywords Run Keyword If ${logging} Collect Logs |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 249 | ... AND Stop Logging OltAdapterRestart-Dt |
| 250 | # Add OLT and perform sanity test |
| 251 | #setup |
| 252 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 253 | #Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test |
| 254 | Set Global Variable ${of_id} |
| 255 | |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 256 | FOR ${I} IN RANGE 0 ${num_all_onus} |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 257 | ${src}= Set Variable ${hosts.src[${I}]} |
| 258 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 259 | ${of_id}= Get ofID From OLT List ${src['olt']} |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 260 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 261 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
| 262 | ... ${of_id} |
| 263 | # Bring up the device and verify it authenticates |
Suchitra Vemuri | cdc32d8 | 2020-07-17 12:24:46 -0700 | [diff] [blame] | 264 | Wait Until Keyword Succeeds 360s 5s Validate Device ENABLED ACTIVE REACHABLE |
Hardik Windlass | 8b44649 | 2021-06-10 06:25:23 +0000 | [diff] [blame] | 265 | ... ${onu_device_id} onu=True onu_reason=omci-flows-pushed by_dev_id=True |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 266 | END |
| 267 | # Scale down the open OLT adapter deployment to 0 PODs and once confirmed, scale it back to 1 |
Andrea Campanella | 3dcce27 | 2021-01-15 16:04:47 +0100 | [diff] [blame] | 268 | Scale K8s Deployment by Pod Label ${NAMESPACE} app ${OLT_ADAPTER_APP_LABEL} 0 |
| 269 | Wait Until Keyword Succeeds ${timeout} 2s Pods Do Not Exist By Label ${NAMESPACE} app |
| 270 | ... ${OLT_ADAPTER_APP_LABEL} |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 271 | # Scale up the open OLT adapter deployment and make sure both it and the ofagent deployment are back |
Andrea Campanella | 3dcce27 | 2021-01-15 16:04:47 +0100 | [diff] [blame] | 272 | Scale K8s Deployment by Pod Label ${NAMESPACE} app ${OLT_ADAPTER_APP_LABEL} 1 |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 273 | Wait Until Keyword Succeeds ${timeout} 2s |
Andrea Campanella | 3dcce27 | 2021-01-15 16:04:47 +0100 | [diff] [blame] | 274 | ... Check Expected Available Deployment Replicas By Pod Label ${NAMESPACE} app ${OLT_ADAPTER_APP_LABEL} 1 |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 275 | |
| 276 | # Ensure the device is available in ONOS, this represents system connectivity being restored |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 277 | FOR ${I} IN RANGE 0 ${olt_count} |
| 278 | ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn |
| 279 | ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number} |
| 280 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS |
| 281 | ... ${olt_serial_number} |
| 282 | Wait Until Keyword Succeeds ${timeout} 2s Device Is Available In ONOS |
| 283 | ... http://karaf:karaf@${ONOS_REST_IP}:${ONOS_REST_PORT} ${of_id} |
| 284 | END |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 285 | |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 286 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 287 | ${src}= Set Variable ${hosts.src[${I}]} |
| 288 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 289 | ${of_id}= Get ofID From OLT List ${src['olt']} |
| 290 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
| 291 | ... ${of_id} |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 292 | # Add subscriber access and verify that DHCP completes to ensure system is still functioning properly |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 293 | Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 294 | ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port} |
| 295 | # Verify subscriber access flows are added for the ONU port |
| 296 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 297 | ... Verify Subscriber Access Flows Added For ONU DT ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 298 | ... ${onu_port} ${nni_port} ${src['s_tag']} |
| 299 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True |
| 300 | ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 301 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 302 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 303 | ... ${dst['container_name']} |
| 304 | END |
| 305 | |
| 306 | Verify restart ofagent container after subscriber is provisioned for DT |
| 307 | [Documentation] Restart ofagent container after VOLTHA is operational. |
| 308 | ... Prerequisite : ONUs are authenticated and pingable. |
Hardik Windlass | 4ed5450 | 2021-05-14 07:34:15 +0000 | [diff] [blame] | 309 | [Tags] functionalDt ofagentRestart-Dt soak |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 310 | [Setup] Start Logging ofagentRestart-Dt |
Hardik Windlass | 4353133 | 2021-05-19 07:07:03 +0000 | [diff] [blame] | 311 | [Teardown] Run Keywords Run Keyword If ${logging} Collect Logs |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 312 | ... AND Stop Logging ofagentRestart-Dt |
Hardik Windlass | 79b40ff | 2020-06-11 22:55:47 +0530 | [diff] [blame] | 313 | ... AND Scale K8s Deployment ${NAMESPACE} voltha-voltha-ofagent 1 |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 314 | # set timeout value |
| 315 | ${waitforRestart} Set Variable 120s |
| 316 | ${podStatusOutput}= Run kubectl get pods -n ${NAMESPACE} |
| 317 | Log ${podStatusOutput} |
| 318 | ${countBforRestart}= Run kubectl get pods -n ${NAMESPACE} | grep Running | wc -l |
| 319 | ${podName} Set Variable ofagent |
Hardik Windlass | 79b40ff | 2020-06-11 22:55:47 +0530 | [diff] [blame] | 320 | Wait Until Keyword Succeeds ${timeout} 15s Delete K8s Pods By Label ${NAMESPACE} app ${podName} |
Hardik Windlass | 79b40ff | 2020-06-11 22:55:47 +0530 | [diff] [blame] | 321 | Wait Until Keyword Succeeds ${timeout} 2s Validate Pods Status By Label ${NAMESPACE} |
| 322 | ... app ${podName} Running |
Hardik Windlass | 5e214b2 | 2021-02-26 10:37:14 +0000 | [diff] [blame] | 323 | Wait Until Keyword Succeeds ${timeout} 3s Pods Are Ready By Label ${NAMESPACE} app ${podName} |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 324 | # Performing Sanity Test to make sure subscribers are all DHCP and pingable |
| 325 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 326 | Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test DT |
| 327 | ${podStatusOutput}= Run kubectl get pods -n ${NAMESPACE} |
| 328 | Log ${podStatusOutput} |
| 329 | ${countAfterRestart}= Run kubectl get pods -n ${NAMESPACE} | grep Running | wc -l |
| 330 | Should Be Equal As Strings ${countAfterRestart} ${countBforRestart} |
| 331 | # Scale Down the Of-Agent Deployment |
Hardik Windlass | 79b40ff | 2020-06-11 22:55:47 +0530 | [diff] [blame] | 332 | Scale K8s Deployment ${NAMESPACE} voltha-voltha-ofagent 0 |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 333 | Sleep 30s |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 334 | FOR ${I} IN RANGE 0 ${num_all_onus} |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 335 | ${src}= Set Variable ${hosts.src[${I}]} |
| 336 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 337 | ${of_id}= Get ofID From OLT List ${src['olt']} |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 338 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 339 | ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 340 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
| 341 | # Verify ONU state in voltha |
Suchitra Vemuri | cdc32d8 | 2020-07-17 12:24:46 -0700 | [diff] [blame] | 342 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 360s 5s Validate Device |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 343 | ... ENABLED ACTIVE REACHABLE |
| 344 | ... ${src['onu']} onu=True onu_reason=omci-flows-pushed |
| 345 | # Check ONU port is Disabled in ONOS |
| 346 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s |
Hardik Windlass | 3901567 | 2021-07-05 05:48:08 +0000 | [diff] [blame] | 347 | ... Verify UNI Port Is Disabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']} |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 348 | # Verify subscriber access flows are added for the ONU port |
| 349 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 350 | ... Verify Subscriber Access Flows Added For ONU DT ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 351 | ... ${onu_port} ${nni_port} ${src['s_tag']} |
| 352 | # Verify Ping |
| 353 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Check Ping True |
| 354 | ... ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} ${src['ip']} |
| 355 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 356 | END |
| 357 | # Scale Up the Of-Agent Deployment |
Hardik Windlass | 79b40ff | 2020-06-11 22:55:47 +0530 | [diff] [blame] | 358 | Scale K8s Deployment ${NAMESPACE} voltha-voltha-ofagent 1 |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 359 | Wait Until Keyword Succeeds ${waitforRestart} 2s Validate Pod Status ofagent ${NAMESPACE} |
| 360 | ... Running |
| 361 | # Performing Sanity Test to make sure subscribers are all DHCP and pingable |
| 362 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 363 | Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test DT |
| 364 | Log to console Pod ${podName} restarted and sanity checks passed successfully |
| 365 | |
| 366 | Sanity E2E Test for OLT/ONU on POD With Core Fail and Restart for DT |
| 367 | [Documentation] Deploys an device instance and waits for it to authenticate. After |
| 368 | ... authentication is successful the rw-core deployment is scaled to 0 instances to |
| 369 | ... simulate a POD crash. The test then scales the rw-core back to a single instance |
| 370 | ... and configures ONOS for access. The test succeeds if the device is able to |
| 371 | ... complete the DHCP sequence. |
Hardik Windlass | 4353133 | 2021-05-19 07:07:03 +0000 | [diff] [blame] | 372 | [Tags] functionalDt rwcore-restart-Dt |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 373 | [Setup] Run Keywords Start Logging RwCoreFailAndRestart-Dt |
| 374 | ... AND Clear All Devices Then Create New Device |
Hardik Windlass | 4353133 | 2021-05-19 07:07:03 +0000 | [diff] [blame] | 375 | [Teardown] Run Keywords Run Keyword If ${logging} Collect Logs |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 376 | ... AND Stop Logging RwCoreFailAndRestart-Dt |
| 377 | #... AND Delete Device and Verify |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 378 | Run Keyword If ${has_dataplane} Clean Up Linux |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 379 | FOR ${I} IN RANGE 0 ${olt_count} |
| 380 | ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn |
| 381 | ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number} |
| 382 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS |
| 383 | ... ${olt_serial_number} |
| 384 | ${nni_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 385 | ... Get NNI Port in ONOS ${of_id} |
| 386 | # Set Global Variable ${nni_port} |
| 387 | END |
| 388 | FOR ${I} IN RANGE 0 ${num_all_onus} |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 389 | ${src}= Set Variable ${hosts.src[${I}]} |
| 390 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 391 | ${of_id}= Get ofID From OLT List ${src['olt']} |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 392 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 393 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
| 394 | ... ${of_id} |
| 395 | # Bring up the device and verify it authenticates |
Suchitra Vemuri | cdc32d8 | 2020-07-17 12:24:46 -0700 | [diff] [blame] | 396 | Wait Until Keyword Succeeds 360s 5s Validate Device ENABLED ACTIVE REACHABLE |
Hardik Windlass | 8b44649 | 2021-06-10 06:25:23 +0000 | [diff] [blame] | 397 | ... ${onu_device_id} onu=True onu_reason=initial-mib-downloaded by_dev_id=True |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 398 | END |
| 399 | |
| 400 | # Scale down the rw-core deployment to 0 PODs and once confirmed, scale it back to 1 |
Hardik Windlass | 79b40ff | 2020-06-11 22:55:47 +0530 | [diff] [blame] | 401 | Scale K8s Deployment voltha voltha-voltha-rw-core 0 |
| 402 | Wait Until Keyword Succeeds ${timeout} 2s Pod Does Not Exist voltha voltha-voltha-rw-core |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 403 | # Ensure the ofagent POD goes "not-ready" as expected |
| 404 | Wait Until keyword Succeeds ${timeout} 2s |
Hardik Windlass | 79b40ff | 2020-06-11 22:55:47 +0530 | [diff] [blame] | 405 | ... Check Expected Available Deployment Replicas voltha voltha-voltha-ofagent 0 |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 406 | # Scale up the core deployment and make sure both it and the ofagent deployment are back |
Hardik Windlass | 79b40ff | 2020-06-11 22:55:47 +0530 | [diff] [blame] | 407 | Scale K8s Deployment voltha voltha-voltha-rw-core 1 |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 408 | Wait Until Keyword Succeeds ${timeout} 2s |
Hardik Windlass | 79b40ff | 2020-06-11 22:55:47 +0530 | [diff] [blame] | 409 | ... Check Expected Available Deployment Replicas voltha voltha-voltha-rw-core 1 |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 410 | Wait Until Keyword Succeeds ${timeout} 2s |
Hardik Windlass | 79b40ff | 2020-06-11 22:55:47 +0530 | [diff] [blame] | 411 | ... Check Expected Available Deployment Replicas voltha voltha-voltha-ofagent 1 |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 412 | # For some reason scaling down and up the POD behind a service causes the port forward to stop working, |
| 413 | # so restart the port forwarding for the API service |
David Bainbridge | 07321ff | 2020-06-12 13:55:42 -0700 | [diff] [blame] | 414 | Restart VOLTHA Port Forward voltha-api |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 415 | # Ensure that the ofagent pod is up and ready and the device is available in ONOS, this |
| 416 | # represents system connectivity being restored |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 417 | FOR ${I} IN RANGE 0 ${olt_count} |
| 418 | ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn |
| 419 | ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number} |
| 420 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS |
| 421 | ... ${olt_serial_number} |
Girish Gowdra | e4de3b3 | 2021-03-23 22:20:00 -0700 | [diff] [blame] | 422 | Wait Until Keyword Succeeds 120s 2s Device Is Available In ONOS |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 423 | ... http://karaf:karaf@${ONOS_REST_IP}:${ONOS_REST_PORT} ${of_id} |
| 424 | END |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 425 | |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 426 | FOR ${I} IN RANGE 0 ${num_all_onus} |
Andy Bavier | 5209462 | 2020-05-12 15:54:24 -0700 | [diff] [blame] | 427 | ${src}= Set Variable ${hosts.src[${I}]} |
| 428 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 429 | ${of_id}= Get ofID From OLT List ${src['olt']} |
Andy Bavier | 5209462 | 2020-05-12 15:54:24 -0700 | [diff] [blame] | 430 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
| 431 | ... ${of_id} |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 432 | # Add subscriber access and verify that DHCP completes to ensure system is still functioning properly |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 433 | Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 434 | ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port} |
| 435 | # Verify subscriber access flows are added for the ONU port |
| 436 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 437 | ... Verify Subscriber Access Flows Added For ONU DT ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 438 | ... ${onu_port} ${nni_port} ${src['s_tag']} |
| 439 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True |
| 440 | ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 441 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 442 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 443 | ... ${dst['container_name']} |
| 444 | END |
| 445 | |
Hema | df00368 | 2020-04-28 21:22:22 +0530 | [diff] [blame] | 446 | Verify OLT Soft Reboot for DT |
| 447 | [Documentation] Test soft reboot of the OLT using voltctl command |
Hardik Windlass | 20a503d | 2021-06-21 11:58:08 +0000 | [diff] [blame] | 448 | [Tags] VOL-2818 OLTSoftRebootDt functionalDt |
Hema | df00368 | 2020-04-28 21:22:22 +0530 | [diff] [blame] | 449 | [Setup] Start Logging OLTSoftRebootDt |
Hardik Windlass | 20a503d | 2021-06-21 11:58:08 +0000 | [diff] [blame] | 450 | [Teardown] Run Keywords Run Keyword If ${logging} Collect Logs |
Hema | df00368 | 2020-04-28 21:22:22 +0530 | [diff] [blame] | 451 | ... AND Stop Logging OLTSoftRebootDt |
Hardik Windlass | 20a503d | 2021-06-21 11:58:08 +0000 | [diff] [blame] | 452 | FOR ${I} IN RANGE 0 ${olt_count} |
| 453 | ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn |
| 454 | ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number} |
| 455 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 360s 5s |
| 456 | ... Validate OLT Device ENABLED ACTIVE |
| 457 | ... REACHABLE ${olt_serial_number} |
| 458 | # Reboot the OLT using "voltctl device reboot" command |
| 459 | Reboot Device ${olt_device_id} |
| 460 | # Wait for the OLT to actually go down |
| 461 | Wait Until Keyword Succeeds 360s 5s Validate OLT Device ENABLED UNKNOWN UNREACHABLE |
| 462 | ... ${olt_serial_number} |
| 463 | END |
Hema | df00368 | 2020-04-28 21:22:22 +0530 | [diff] [blame] | 464 | #Verify that ping fails |
Hardik Windlass | 20a503d | 2021-06-21 11:58:08 +0000 | [diff] [blame] | 465 | FOR ${I} IN RANGE 0 ${num_all_onus} |
Hema | df00368 | 2020-04-28 21:22:22 +0530 | [diff] [blame] | 466 | ${src}= Set Variable ${hosts.src[${I}]} |
| 467 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 468 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 469 | ... Wait Until Keyword Succeeds 60s 2s |
| 470 | ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 471 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 472 | END |
Hardik Windlass | 20a503d | 2021-06-21 11:58:08 +0000 | [diff] [blame] | 473 | # Check OLT states |
| 474 | FOR ${I} IN RANGE 0 ${olt_count} |
| 475 | ${olt_serial_number}= Get From Dictionary ${list_olts}[${I}] sn |
| 476 | ${olt_ssh_ip}= Get From Dictionary ${list_olts}[${I}] sship |
| 477 | ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number} |
| 478 | # Wait for the OLT to come back up |
| 479 | Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds 120s 10s |
| 480 | ... Check Remote System Reachability True ${olt_ssh_ip} |
| 481 | # Check OLT states |
| 482 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 360s 5s |
| 483 | ... Validate OLT Device ENABLED ACTIVE |
| 484 | ... REACHABLE ${olt_serial_number} |
| 485 | END |
Hema | df00368 | 2020-04-28 21:22:22 +0530 | [diff] [blame] | 486 | # Waiting extra time for the ONUs to come up |
| 487 | Sleep 60s |
Hardik Windlass | 20a503d | 2021-06-21 11:58:08 +0000 | [diff] [blame] | 488 | #Check after reboot that ONUs are active, DHCP/pingable |
Hema | df00368 | 2020-04-28 21:22:22 +0530 | [diff] [blame] | 489 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 490 | Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test DT |
| 491 | |
Hema | 8c1a032 | 2020-05-26 16:02:32 +0530 | [diff] [blame] | 492 | Verify ONU Soft Reboot for DT |
| 493 | [Documentation] Test soft reboot of the ONU using voltctl command |
| 494 | [Tags] VOL-2820 ONUSoftRebootDt notready |
| 495 | [Setup] Start Logging ONUSoftRebootDt |
| 496 | #... AND Setup |
| 497 | [Teardown] Run Keywords Collect Logs |
| 498 | ... AND Stop Logging ONUSoftRebootDt |
| 499 | #... AND Delete Device and Verify |
Hema | 8c1a032 | 2020-05-26 16:02:32 +0530 | [diff] [blame] | 500 | #Reboot the ONU and verify that ping fails |
| 501 | FOR ${I} IN RANGE 0 ${num_onus} |
| 502 | ${src}= Set Variable ${hosts.src[${I}]} |
| 503 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 504 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 505 | ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 506 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
| 507 | Reboot Device ${onu_device_id} |
| 508 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 509 | ... Wait Until Keyword Succeeds 60s 2s |
| 510 | ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 511 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 512 | Verify ping is succesful except for given device ${num_onus} ${onu_device_id} |
| 513 | # Remove Subscriber Access (To replicate DT workflow) |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 514 | Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} |
Hema | 8c1a032 | 2020-05-26 16:02:32 +0530 | [diff] [blame] | 515 | ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port} |
| 516 | # Delete ONU Device (To replicate DT workflow) |
| 517 | Delete Device ${onu_device_id} |
| 518 | Sleep 40s |
| 519 | # Check ONU port is Enabled in ONOS |
| 520 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s |
Hardik Windlass | 3901567 | 2021-07-05 05:48:08 +0000 | [diff] [blame] | 521 | ... Verify UNI Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']} |
Hema | 8c1a032 | 2020-05-26 16:02:32 +0530 | [diff] [blame] | 522 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2 |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 523 | ... Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
Hema | 8c1a032 | 2020-05-26 16:02:32 +0530 | [diff] [blame] | 524 | ... volt-add-subscriber-access ${of_id} ${onu_port} |
| 525 | # Verify ONU state in voltha |
Suchitra Vemuri | cdc32d8 | 2020-07-17 12:24:46 -0700 | [diff] [blame] | 526 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 360s 5s Validate Device |
Hema | 8c1a032 | 2020-05-26 16:02:32 +0530 | [diff] [blame] | 527 | ... ENABLED ACTIVE REACHABLE |
| 528 | ... ${src['onu']} onu=True onu_reason=omci-flows-pushed |
| 529 | # Verify subscriber access flows are added for the ONU port |
| 530 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 531 | ... Verify Subscriber Access Flows Added For ONU DT ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 532 | ... ${onu_port} ${nni_port} ${src['s_tag']} |
| 533 | #Run Keyword If ${has_dataplane} Clean Up Linux |
| 534 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True |
| 535 | ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 536 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 537 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 538 | ... ${dst['container_name']} |
Hema | 8c1a032 | 2020-05-26 16:02:32 +0530 | [diff] [blame] | 539 | END |
| 540 | # Verify ONOS Flows |
| 541 | # Number of Access Flows on ONOS equals 4 * the Number of Active ONUs (2 for each downstream and upstream) |
| 542 | ${onos_flows_count}= Evaluate 4 * ${num_onus} |
| 543 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 544 | ... Verify Subscriber Access Flows Added Count DT ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
| 545 | ... ${of_id} ${onos_flows_count} |
| 546 | # Verify VOLTHA Flows |
| 547 | # Number of per OLT Flows equals Twice the Number of Active ONUs (each for downstream and upstream) + 1 for LLDP |
| 548 | ${olt_flows}= Evaluate 2 * ${num_onus} + 1 |
| 549 | # Number of per ONU Flows equals 2 (one each for downstream and upstream) |
| 550 | ${onu_flows}= Set Variable 2 |
| 551 | Run Keyword Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Flows ${olt_flows} |
| 552 | ${List_ONU_Serial} Create List |
| 553 | Set Suite Variable ${List_ONU_Serial} |
| 554 | Build ONU SN List ${List_ONU_Serial} |
| 555 | Log ${List_ONU_Serial} |
| 556 | Run Keyword Wait Until Keyword Succeeds ${timeout} 5s Validate ONU Flows |
| 557 | ... ${List_ONU_Serial} ${onu_flows} |
Hema | df00368 | 2020-04-28 21:22:22 +0530 | [diff] [blame] | 558 | |
Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [diff] [blame] | 559 | *** Keywords *** |
| 560 | Setup Suite |
| 561 | [Documentation] Set up the test suite |
| 562 | Common Test Suite Setup |
Andrea Campanella | 15619c7 | 2020-04-30 09:48:04 +0200 | [diff] [blame] | 563 | #power_switch.robot needs it to support different vendor's power switch |
| 564 | ${switch_type}= Get Variable Value ${web_power_switch.type} |
| 565 | Run Keyword If "${switch_type}"!="" Set Global Variable ${powerswitch_type} ${switch_type} |
Hardik Windlass | 4ed5450 | 2021-05-14 07:34:15 +0000 | [diff] [blame] | 566 | # Run Pre-test Setup for Soak Job |
| 567 | # Note: As soak requirement, it expects that the devices under test are already created and enabled |
| 568 | Run Keyword If '${SOAK_TEST}'=='True' Setup Soak |
| 569 | |
Hardik Windlass | b9bdd50 | 2020-04-17 14:46:21 +0530 | [diff] [blame] | 570 | |
| 571 | Clear All Devices Then Create New Device |
| 572 | [Documentation] Remove any devices from VOLTHA and ONOS |
| 573 | # Remove all devices from voltha and nos |
| 574 | Delete All Devices and Verify |
| 575 | # Execute normal test Setup Keyword |
| 576 | Setup |
| 577 | |