David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 1 | # Copyright 2017 - present Open Networking Foundation |
Suchitra Vemuri | 65cd65f | 2019-08-30 14:39:22 -0700 | [diff] [blame] | 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. |
Matteo Scandolo | 1294aeb | 2019-09-24 16:20:32 -0700 | [diff] [blame] | 14 | # FIXME Can we use the same test against BBSim and Hardware? |
| 15 | |
Suchitra Vemuri | 65cd65f | 2019-08-30 14:39:22 -0700 | [diff] [blame] | 16 | *** Settings *** |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 17 | Documentation Test various end-to-end scenarios |
Suchitra Vemuri | 65cd65f | 2019-08-30 14:39:22 -0700 | [diff] [blame] | 18 | Suite Setup Setup Suite |
Suchitra Vemuri | 65cd65f | 2019-08-30 14:39:22 -0700 | [diff] [blame] | 19 | Test Setup Setup |
| 20 | Test Teardown Teardown |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 21 | Suite Teardown Teardown Suite |
Suchitra Vemuri | 65cd65f | 2019-08-30 14:39:22 -0700 | [diff] [blame] | 22 | Library Collections |
| 23 | Library String |
| 24 | Library OperatingSystem |
| 25 | Library XML |
| 26 | Library RequestsLibrary |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 27 | Library ../../libraries/DependencyLibrary.py |
Suchitra Vemuri | b8ed2d5 | 2019-09-30 13:22:51 -0700 | [diff] [blame] | 28 | Resource ../../libraries/onos.robot |
| 29 | Resource ../../libraries/voltctl.robot |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 30 | Resource ../../libraries/voltha.robot |
Suchitra Vemuri | b8ed2d5 | 2019-09-30 13:22:51 -0700 | [diff] [blame] | 31 | Resource ../../libraries/utils.robot |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 32 | Resource ../../libraries/k8s.robot |
Suchitra Vemuri | b8ed2d5 | 2019-09-30 13:22:51 -0700 | [diff] [blame] | 33 | Resource ../../variables/variables.robot |
Suchitra Vemuri | 1d8e817 | 2020-06-17 17:43:56 -0700 | [diff] [blame] | 34 | Resource ../../libraries/power_switch.robot |
Suchitra Vemuri | 65cd65f | 2019-08-30 14:39:22 -0700 | [diff] [blame] | 35 | |
| 36 | *** Variables *** |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 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 |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 44 | ${NAMESPACE} voltha |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 45 | ${INFRA_NAMESPACE} default |
suraj gour | d64356b | 2019-11-07 13:26:20 +0000 | [diff] [blame] | 46 | # For below variable value, using deployment name as using grep for |
| 47 | # parsing radius pod name, we can also use full radius pod name |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 48 | ${RESTART_POD_NAME} radius |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 49 | ${timeout} 60s |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 50 | ${of_id} 0 |
| 51 | ${logical_id} 0 |
Andrea Campanella | 86e2406 | 2020-08-05 19:09:18 +0200 | [diff] [blame] | 52 | ${uprate} 0 |
| 53 | ${dnrate} 0 |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 54 | ${has_dataplane} True |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 55 | ${teardown_device} False |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 56 | ${scripts} ../../scripts |
Suchitra Vemuri | 65cd65f | 2019-08-30 14:39:22 -0700 | [diff] [blame] | 57 | |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 58 | # For dataplane bandwidth testing |
| 59 | ${upper_margin_pct} 105 # Allow 5% over the limit |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 60 | ${lower_margin_pct} 90 # Allow 8% under the limit |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 61 | ${udp_rate_multiplier} 1.10 # Send UDP at bw profile limit * rate_multiplier |
Andy Bavier | c80a274 | 2020-08-28 10:59:05 -0700 | [diff] [blame] | 62 | ${udp_packet_bytes} 1470 # UDP payload in bytes |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 63 | |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 64 | # Per-test logging on failure is turned off by default; set this variable to enable |
| 65 | ${container_log_dir} ${None} |
| 66 | |
Matteo Scandolo | da1c64b | 2021-07-20 10:14:49 -0700 | [diff] [blame] | 67 | # logging flag to enable Collect Logs, can be passed via the command line too |
| 68 | # example: -v logging:False |
| 69 | ${logging} True |
| 70 | |
Suchitra Vemuri | 65cd65f | 2019-08-30 14:39:22 -0700 | [diff] [blame] | 71 | *** Test Cases *** |
Suchitra Vemuri | 1d8e817 | 2020-06-17 17:43:56 -0700 | [diff] [blame] | 72 | Reboot ONUs Physically |
| 73 | [Documentation] This test reboots ONUs physically before execution all the tests |
| 74 | ... Test case runs only on the PODs that are configured with PowerSwitch that |
| 75 | ... controls the power off/on ONUs/OLT remotely (simulating a physical reboot) |
| 76 | [Tags] functional PowerSwitch RebootAllONUs |
| 77 | [Setup] Start Logging RebootAllONUs |
| 78 | [Teardown] Run Keywords Collect Logs |
| 79 | ... AND Stop Logging RebootAllONUs |
| 80 | Power Switch Connection Suite ${web_power_switch.ip} ${web_power_switch.user} ${web_power_switch.password} |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 81 | FOR ${I} IN RANGE 0 ${num_all_onus} |
Suchitra Vemuri | 1d8e817 | 2020-06-17 17:43:56 -0700 | [diff] [blame] | 82 | ${src}= Set Variable ${hosts.src[${I}]} |
| 83 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 84 | Disable Switch Outlet ${src['power_switch_port']} |
Hardik Windlass | 5e214b2 | 2021-02-26 10:37:14 +0000 | [diff] [blame] | 85 | Sleep 10s |
Suchitra Vemuri | 1d8e817 | 2020-06-17 17:43:56 -0700 | [diff] [blame] | 86 | Enable Switch Outlet ${src['power_switch_port']} |
Suchitra Vemuri | 1d8e817 | 2020-06-17 17:43:56 -0700 | [diff] [blame] | 87 | END |
| 88 | |
Suchitra Vemuri | 65cd65f | 2019-08-30 14:39:22 -0700 | [diff] [blame] | 89 | Sanity E2E Test for OLT/ONU on POD |
| 90 | [Documentation] Validates E2E Ping Connectivity and object states for the given scenario: |
| 91 | ... Validate successful authentication/DHCP/E2E ping for the tech profile that is used |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 92 | [Tags] sanity test1 |
Andy Bavier | e187eda | 2020-04-20 15:00:02 -0700 | [diff] [blame] | 93 | [Setup] Run Keywords Start Logging SanityTest |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 94 | ... AND Setup |
| 95 | [Teardown] Run Keywords Collect Logs |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 96 | ... AND Stop Logging SanityTest |
Suchitra Vemuri | c5295a3 | 2019-12-15 20:32:04 -0800 | [diff] [blame] | 97 | Run Keyword If ${has_dataplane} Clean Up Linux |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 98 | Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test |
Suchitra Vemuri | 65cd65f | 2019-08-30 14:39:22 -0700 | [diff] [blame] | 99 | |
Suchitra Vemuri | 6db8941 | 2019-11-14 14:52:54 -0800 | [diff] [blame] | 100 | Test Disable and Enable ONU |
| 101 | [Documentation] Validates E2E Ping Connectivity and object states for the given scenario: |
| 102 | ... Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable |
| 103 | ... Perform disable on the ONUs and validate that the pings do not succeed |
| 104 | ... Perform enable on the ONUs and validate that the pings are successful |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 105 | [Tags] functional DisableEnableONU released multi-uni |
Girish Gowdra | 8fd9696 | 2021-12-14 16:20:04 +0530 | [diff] [blame] | 106 | [Setup] Run Keywords Start Logging DisableEnableONU |
| 107 | ... AND Run Keyword If ${has_dataplane} Set Non-Critical Tag for XGSPON Tech |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 108 | [Teardown] Run Keywords Collect Logs |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 109 | ... AND Stop Logging DisableEnableONU |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 110 | FOR ${I} IN RANGE 0 ${num_all_onus} |
Suchitra Vemuri | 6db8941 | 2019-11-14 14:52:54 -0800 | [diff] [blame] | 111 | ${src}= Set Variable ${hosts.src[${I}]} |
| 112 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 113 | ${of_id}= Get ofID From OLT List ${src['olt']} |
TorstenThieme | dda3765 | 2021-11-11 16:22:05 +0000 | [diff] [blame] | 114 | ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id} |
Suchitra Vemuri | 6db8941 | 2019-11-14 14:52:54 -0800 | [diff] [blame] | 115 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 116 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 117 | ... ${of_id} ${src['uni_id']} |
Suchitra Vemuri | 6db8941 | 2019-11-14 14:52:54 -0800 | [diff] [blame] | 118 | Disable Device ${onu_device_id} |
Andy Bavier | 46c8be3 | 2020-01-21 10:06:27 -0700 | [diff] [blame] | 119 | Wait Until Keyword Succeeds 20s 2s Test Devices Disabled in VOLTHA Id=${onu_device_id} |
Andy Bavier | 33e6dd3 | 2020-01-16 13:35:20 -0700 | [diff] [blame] | 120 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 121 | ... Wait Until Keyword Succeeds 60s 2s |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 122 | ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 123 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
Suchitra Vemuri | 6db8941 | 2019-11-14 14:52:54 -0800 | [diff] [blame] | 124 | Enable Device ${onu_device_id} |
Girish Gowdra | fc0bdf2 | 2021-12-06 16:57:50 +0530 | [diff] [blame] | 125 | Wait Until Keyword Succeeds ${timeout} 5s |
| 126 | ... Validate Device ENABLED ACTIVE |
| 127 | ... REACHABLE ${src['onu']} onu=True onu_reason=omci-flows-pushed |
| 128 | # Workaround for issue seen in VOL-4489. Keep this workaround until VOL-4489 is fixed. |
| 129 | Run Keyword If ${has_dataplane} Reboot XGSPON ONU ${src['olt']} ${src['onu']} omci-flows-pushed |
| 130 | # Workaround ends here for issue seen in VOL-4489. |
Suchitra Vemuri | 6db8941 | 2019-11-14 14:52:54 -0800 | [diff] [blame] | 131 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 132 | ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
Hardik Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 133 | # Verify subscriber access flows are added for the ONU port |
| 134 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 135 | ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 136 | ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']} |
Andy Bavier | 33e6dd3 | 2020-01-16 13:35:20 -0700 | [diff] [blame] | 137 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 138 | ... Wait Until Keyword Succeeds 60s 2s |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 139 | ... Check Ping True ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 140 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
Suchitra Vemuri | 6db8941 | 2019-11-14 14:52:54 -0800 | [diff] [blame] | 141 | END |
| 142 | |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 143 | Test Subscriber Delete and Add |
| 144 | [Documentation] Validates E2E Ping Connectivity and object states for the given scenario: |
| 145 | ... Assuming that all the ONUs are authenticated/DHCP/pingable |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 146 | ... Delete a subscriber and validate that the pings do not succeed |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 147 | ... Re-add the subscriber and validate that the pings are successful |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 148 | [Tags] functional SubAddDelete released multi-uni |
Girish Gowdra | fbdddc1 | 2021-12-17 15:39:55 +0530 | [diff] [blame] | 149 | [Setup] Run Keywords Start Logging SubAddDelete |
| 150 | ... AND Run Keyword If ${has_dataplane} Set Non-Critical Tag for XGSPON Tech |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 151 | [Teardown] Run Keywords Collect Logs |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 152 | ... AND Stop Logging SubAddDelete |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 153 | FOR ${I} IN RANGE 0 ${num_all_onus} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 154 | ${src}= Set Variable ${hosts.src[${I}]} |
| 155 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 156 | ${of_id}= Get ofID From OLT List ${src['olt']} |
TorstenThieme | dda3765 | 2021-11-11 16:22:05 +0000 | [diff] [blame] | 157 | ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 158 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 159 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 160 | ... ${of_id} ${src['uni_id']} |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 161 | Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 162 | ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port} |
Suchitra Vemuri | 9da4430 | 2020-03-04 14:24:49 -0800 | [diff] [blame] | 163 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 164 | ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
Andy Bavier | 33e6dd3 | 2020-01-16 13:35:20 -0700 | [diff] [blame] | 165 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 166 | ... Wait Until Keyword Succeeds 60s 2s |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 167 | ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 168 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 169 | Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 170 | ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 171 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
Suchitra Vemuri | 9da4430 | 2020-03-04 14:24:49 -0800 | [diff] [blame] | 172 | ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
| 173 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 174 | ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
Hardik Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 175 | # Verify subscriber access flows are added for the ONU port |
| 176 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 177 | ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 178 | ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']} |
Andy Bavier | 33e6dd3 | 2020-01-16 13:35:20 -0700 | [diff] [blame] | 179 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 180 | ... Wait Until Keyword Succeeds 60s 2s |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 181 | ... Check Ping True ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 182 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 183 | END |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 184 | |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 185 | Check DHCP attempt fails when subscriber is not added |
| 186 | [Documentation] Validates when removed subscriber access, DHCP attempt, ping fails and |
| 187 | ... when again added subscriber access, DHCP attempt, ping succeeds |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 188 | ... Assuming that test1 or sanity test was executed where all the ONUs are authenticated/DHCP/pingable |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 189 | [Tags] functional SubsRemoveDHCP released multi-uni |
Andy Bavier | e187eda | 2020-04-20 15:00:02 -0700 | [diff] [blame] | 190 | [Setup] Start Logging SubsRemoveDHCP |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 191 | [Teardown] Run Keywords Collect Logs |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 192 | ... AND Stop Logging SubsRemoveDHCP |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 193 | FOR ${I} IN RANGE 0 ${num_all_onus} |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 194 | ${src}= Set Variable ${hosts.src[${I}]} |
| 195 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 196 | ${of_id}= Get ofID From OLT List ${src['olt']} |
TorstenThieme | dda3765 | 2021-11-11 16:22:05 +0000 | [diff] [blame] | 197 | ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 198 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 199 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 200 | ... ${of_id} ${src['uni_id']} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 201 | Run Keyword And Ignore Error Login And Run Command On Remote System killall dhclient ${src['ip']} |
| 202 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 203 | Run Keyword And Ignore Error Login And Run Command On Remote System ps -ef | grep dhclient ${src['ip']} |
| 204 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 205 | Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 206 | ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port} |
Suchitra Vemuri | 8f1d306 | 2020-02-28 11:57:37 -0800 | [diff] [blame] | 207 | Sleep 15s |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 208 | Run Keyword And Ignore Error Login And Run Command On Remote System ps -ef | grep dhclient ${src['ip']} |
| 209 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 210 | Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds ${timeout} 2s |
| 211 | ... Delete IP Addresses from Interface on Remote Host ${src['dp_iface_name']} ${src['ip']} |
| 212 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 213 | Run Keyword And Ignore Error Login And Run Command On Remote System |
| 214 | ... ifconfig | grep -A 10 ens ${src['ip']} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 215 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 216 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping False |
| 217 | ... False ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 218 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 219 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 220 | ... ${dst['container_name']} |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 221 | Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 222 | ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port} |
Suchitra Vemuri | 9da4430 | 2020-03-04 14:24:49 -0800 | [diff] [blame] | 223 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 224 | ... 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] | 225 | # Verify subscriber access flows are added for the ONU port |
| 226 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 227 | ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 228 | ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']} |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 229 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True |
| 230 | ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 231 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 232 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 233 | ... ${dst['container_name']} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 234 | END |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 235 | |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 236 | Test Disable and Enable ONU scenario for ATT workflow |
| 237 | [Documentation] Validates E2E Ping Connectivity and object states for the given scenario: |
| 238 | ... Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable |
| 239 | ... Perform disable on the ONUs, call volt-remove-subscriber and validate that the pings do not succeed |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 240 | ... Perform enable on the ONUs, authentication check, volt-add-subscriber-access and |
| 241 | ... validate that the pings are successful |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 242 | ... VOL-2284 |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 243 | [Tags] functional ATT_DisableEnableONU released multi-uni |
Girish Gowdra | 8fd9696 | 2021-12-14 16:20:04 +0530 | [diff] [blame] | 244 | [Setup] Run Keywords Start Logging ATT_DisableEnableONU |
| 245 | ... AND Run Keyword If ${has_dataplane} Set Non-Critical Tag for XGSPON Tech |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 246 | [Teardown] Run Keywords Collect Logs |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 247 | ... AND Stop Logging ATT_DisableEnableONU |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 248 | FOR ${I} IN RANGE 0 ${num_all_onus} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 249 | ${src}= Set Variable ${hosts.src[${I}]} |
| 250 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 251 | ${of_id}= Get ofID From OLT List ${src['olt']} |
TorstenThieme | dda3765 | 2021-11-11 16:22:05 +0000 | [diff] [blame] | 252 | ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 253 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 254 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 255 | ... ${of_id} ${src['uni_id']} |
Suchitra Vemuri | 014b603 | 2020-02-14 18:13:13 -0800 | [diff] [blame] | 256 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s |
Hardik Windlass | 3901567 | 2021-07-05 05:48:08 +0000 | [diff] [blame] | 257 | ... Verify UNI Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']} ${src['uni_id']} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 258 | Disable Device ${onu_device_id} |
Hardik Windlass | 5e214b2 | 2021-02-26 10:37:14 +0000 | [diff] [blame] | 259 | Wait Until Keyword Succeeds ${timeout} 2s Test Devices Disabled in VOLTHA Id=${onu_device_id} |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 260 | Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 261 | ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 262 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 263 | ... Wait Until Keyword Succeeds 60s 2s Check Ping |
| 264 | ... False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 265 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
Hardik Windlass | 5e214b2 | 2021-02-26 10:37:14 +0000 | [diff] [blame] | 266 | ... ELSE Sleep 10s |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 267 | Enable Device ${onu_device_id} |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 268 | Wait Until Keyword Succeeds ${timeout} 2s Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} |
Matteo Scandolo | 7e519fb | 2021-08-13 11:35:16 -0700 | [diff] [blame] | 269 | ... ${ONOS_SSH_PORT} ${of_id} ${onu_port} |
Girish Gowdra | fc0bdf2 | 2021-12-06 16:57:50 +0530 | [diff] [blame] | 270 | # Workaround for issue seen in VOL-4489. Keep this workaround until VOL-4489 is fixed. |
| 271 | Run Keyword If ${has_dataplane} Reboot XGSPON ONU ${src['olt']} ${src['onu']} omci-flows-pushed |
| 272 | # Workaround ends here for issue seen in VOL-4489. |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 273 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 274 | ... Validate Authentication After Reassociate True |
| 275 | ... ${src['dp_iface_name']} ${src['ip']} ${src['user']} ${src['pass']} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 276 | ... ${src['container_type']} ${src['container_name']} |
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} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 278 | ... ${ONOS_SSH_PORT} ${onu_port} |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 279 | Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 280 | ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port} |
Hardik Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 281 | # Verify subscriber access flows are added for the ONU port |
| 282 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 283 | ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 284 | ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 285 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True |
Andy Bavier | 08ae585 | 2019-12-19 09:12:42 -0700 | [diff] [blame] | 286 | ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 287 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 288 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 289 | ... ${dst['container_name']} |
| 290 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 291 | ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 292 | END |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 293 | |
Hardik Windlass | 2b37e71 | 2020-06-12 02:13:17 +0530 | [diff] [blame] | 294 | Test Disable and Enable OLT |
| 295 | [Documentation] Validates E2E Ping Connectivity and object states for the given scenario: |
| 296 | ... Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable |
| 297 | ... Perform disable on the OLT and validate that the pings do not succeed |
| 298 | ... Perform enable on the OLT and validate that the pings are successful |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 299 | [Tags] functional VOL-2410 DisableEnableOLT multi-uni |
Hardik Windlass | 2b37e71 | 2020-06-12 02:13:17 +0530 | [diff] [blame] | 300 | [Setup] Start Logging DisableEnableOLT |
| 301 | [Teardown] Run Keywords Collect Logs |
| 302 | ... AND Stop Logging DisableEnableOLT |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 303 | #Disable the OLTs and verify the OLT/ONUs are disabled properly |
| 304 | FOR ${I} IN RANGE 0 ${olt_count} |
| 305 | ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn |
| 306 | ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number} |
| 307 | ${rc} ${output}= Run and Return Rc and Output |
Matteo Scandolo | 5899be1 | 2020-11-11 15:38:07 -0800 | [diff] [blame] | 308 | ... voltctl -c ${VOLTCTL_CONFIG} device disable ${olt_device_id} |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 309 | Should Be Equal As Integers ${rc} 0 |
| 310 | Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device DISABLED UNKNOWN REACHABLE |
| 311 | ... ${olt_serial_number} |
| 312 | END |
| 313 | # Validate the ONUs |
| 314 | FOR ${I} IN RANGE 0 ${num_all_onus} |
Hardik Windlass | 2b37e71 | 2020-06-12 02:13:17 +0530 | [diff] [blame] | 315 | ${src}= Set Variable ${hosts.src[${I}]} |
| 316 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 317 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 318 | ${of_id}= Get ofID From OLT List ${src['olt']} |
Hardik Windlass | 2b37e71 | 2020-06-12 02:13:17 +0530 | [diff] [blame] | 319 | ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 320 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} ${src['uni_id']} |
Hardik Windlass | 2b37e71 | 2020-06-12 02:13:17 +0530 | [diff] [blame] | 321 | Wait Until Keyword Succeeds ${timeout} 5s Validate Device ENABLED DISCOVERED |
| 322 | ... UNREACHABLE ${src['onu']} onu=false |
| 323 | #Verify that ping fails |
| 324 | Run Keyword If ${has_dataplane} |
| 325 | ... Run Keyword And Continue On Failure Wait Until Keyword Succeeds 60s 2s |
| 326 | ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 327 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 328 | # Remove Subscriber Access (To replicate ATT workflow) |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 329 | Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} |
Hardik Windlass | 2b37e71 | 2020-06-12 02:13:17 +0530 | [diff] [blame] | 330 | ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port} |
Hardik Windlass | 2b37e71 | 2020-06-12 02:13:17 +0530 | [diff] [blame] | 331 | END |
| 332 | #Enable the OLT back and check ONU, OLT status are back to "ACTIVE" |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 333 | FOR ${I} IN RANGE 0 ${olt_count} |
| 334 | ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn |
| 335 | ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number} |
| 336 | Enable Device ${olt_device_id} |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 337 | Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device ENABLED ACTIVE REACHABLE |
| 338 | ... ${olt_serial_number} |
| 339 | #TODO: Update for PON_OLT ETHERNET_NNI |
| 340 | #Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Port Types |
| 341 | #... PON_OLT ETHERNET_NNI |
| 342 | END |
Hardik Windlass | 2b37e71 | 2020-06-12 02:13:17 +0530 | [diff] [blame] | 343 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 344 | Wait Until Keyword Succeeds ${timeout} 5s Perform Sanity Test |
| 345 | |
Suchitra Vemuri | 937cd39 | 2020-01-12 17:10:42 -0800 | [diff] [blame] | 346 | Delete OLT, ReAdd OLT and Perform Sanity Test |
| 347 | [Documentation] Validates E2E Ping Connectivity and object states for the given scenario: |
| 348 | ... Disable and Delete the OLT |
| 349 | ... Create/Enable the same OLT again |
| 350 | ... Validate authentication/DHCP/E2E pings succeed for all the ONUs connected to the OLT |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 351 | [Tags] functional DeleteOLT released notready |
Andy Bavier | e187eda | 2020-04-20 15:00:02 -0700 | [diff] [blame] | 352 | [Setup] Start Logging DeleteOLT |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 353 | [Teardown] Run Keywords Collect Logs |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 354 | ... AND Stop Logging DeleteOLT |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 355 | #TODO: Update test with new framework changes |
Suchitra Vemuri | 937cd39 | 2020-01-12 17:10:42 -0800 | [diff] [blame] | 356 | Run Keyword If ${has_dataplane} Clean Up Linux |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 357 | FOR ${I} IN RANGE 0 ${olt_count} |
| 358 | ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn |
| 359 | ${of_id}= Get ofID From OLT List ${olt_serial_number} |
| 360 | Delete Device and Verify ${olt_serial_number} |
| 361 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 362 | ... Verify Device Flows Removed ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 363 | END |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 364 | Run Keyword If ${has_dataplane} Clean Up Linux |
Suchitra Vemuri | 937cd39 | 2020-01-12 17:10:42 -0800 | [diff] [blame] | 365 | # Recreate the OLT |
Hardik Windlass | 480f3e2 | 2020-04-02 20:14:14 +0530 | [diff] [blame] | 366 | Setup |
Suchitra Vemuri | 937cd39 | 2020-01-12 17:10:42 -0800 | [diff] [blame] | 367 | Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test |
Suchitra Vemuri | 937cd39 | 2020-01-12 17:10:42 -0800 | [diff] [blame] | 368 | |
Hema | 567f301 | 2020-03-25 00:51:53 +0530 | [diff] [blame] | 369 | Check Mib State on OLT recreation after ONU, OLT deletion |
| 370 | [Documentation] Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable, |
| 371 | ... Disable and Delete the ONU, Disable and Delete the OLT |
| 372 | ... Create/Enable the OLT again and Check for the Mib State of the ONUs |
| 373 | [Tags] functional CheckMibState notready |
Andy Bavier | e187eda | 2020-04-20 15:00:02 -0700 | [diff] [blame] | 374 | [Setup] Start Logging CheckMibState |
Hema | 567f301 | 2020-03-25 00:51:53 +0530 | [diff] [blame] | 375 | [Teardown] Run Keywords Collect Logs |
| 376 | ... AND Stop Logging CheckMibState |
Hema | 567f301 | 2020-03-25 00:51:53 +0530 | [diff] [blame] | 377 | #Disable and Delete the ONU |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 378 | FOR ${I} IN RANGE 0 ${num_all_onus} |
Hema | 567f301 | 2020-03-25 00:51:53 +0530 | [diff] [blame] | 379 | ${src}= Set Variable ${hosts.src[${I}]} |
| 380 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 381 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 382 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 383 | ... ${of_id} ${src['uni_id']} |
Hema | 567f301 | 2020-03-25 00:51:53 +0530 | [diff] [blame] | 384 | Disable Device ${onu_device_id} |
| 385 | Wait Until Keyword Succeeds 20s 2s Test Devices Disabled in VOLTHA Id=${onu_device_id} |
| 386 | Delete Device ${onu_device_id} |
| 387 | END |
| 388 | #Disable and Delete the OLT |
Hardik Windlass | 480f3e2 | 2020-04-02 20:14:14 +0530 | [diff] [blame] | 389 | Delete Device and Verify |
| 390 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 391 | ... Verify Device Flows Removed ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 392 | # Recreate the OLT |
Hema | 567f301 | 2020-03-25 00:51:53 +0530 | [diff] [blame] | 393 | Run Keyword If ${has_dataplane} Sleep 180s |
Andrea Campanella | 3dcce27 | 2021-01-15 16:04:47 +0100 | [diff] [blame] | 394 | # This dneeds to be done in for loop, test is not ready |
| 395 | ${olt_device_id}= Run Keyword If "${list_olts}[${I}][type]" == "${None}" |
Suchitra Vemuri | 09f878d | 2021-02-10 18:19:04 -0800 | [diff] [blame] | 396 | ... Create Device ${list_olts}[${I}][ip] ${list_olts}[${I}][oltport] |
| 397 | ... ELSE Create Device ${list_olts}[${I}][ip] ${list_olts}[${I}][oltport] ${list_olts}[${I}][type] |
Hema | 567f301 | 2020-03-25 00:51:53 +0530 | [diff] [blame] | 398 | Set Suite Variable ${olt_device_id} |
| 399 | Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device PREPROVISIONED |
Hardik Windlass | 8b44649 | 2021-06-10 06:25:23 +0000 | [diff] [blame] | 400 | ... UNKNOWN UNKNOWN ${olt_device_id} by_dev_id=True |
Hema | 567f301 | 2020-03-25 00:51:53 +0530 | [diff] [blame] | 401 | Enable Device ${olt_device_id} |
| 402 | Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device ENABLED ACTIVE REACHABLE |
| 403 | ... ${olt_serial_number} |
| 404 | #Check for the ONU status and ONU Mib State should be "omci-flows-pushed" |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 405 | FOR ${I} IN RANGE 0 ${num_all_onus} |
Hema | 567f301 | 2020-03-25 00:51:53 +0530 | [diff] [blame] | 406 | ${src}= Set Variable ${hosts.src[${I}]} |
| 407 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 408 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 409 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 410 | ... ${of_id} ${src['uni_id']} |
Suchitra Vemuri | cdc32d8 | 2020-07-17 12:24:46 -0700 | [diff] [blame] | 411 | Wait Until Keyword Succeeds 180s 5s Validate Device ENABLED ACTIVE |
Hema | 567f301 | 2020-03-25 00:51:53 +0530 | [diff] [blame] | 412 | ... REACHABLE ${src['onu']} onu=True onu_reason=omci-flows-pushed |
| 413 | END |
| 414 | |
Hema | 783279b | 2020-01-22 15:37:37 +0530 | [diff] [blame] | 415 | Test disable ONUs and OLT then delete ONUs and OLT |
| 416 | [Documentation] On deployed POD, disable the ONU, disable the OLT and then delete ONU and OLT. |
| 417 | ... This TC is to confirm that ONU removal is not impacting OLT |
| 418 | ... Devices will be removed during the execution of this TC |
| 419 | ... so calling setup at the end to add the devices back to avoid the confusion. |
Suchitra Vemuri | a7dae32 | 2020-02-19 22:38:18 -0800 | [diff] [blame] | 420 | [Tags] functional VOL-2354 DisableDeleteONUandOLT released |
Andy Bavier | e187eda | 2020-04-20 15:00:02 -0700 | [diff] [blame] | 421 | [Setup] Start Logging DisableDeleteONUandOLT |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 422 | [Teardown] Run Keywords Collect Logs |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 423 | ... AND Stop Logging DisableDeleteONUandOLT |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 424 | #${olt_device_id}= Get Device ID From SN ${olt_serial_number} |
Suchitra Vemuri | 0217055 | 2021-03-23 16:40:50 -0700 | [diff] [blame] | 425 | @{onu_reason}= Create List tech-profile-config-downloaded-success omci-flows-pushed |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 426 | FOR ${I} IN RANGE 0 ${num_all_onus} |
Hema | 783279b | 2020-01-22 15:37:37 +0530 | [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']} |
Hema | 783279b | 2020-01-22 15:37:37 +0530 | [diff] [blame] | 430 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
Suchitra Vemuri | cdc32d8 | 2020-07-17 12:24:46 -0700 | [diff] [blame] | 431 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 360s 5s |
Suchitra Vemuri | 014b603 | 2020-02-14 18:13:13 -0800 | [diff] [blame] | 432 | ... Validate Device ENABLED ACTIVE |
Suchitra Vemuri | 0217055 | 2021-03-23 16:40:50 -0700 | [diff] [blame] | 433 | ... REACHABLE ${src['onu']} onu=True onu_reason=${onu_reason} |
Suchitra Vemuri | 014b603 | 2020-02-14 18:13:13 -0800 | [diff] [blame] | 434 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 435 | ... Validate OLT Device ENABLED ACTIVE |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 436 | ... REACHABLE ${src['olt']} |
Hema | 783279b | 2020-01-22 15:37:37 +0530 | [diff] [blame] | 437 | ${rc} ${output}= Run and Return Rc and Output |
Matteo Scandolo | 5899be1 | 2020-11-11 15:38:07 -0800 | [diff] [blame] | 438 | ... voltctl -c ${VOLTCTL_CONFIG} device disable ${onu_device_id} |
Hema | 783279b | 2020-01-22 15:37:37 +0530 | [diff] [blame] | 439 | Should Be Equal As Integers ${rc} 0 |
Suchitra Vemuri | 014b603 | 2020-02-14 18:13:13 -0800 | [diff] [blame] | 440 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 441 | ... Validate Device DISABLED UNKNOWN |
Hema | 783279b | 2020-01-22 15:37:37 +0530 | [diff] [blame] | 442 | ... REACHABLE ${src['onu']} onu=false |
Suchitra Vemuri | cdc32d8 | 2020-07-17 12:24:46 -0700 | [diff] [blame] | 443 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 360s 5s |
Suchitra Vemuri | 014b603 | 2020-02-14 18:13:13 -0800 | [diff] [blame] | 444 | ... Validate OLT Device ENABLED ACTIVE |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 445 | ... REACHABLE ${src['olt']} |
Hema | 783279b | 2020-01-22 15:37:37 +0530 | [diff] [blame] | 446 | END |
Matteo Scandolo | 5899be1 | 2020-11-11 15:38:07 -0800 | [diff] [blame] | 447 | |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 448 | # Disable all OLTs |
| 449 | FOR ${I} IN RANGE 0 ${olt_count} |
| 450 | ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn |
| 451 | ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number} |
| 452 | ${rc} ${output}= Run and Return Rc and Output |
Matteo Scandolo | 5899be1 | 2020-11-11 15:38:07 -0800 | [diff] [blame] | 453 | ... voltctl -c ${VOLTCTL_CONFIG} device disable ${olt_device_id} |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 454 | Should Be Equal As Integers ${rc} 0 |
| 455 | Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device DISABLED UNKNOWN REACHABLE |
| 456 | ... ${olt_serial_number} |
| 457 | END |
| 458 | # Validate ONUs after OLT disable |
| 459 | FOR ${I} IN RANGE 0 ${num_all_onus} |
Hema | 783279b | 2020-01-22 15:37:37 +0530 | [diff] [blame] | 460 | ${src}= Set Variable ${hosts.src[${I}]} |
| 461 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 462 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
Suchitra Vemuri | 014b603 | 2020-02-14 18:13:13 -0800 | [diff] [blame] | 463 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 464 | ... Validate Device DISABLED DISCOVERED |
| 465 | ... UNREACHABLE ${src['onu']} onu=false |
Hardik Windlass | 7da42ca | 2020-03-13 14:25:44 +0530 | [diff] [blame] | 466 | Delete Device ${onu_device_id} |
Suchitra Vemuri | 014b603 | 2020-02-14 18:13:13 -0800 | [diff] [blame] | 467 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 468 | ... Validate OLT Device DISABLED UNKNOWN |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 469 | ... REACHABLE ${src['olt']} |
Hema | 783279b | 2020-01-22 15:37:37 +0530 | [diff] [blame] | 470 | END |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 471 | # Delete all OLTs |
| 472 | Delete All Devices and Verify |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 473 | # Re-create the Devices and Perform Sanity |
| 474 | Setup |
| 475 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 476 | Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 477 | |
Suchitra Vemuri | 9a6dd6d | 2020-02-28 17:46:26 -0800 | [diff] [blame] | 478 | Validate authentication on a disabled ONU |
suraj gour | 472da1c | 2020-02-25 05:44:51 +0000 | [diff] [blame] | 479 | [Documentation] Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable |
| 480 | ... Perform disable on the ONUs and validate that the authentication do not succeed |
| 481 | ... Perform enable on the ONUs and validate that authentication successful |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 482 | [Tags] functional DisableONU_AuthCheck multi-uni |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 483 | # Creates Devices in the Setup |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 484 | [Setup] Start Logging DisableONU_AuthCheck |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 485 | [Teardown] Run Keywords Collect Logs |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 486 | ... AND Delete All Devices and Verify |
Girish Gowdra | f244d5b | 2021-09-01 17:16:16 -0700 | [diff] [blame] | 487 | ... AND Run Keyword If ${logging} Collect Logs |
| 488 | ... AND Stop Logging DisableONU_AuthCheck |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 489 | Clean WPA Process |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 490 | FOR ${I} IN RANGE 0 ${num_all_onus} |
suraj gour | 472da1c | 2020-02-25 05:44:51 +0000 | [diff] [blame] | 491 | ${src}= Set Variable ${hosts.src[${I}]} |
| 492 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 493 | ${of_id}= Get ofID From OLT List ${src['olt']} |
suraj gour | 472da1c | 2020-02-25 05:44:51 +0000 | [diff] [blame] | 494 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 495 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 496 | ... ${of_id} ${src['uni_id']} |
suraj gour | 472da1c | 2020-02-25 05:44:51 +0000 | [diff] [blame] | 497 | Disable Device ${onu_device_id} |
| 498 | Wait Until Keyword Succeeds ${timeout} 5s Validate Device DISABLED UNKNOWN |
| 499 | ... REACHABLE ${src['onu']} onu=false |
Andy Bavier | 84834d4 | 2020-02-25 13:49:50 -0700 | [diff] [blame] | 500 | ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=. |
| 501 | ... /tmp/wpa ${src['dp_iface_name']} log |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 502 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication False |
| 503 | ... ${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] | 504 | ... ${src['container_type']} ${src['container_name']} ${wpa_log} |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 505 | Enable Device ${onu_device_id} |
| 506 | Run Keyword And Ignore Error Kill Linux Process [w]pa_supplicant ${src['ip']} |
| 507 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 508 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device |
| 509 | ... ENABLED ACTIVE REACHABLE ${src['onu']} onu=True onu_reason=omci-flows-pushed |
| 510 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True |
| 511 | ... ${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] | 512 | ... ${src['container_type']} ${src['container_name']} ${wpa_log} |
suraj gour | 472da1c | 2020-02-25 05:44:51 +0000 | [diff] [blame] | 513 | Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id} |
| 514 | END |
suraj gour | 472da1c | 2020-02-25 05:44:51 +0000 | [diff] [blame] | 515 | |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 516 | Data plane verification using TCP |
| 517 | [Documentation] Test bandwidth profile is met and not exceeded for each subscriber. |
| 518 | ... Assumes iperf3 and jq installed on client and iperf -s running on DHCP server |
Matteo Scandolo | ab48f9e | 2021-06-11 17:08:00 +0200 | [diff] [blame] | 519 | [Tags] non-critical dataplane BandwidthProfileTCP VOL-2052 |
Andy Bavier | dfbcaef | 2020-05-27 15:34:18 -0700 | [diff] [blame] | 520 | [Setup] Start Logging BandwidthProfileTCP |
| 521 | [Teardown] Run Keywords Collect Logs |
| 522 | ... AND Stop Logging BandwidthProfileTCP |
Andy Bavier | eff938d | 2020-06-29 18:27:49 -0700 | [diff] [blame] | 523 | Pass Execution If '${has_dataplane}'=='False' |
| 524 | ... Bandwidth profile validation can be done only in physical pod. Skipping this test in BBSIM. |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 525 | Delete All Devices And Verify |
| 526 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 527 | setup |
| 528 | Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test |
| 529 | |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 530 | FOR ${I} IN RANGE 0 ${num_all_onus} |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 531 | ${src}= Set Variable ${hosts.src[${I}]} |
| 532 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 533 | ${of_id}= Get ofID From OLT List ${src['olt']} |
Andy Bavier | f6ab19c | 2020-05-14 10:34:47 -0700 | [diff] [blame] | 534 | |
| 535 | # Check for iperf3 and jq tools |
| 536 | ${stdout} ${stderr} ${rc}= Execute Remote Command which iperf3 jq |
| 537 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 538 | Pass Execution If ${rc} != 0 Skipping test: iperf3 / jq not found on the RG |
| 539 | |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 540 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 541 | ... ${of_id} ${src['uni_id']} |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 542 | ${subscriber_id}= Set Variable ${of_id}/${onu_port} |
| 543 | ${bandwidth_profile_name} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id} |
| 544 | ... upstreamBandwidthProfile |
Girish Gowdra | d769b41 | 2021-05-16 11:09:46 -0700 | [diff] [blame] | 545 | ${limiting_bw_value_upstream} Get Limiting Bandwidth Details ${bandwidth_profile_name} |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 546 | ${bandwidth_profile_name} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id} |
| 547 | ... downstreamBandwidthProfile |
Girish Gowdra | d769b41 | 2021-05-16 11:09:46 -0700 | [diff] [blame] | 548 | ${limiting_bw_value_dnstream} Get Limiting Bandwidth Details ${bandwidth_profile_name} |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 549 | |
| 550 | # Stream TCP packets from RG to server |
| 551 | ${updict}= Run Iperf3 Test Client ${src} server=${dst['dp_iface_ip_qinq']} |
| 552 | ... args=-t 30 |
| 553 | ${actual_upstream_bw_used}= Evaluate ${updict['end']['sum_received']['bits_per_second']}/1000 |
| 554 | |
| 555 | # Stream TCP packets from server to RG |
| 556 | ${dndict}= Run Iperf3 Test Client ${src} server=${dst['dp_iface_ip_qinq']} |
| 557 | ... args=-R -t 30 |
| 558 | ${actual_dnstream_bw_used}= Evaluate ${dndict['end']['sum_received']['bits_per_second']}/1000 |
| 559 | |
| 560 | ${pct_limit_up}= Evaluate 100*${actual_upstream_bw_used}/${limiting_bw_value_upstream} |
| 561 | ${pct_limit_dn}= Evaluate 100*${actual_dnstream_bw_used}/${limiting_bw_value_dnstream} |
| 562 | Log Up: bwprof ${limiting_bw_value_upstream}Kbps, got ${actual_upstream_bw_used}Kbps (${pct_limit_up}%) |
| 563 | Log Down: bwprof ${limiting_bw_value_dnstream}Kbps, got ${actual_dnstream_bw_used}Kbps (${pct_limit_dn}%) |
| 564 | |
| 565 | Should Be True ${pct_limit_up} <= ${upper_margin_pct} |
| 566 | ... The upstream bandwidth exceeded the limit (${pct_limit_up}% of limit) |
Andy Bavier | eff938d | 2020-06-29 18:27:49 -0700 | [diff] [blame] | 567 | # VOL-3125: downstream bw limit not enforced. Uncomment when fixed. |
| 568 | #Should Be True ${pct_limit_dn} <= ${upper_margin_pct} |
| 569 | #... The downstream bandwidth exceeded the limit (${pct_limit_dn}% of limit) |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 570 | Should Be True ${pct_limit_up} >= ${lower_margin_pct} |
| 571 | ... The upstream bandwidth guarantee was not met (${pct_limit_up}% of resv) |
| 572 | Should Be True ${pct_limit_dn} >= ${lower_margin_pct} |
| 573 | ... The downstream bandwidth guarantee was not met (${pct_limit_dn}% of resv) |
| 574 | END |
| 575 | |
| 576 | Data plane verification using UDP |
| 577 | [Documentation] Test bandwidth profile is met and not exceeded for each subscriber. |
| 578 | ... Assumes iperf3 and jq installed on client and iperf -s running on DHCP server |
Matteo Scandolo | ab48f9e | 2021-06-11 17:08:00 +0200 | [diff] [blame] | 579 | [Tags] non-critical dataplane BandwidthProfileUDP VOL-2052 |
Andy Bavier | dfbcaef | 2020-05-27 15:34:18 -0700 | [diff] [blame] | 580 | [Setup] Start Logging BandwidthProfileUDP |
| 581 | [Teardown] Run Keywords Collect Logs |
| 582 | ... AND Stop Logging BandwidthProfileUDP |
Andy Bavier | eff938d | 2020-06-29 18:27:49 -0700 | [diff] [blame] | 583 | Pass Execution If '${has_dataplane}'=='False' |
| 584 | ... Bandwidth profile validation can be done only in physical pod. Skipping this test in BBSIM. |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 585 | FOR ${I} IN RANGE 0 ${num_all_onus} |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 586 | ${src}= Set Variable ${hosts.src[${I}]} |
| 587 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 588 | ${of_id}= Get ofID From OLT List ${src['olt']} |
Andy Bavier | d59f977 | 2020-07-01 12:00:42 -0700 | [diff] [blame] | 589 | |
| 590 | # Check for iperf3 and jq tools |
| 591 | ${stdout} ${stderr} ${rc}= Execute Remote Command which iperf3 jq |
| 592 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 593 | Pass Execution If ${rc} != 0 Skipping test: iperf3 / jq not found on the RG |
| 594 | |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 595 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 596 | ... ${of_id} ${src['uni_id']} |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 597 | ${subscriber_id}= Set Variable ${of_id}/${onu_port} |
| 598 | ${bandwidth_profile_name} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id} |
| 599 | ... upstreamBandwidthProfile |
Girish Gowdra | d769b41 | 2021-05-16 11:09:46 -0700 | [diff] [blame] | 600 | ${limiting_bw_value_upstream} Get Limiting Bandwidth Details ${bandwidth_profile_name} |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 601 | ${bandwidth_profile_name} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id} |
| 602 | ... downstreamBandwidthProfile |
Girish Gowdra | d769b41 | 2021-05-16 11:09:46 -0700 | [diff] [blame] | 603 | ${limiting_bw_value_dnstream} Get Limiting Bandwidth Details ${bandwidth_profile_name} |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 604 | |
| 605 | # Stream UDP packets from RG to server |
Andrea Campanella | 1d34bfc | 2020-08-06 09:58:49 +0200 | [diff] [blame] | 606 | ${uprate}= Run Keyword If ${limiting_bw_value_upstream} != 1000000 |
| 607 | ... Evaluate ${limiting_bw_value_upstream}*${udp_rate_multiplier} |
Andrea Campanella | 29341a3 | 2020-08-03 22:06:26 +0200 | [diff] [blame] | 608 | ... ELSE |
Andrea Campanella | 1d34bfc | 2020-08-06 09:58:49 +0200 | [diff] [blame] | 609 | ... Set Variable ${limiting_bw_value_upstream} |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 610 | ${updict}= Run Iperf3 Test Client ${src} server=${dst['dp_iface_ip_qinq']} |
Andy Bavier | 7dc5062 | 2020-05-28 14:34:12 -0700 | [diff] [blame] | 611 | ... args=-u -b ${uprate}K -t 30 -l ${udp_packet_bytes} --pacing-timer 0 |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 612 | # With UDP test, bits per second is the sending rate. Multiply by the loss rate to get the throughput. |
| 613 | ${actual_upstream_bw_used}= Evaluate |
| 614 | ... (100 - ${updict['end']['sum']['lost_percent']})*${updict['end']['sum']['bits_per_second']}/100000 |
| 615 | |
| 616 | # Stream UDP packets from server to RG |
Andrea Campanella | 1d34bfc | 2020-08-06 09:58:49 +0200 | [diff] [blame] | 617 | ${dnrate}= Run Keyword If ${limiting_bw_value_dnstream} != 1000000 |
| 618 | ... Evaluate ${limiting_bw_value_dnstream}*${udp_rate_multiplier} |
Andrea Campanella | 29341a3 | 2020-08-03 22:06:26 +0200 | [diff] [blame] | 619 | ... ELSE |
Andrea Campanella | 1d34bfc | 2020-08-06 09:58:49 +0200 | [diff] [blame] | 620 | ... Set Variable ${limiting_bw_value_dnstream} |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 621 | ${dndict}= Run Iperf3 Test Client ${src} server=${dst['dp_iface_ip_qinq']} |
Andy Bavier | 7dc5062 | 2020-05-28 14:34:12 -0700 | [diff] [blame] | 622 | ... args=-u -b ${dnrate}K -R -t 30 -l ${udp_packet_bytes} --pacing-timer 0 |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 623 | # With UDP test, bits per second is the sending rate. Multiply by the loss rate to get the throughput. |
| 624 | ${actual_dnstream_bw_used}= Evaluate |
| 625 | ... (100 - ${dndict['end']['sum']['lost_percent']})*${dndict['end']['sum']['bits_per_second']}/100000 |
| 626 | |
| 627 | ${pct_limit_up}= Evaluate 100*${actual_upstream_bw_used}/${limiting_bw_value_upstream} |
| 628 | ${pct_limit_dn}= Evaluate 100*${actual_dnstream_bw_used}/${limiting_bw_value_dnstream} |
| 629 | Log Up: bwprof ${limiting_bw_value_upstream}Kbps, got ${actual_upstream_bw_used}Kbps (${pct_limit_up}%) |
| 630 | Log Down: bwprof ${limiting_bw_value_dnstream}Kbps, got ${actual_dnstream_bw_used}Kbps (${pct_limit_dn}%) |
| 631 | |
| 632 | Should Be True ${pct_limit_up} <= ${upper_margin_pct} |
| 633 | ... The upstream bandwidth exceeded the limit (${pct_limit_up}% of limit) |
Andy Bavier | eff938d | 2020-06-29 18:27:49 -0700 | [diff] [blame] | 634 | # VOL-3125: downstream bw limit not enforced. Uncomment when fixed. |
| 635 | #Should Be True ${pct_limit_dn} <= ${upper_margin_pct} |
| 636 | #... The downstream bandwidth exceeded the limit (${pct_limit_dn}% of limit) |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 637 | Should Be True ${pct_limit_up} >= ${lower_margin_pct} |
| 638 | ... The upstream bandwidth guarantee was not met (${pct_limit_up}% of resv) |
| 639 | Should Be True ${pct_limit_dn} >= ${lower_margin_pct} |
| 640 | ... The downstream bandwidth guarantee was not met (${pct_limit_dn}% of resv) |
| 641 | END |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 642 | |
Suraj Gour | 3365127 | 2020-05-04 10:10:16 +0530 | [diff] [blame] | 643 | Validate parsing of data traffic through voltha using tech profile |
| 644 | [Documentation] Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable |
| 645 | ... Prerequisite tools : Tcpdump and Mausezahn traffic generator on both RG and DHCP/BNG VMs |
| 646 | ... Install jq tool to read json file, where test suite is being running |
Girish Gowdra | bbfbbc3 | 2021-05-17 14:36:58 -0700 | [diff] [blame] | 647 | ... This test sends TCP packets with pbits between 0 and 7 and validates that |
Suraj Gour | 3365127 | 2020-05-04 10:10:16 +0530 | [diff] [blame] | 648 | ... the pbits are preserved by the PON. |
Hardik Windlass | 04d791e | 2021-07-12 16:23:13 +0000 | [diff] [blame] | 649 | [Tags] dataplane TechProfile VOL-2054 notready |
Suraj Gour | 3365127 | 2020-05-04 10:10:16 +0530 | [diff] [blame] | 650 | [Setup] Start Logging TechProfile |
| 651 | [Teardown] Run Keywords Collect Logs |
| 652 | ... AND Stop Logging TechProfile |
| 653 | Pass Execution If '${has_dataplane}'=='False' |
| 654 | ... Skipping test: Technology profile validation can be done only in physical pod |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 655 | FOR ${I} IN RANGE 0 ${num_all_onus} |
Suraj Gour | 3365127 | 2020-05-04 10:10:16 +0530 | [diff] [blame] | 656 | ${src}= Set Variable ${hosts.src[${I}]} |
| 657 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 658 | |
| 659 | ${bng_ip}= Get Variable Value ${dst['noroot_ip']} |
| 660 | ${bng_user}= Get Variable Value ${dst['noroot_user']} |
| 661 | ${bng_pass}= Get Variable Value ${dst['noroot_pass']} |
Andy Bavier | f4b7d1d | 2020-06-30 11:14:04 -0700 | [diff] [blame] | 662 | Pass Execution If "${bng_ip}" == "${NONE}" or "${bng_user}" == "${NONE}" or "${bng_pass}" == "${NONE}" |
Suraj Gour | 3365127 | 2020-05-04 10:10:16 +0530 | [diff] [blame] | 663 | ... Skipping test: credentials for BNG login required in deployment config |
| 664 | |
| 665 | ${stdout} ${stderr} ${rc}= Execute Remote Command which mausezahn tcpdump |
| 666 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 667 | Pass Execution If ${rc} != 0 Skipping test: mausezahn / tcpdump not found on the RG |
| 668 | ${stdout} ${stderr} ${rc}= Execute Remote Command which mausezahn tcpdump |
| 669 | ... ${bng_ip} ${bng_user} ${bng_pass} ${dst['container_type']} ${dst['container_name']} |
| 670 | Pass Execution If ${rc} != 0 Skipping test: mausezahn / tcpdump not found on the BNG |
| 671 | Log Upstream test |
Andy Bavier | eff938d | 2020-06-29 18:27:49 -0700 | [diff] [blame] | 672 | Run Keyword If ${has_dataplane} Create traffic with each pbit and capture at other end |
Suraj Gour | 3365127 | 2020-05-04 10:10:16 +0530 | [diff] [blame] | 673 | ... ${dst['dp_iface_ip_qinq']} ${dst['dp_iface_name']} ${src['dp_iface_name']} |
Girish Gowdra | 66cd95d | 2021-07-08 10:31:54 -0700 | [diff] [blame] | 674 | ... 0 tcp 0 ${src['s_tag']} upstream vlan |
Suraj Gour | 3365127 | 2020-05-04 10:10:16 +0530 | [diff] [blame] | 675 | ... ${bng_ip} ${bng_user} ${bng_pass} ${dst['container_type']} ${dst['container_name']} |
| 676 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 677 | Log Downstream test |
| 678 | ${rg_ip} ${stderr} ${rc}= Execute Remote Command |
| 679 | ... ifconfig ${src['dp_iface_name']} | grep 'inet addr:' | cut -d: -f2 | awk '{ print $1 }' |
| 680 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 681 | Should Be Equal As Integers ${rc} 0 Could not get RG's IP address |
Andy Bavier | eff938d | 2020-06-29 18:27:49 -0700 | [diff] [blame] | 682 | Run Keyword If ${has_dataplane} Create traffic with each pbit and capture at other end |
Girish Gowdra | 66cd95d | 2021-07-08 10:31:54 -0700 | [diff] [blame] | 683 | ... ${rg_ip} ${src['dp_iface_name']} ${dst['dp_iface_name']} |
| 684 | ... 0 tcp ${src['c_tag']} ${src['s_tag']} downstream tcp |
Suraj Gour | 3365127 | 2020-05-04 10:10:16 +0530 | [diff] [blame] | 685 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 686 | ... ${bng_ip} ${bng_user} ${bng_pass} ${dst['container_type']} ${dst['container_name']} |
| 687 | END |
| 688 | |
Hardik Windlass | 16cdf96 | 2020-04-29 15:26:50 +0530 | [diff] [blame] | 689 | Test Disable and Enable OLT PON Port |
| 690 | [Documentation] Validates E2E Ping Connectivity and object states for the given scenario: |
| 691 | ... Assuming that all the ONUs are DHCP/pingable (i.e. assuming sanityDt test was executed) |
| 692 | ... Perform disable on the OLT PON Port and validate that the pings do not succeed |
| 693 | ... Perform enable on the OLT PON Port and validate that the pings are successful |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 694 | [Tags] functional DisableEnableOltPonPort VOL-2577 multi-uni |
Hardik Windlass | 16cdf96 | 2020-04-29 15:26:50 +0530 | [diff] [blame] | 695 | [Setup] Run Keywords Start Logging DisableEnableOltPonPort |
Girish Gowdra | 8fd9696 | 2021-12-14 16:20:04 +0530 | [diff] [blame] | 696 | ... AND Run Keyword If ${has_dataplane} Set Non-Critical Tag for XGSPON Tech |
Hardik Windlass | 16cdf96 | 2020-04-29 15:26:50 +0530 | [diff] [blame] | 697 | ... AND Setup |
| 698 | [Teardown] Run Keywords Collect Logs |
Hardik Windlass | 41701e8 | 2021-01-12 17:44:44 +0000 | [diff] [blame] | 699 | ... AND Delete All Devices and Verify |
Girish Gowdra | f244d5b | 2021-09-01 17:16:16 -0700 | [diff] [blame] | 700 | ... AND Run Keyword If ${logging} Collect Logs |
| 701 | ... AND Stop Logging DisableEnableOltPonPort |
Hardik Windlass | 16cdf96 | 2020-04-29 15:26:50 +0530 | [diff] [blame] | 702 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 703 | Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test |
Hardik Windlass | 41701e8 | 2021-01-12 17:44:44 +0000 | [diff] [blame] | 704 | # Multi-OLTs |
| 705 | FOR ${I} IN RANGE 0 ${olt_count} |
| 706 | ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn |
| 707 | Disable Enable PON Port Per OLT ${olt_serial_number} |
Hardik Windlass | 16cdf96 | 2020-04-29 15:26:50 +0530 | [diff] [blame] | 708 | END |
| 709 | |
Gayathri.Selvan | 5d23e52 | 2020-09-15 17:26:25 +0530 | [diff] [blame] | 710 | Data plane Bandwidth profile update verification |
| 711 | [Documentation] Test bandwidth profile is updated for one subscriber and not changed for other subscribers. |
| 712 | ... Assumes iperf3 and jq installed on client and iperf -s running on DHCP server |
| 713 | ... Assumes Default and User_Bandwidth2 profiles are configured as bandwidth profiles |
| 714 | [Tags] non-critical dataplane BandwidthProfileUpdateTCP VOL-2053 |
| 715 | [Setup] Start Logging BandwidthProfileUpdateTCP |
| 716 | [Teardown] Run Keywords Collect Logs |
| 717 | ... AND Stop Logging BandwidthProfileUpdateTCP |
| 718 | ... AND Send File To Onos ${CURDIR}/../../tests/data/${POD_NAME}-sadis.json |
| 719 | Pass Execution If '${has_dataplane}'=='False' |
| 720 | ... Bandwidth profile validation can be done only in physical pod. Skipping this test in BBSIM. |
| 721 | Delete All Devices And Verify |
| 722 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 723 | Setup |
| 724 | Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test |
| 725 | # Update the Bandwidth Profile for the First Subscriber under test |
| 726 | ${src}= Set Variable ${hosts.src[${0}]} |
| 727 | ${dst}= Set Variable ${hosts.dst[${0}]} |
| 728 | ${of_id}= Get ofID From OLT List ${src['olt']} |
TorstenThieme | dda3765 | 2021-11-11 16:22:05 +0000 | [diff] [blame] | 729 | ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id} |
Gayathri.Selvan | 5d23e52 | 2020-09-15 17:26:25 +0530 | [diff] [blame] | 730 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
| 731 | ... ${of_id} ${src['uni_id']} |
| 732 | ${subscriber_id}= Set Variable ${of_id}/${onu_port} |
| 733 | ${oldBwName} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id} upstreamBandwidthProfile |
| 734 | # Delete the existing subscriber |
| 735 | Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} |
| 736 | ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port} |
| 737 | # Change the bandwidth profile and load the configuration |
Hardik Windlass | aa41bb4 | 2021-07-23 15:32:43 +0000 | [diff] [blame] | 738 | ${newBwName} Set Variable If ${oldBwName} == 'Default' 'User_Bandwidth2' 'Default' |
Gayathri.Selvan | 5d23e52 | 2020-09-15 17:26:25 +0530 | [diff] [blame] | 739 | ${cmd} Catenate |
| 740 | ... sed 's/upstreamBandwidthProfile": "${oldBwName}"/upstreamBandwidthProfile": "${newBwName}"/g' |
| 741 | ... ${CURDIR}/../../tests/data/${POD_NAME}-sadis.json > ${CURDIR}/../../tests/data/${POD_NAME}-sadis-new.json |
| 742 | ${rc} Run and Return RC ${cmd} |
| 743 | Send File To Onos ${CURDIR}/../../tests/data/${POD_NAME}-sadis-new.json |
| 744 | # Re-add the subscriber with new bandwidth profile |
| 745 | Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} |
| 746 | ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port} |
| 747 | # Verify that no pending flows exist for the ONU port |
| 748 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 749 | ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
| 750 | # Verify subscriber access flows are added for the ONU port |
| 751 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 752 | ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 753 | ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']} |
| 754 | # Verify Meters in ONOS |
| 755 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 756 | ... Verify Meters in ONOS ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} ${onu_port} |
| 757 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True |
| 758 | ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 759 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 760 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 761 | ... ${dst['container_name']} |
| 762 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 763 | ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
| 764 | # Verify new bandwidth profile is applied and other subscribers are working fine |
| 765 | ${checkBwName} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id} upstreamBandwidthProfile |
| 766 | Should Be Equal ${checkBwName} ${newBwName} The bandwidth profile is not updated properly |
| 767 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 768 | ${src}= Set Variable ${hosts.src[${I}]} |
| 769 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 770 | ${of_id}= Get ofID From OLT List ${src['olt']} |
| 771 | |
| 772 | # Check for iperf3 and jq tools |
| 773 | ${stdout} ${stderr} ${rc}= Execute Remote Command which iperf3 jq |
| 774 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 775 | Pass Execution If ${rc} != 0 Skipping test: iperf3 / jq not found on the RG |
| 776 | |
| 777 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
| 778 | ... ${of_id} ${src['uni_id']} |
| 779 | ${subscriber_id}= Set Variable ${of_id}/${onu_port} |
| 780 | ${bandwidth_profile_name} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id} |
| 781 | ... upstreamBandwidthProfile |
| 782 | ${limiting_bw_value_upstream} Get Limiting Bandwidth Details ${bandwidth_profile_name} |
| 783 | ${bandwidth_profile_name} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id} |
| 784 | ... downstreamBandwidthProfile |
| 785 | ${limiting_bw_value_dnstream} Get Limiting Bandwidth Details ${bandwidth_profile_name} |
| 786 | |
| 787 | # Stream TCP packets from RG to server |
| 788 | ${updict}= Run Iperf3 Test Client ${src} server=${dst['dp_iface_ip_qinq']} |
| 789 | ... args=-t 30 |
| 790 | ${actual_upstream_bw_used}= Evaluate ${updict['end']['sum_received']['bits_per_second']}/1000 |
| 791 | |
| 792 | # Stream TCP packets from server to RG |
| 793 | ${dndict}= Run Iperf3 Test Client ${src} server=${dst['dp_iface_ip_qinq']} |
| 794 | ... args=-R -t 30 |
| 795 | ${actual_dnstream_bw_used}= Evaluate ${dndict['end']['sum_received']['bits_per_second']}/1000 |
| 796 | |
| 797 | ${pct_limit_up}= Evaluate 100*${actual_upstream_bw_used}/${limiting_bw_value_upstream} |
| 798 | ${pct_limit_dn}= Evaluate 100*${actual_dnstream_bw_used}/${limiting_bw_value_dnstream} |
| 799 | Log Up: bwprof ${limiting_bw_value_upstream}Kbps, got ${actual_upstream_bw_used}Kbps (${pct_limit_up}%) |
| 800 | Log Down: bwprof ${limiting_bw_value_dnstream}Kbps, got ${actual_dnstream_bw_used}Kbps (${pct_limit_dn}%) |
| 801 | |
| 802 | Should Be True ${pct_limit_up} <= ${upper_margin_pct} |
| 803 | ... The upstream bandwidth exceeded the limit (${pct_limit_up}% of limit) |
| 804 | # VOL-3125: downstream bw limit not enforced. Uncomment when fixed. |
| 805 | #Should Be True ${pct_limit_dn} <= ${upper_margin_pct} |
| 806 | #... The downstream bandwidth exceeded the limit (${pct_limit_dn}% of limit) |
| 807 | Should Be True ${pct_limit_up} >= ${lower_margin_pct} |
| 808 | ... The upstream bandwidth guarantee was not met (${pct_limit_up}% of resv) |
| 809 | Should Be True ${pct_limit_dn} >= ${lower_margin_pct} |
| 810 | ... The downstream bandwidth guarantee was not met (${pct_limit_dn}% of resv) |
| 811 | END |
| 812 | |
Hardik Windlass | b75cf1b | 2021-01-18 06:59:09 +0000 | [diff] [blame] | 813 | Test ONU Delete and Auto-Discovery |
| 814 | [Documentation] Tests the voltctl delete and Auto-Discovery of the ONU |
| 815 | [Tags] functional VOL-3098 ONUAutoDiscovery notready |
| 816 | [Setup] Run Keywords Start Logging ONUAutoDiscovery |
| 817 | ... AND Setup |
| 818 | [Teardown] Run Keywords Collect Logs |
| 819 | ... AND Delete All Devices and Verify |
| 820 | ... AND Run Keyword If ${logging} Collect Logs |
| 821 | ... AND Stop Logging ONUAutoDiscovery |
| 822 | # Performing Sanity Test to make sure subscribers are all AUTH+DHCP and pingable |
| 823 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 824 | Perform Sanity Test |
| 825 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 826 | ${src}= Set Variable ${hosts.src[${I}]} |
| 827 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 828 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 829 | ${of_id}= Get ofID From OLT List ${src['olt']} |
| 830 | ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id} |
| 831 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s |
| 832 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
| 833 | # Remove Subscriber Access (To replicate ATT workflow) |
| 834 | Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
| 835 | ... volt-remove-subscriber-access ${of_id} ${onu_port} |
| 836 | # Additional sleep to let subscriber delete process |
| 837 | Sleep 10s |
| 838 | # Delete ONU and Verify Ping Fails |
| 839 | Delete Device ${onu_device_id} |
| 840 | Run Keyword If ${has_dataplane} Verify ping is successful except for given device |
| 841 | ... ${num_all_onus} ${src['onu']} |
| 842 | # Verify that no pending flows exist for the ONU port |
| 843 | Wait Until Keyword Succeeds ${timeout} 2s |
| 844 | ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
| 845 | # ONU Auto-Discovery |
| 846 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s |
| 847 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} ${src['uni_id']} |
| 848 | # Check ONU port is Enabled in ONOS |
| 849 | Wait Until Keyword Succeeds ${timeout} 2s |
| 850 | ... Verify UNI Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']} ${src['uni_id']} |
| 851 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 852 | Run Keyword If ${has_dataplane} Clean Up Linux ${onu_device_id} |
| 853 | # Verify default EAPOL flows are added for the ONU port |
| 854 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 855 | ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} ${onu_port} |
| 856 | # Verify ONU state in voltha |
| 857 | Wait Until Keyword Succeeds ${timeout} 5s Validate Device ENABLED ACTIVE REACHABLE |
| 858 | ... ${src['onu']} onu=True onu_reason=omci-flows-pushed |
| 859 | # Perform Authentication |
| 860 | ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=. |
| 861 | ... /tmp/wpa ${src['dp_iface_name']} log |
| 862 | Run Keyword If ${has_dataplane} Validate Authentication True |
| 863 | ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']} |
| 864 | ... ${src['container_type']} ${src['container_name']} ${wpa_log} |
| 865 | Wait Until Keyword Succeeds ${timeout} 2 |
| 866 | ... Verify ONU in AAA-Users ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
| 867 | Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
| 868 | ... volt-add-subscriber-access ${of_id} ${onu_port} |
| 869 | # Verify that no pending flows exist for the ONU port |
| 870 | Wait Until Keyword Succeeds ${timeout} 2s |
| 871 | ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
| 872 | # Verify subscriber access flows are added for the ONU port |
| 873 | Wait Until Keyword Succeeds ${timeout} 5s |
| 874 | ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 875 | ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']} |
| 876 | # Verify subscriber EAPOL flow is installed |
| 877 | Wait Until Keyword Succeeds ${timeout} 5s |
| 878 | ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 879 | ... ${onu_port} ${src['c_tag']} |
| 880 | # Verify Meters in ONOS |
| 881 | Wait Until Keyword Succeeds ${timeout} 5s |
| 882 | ... Verify Meters in ONOS ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} ${onu_port} |
| 883 | Run Keyword If ${has_dataplane} Validate DHCP and Ping True |
| 884 | ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 885 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 886 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 887 | ... ${dst['container_name']} |
| 888 | Wait Until Keyword Succeeds ${timeout} 2s |
| 889 | ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
| 890 | END |
| 891 | |
Suchitra Vemuri | 65cd65f | 2019-08-30 14:39:22 -0700 | [diff] [blame] | 892 | *** Keywords *** |
| 893 | Setup Suite |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 894 | [Documentation] Set up the test suite |
| 895 | Common Test Suite Setup |
Hung-Wei Chiu | cc6e655 | 2020-06-04 12:57:38 -0700 | [diff] [blame] | 896 | #Restore all ONUs |
Suchitra Vemuri | a6879aa | 2020-11-03 11:03:11 -0800 | [diff] [blame] | 897 | #Run Keyword If ${has_dataplane} RestoreONUs ${num_all_onus} |
Suchitra Vemuri | 1d8e817 | 2020-06-17 17:43:56 -0700 | [diff] [blame] | 898 | #power_switch.robot needs it to support different vendor's power switch |
| 899 | ${switch_type}= Get Variable Value ${web_power_switch.type} |
| 900 | Run Keyword If "${switch_type}"!="" Set Global Variable ${powerswitch_type} ${switch_type} |
Suchitra Vemuri | 65cd65f | 2019-08-30 14:39:22 -0700 | [diff] [blame] | 901 | |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 902 | Clear All Devices Then Create New Device |
| 903 | [Documentation] Remove any devices from VOLTHA and ONOS |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 904 | # Remove all devices from voltha and nos |
| 905 | Delete All Devices and Verify |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 906 | # Execute normal test Setup Keyword |
| 907 | Setup |