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 | 65cd65f | 2019-08-30 14:39:22 -0700 | [diff] [blame] | 34 | |
| 35 | *** Variables *** |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 36 | ${POD_NAME} flex-ocp-cord |
| 37 | ${KUBERNETES_CONF} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.conf |
| 38 | ${KUBERNETES_CONFIGS_DIR} ~/pod-configs/kubernetes-configs |
| 39 | #${KUBERNETES_CONFIGS_DIR} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.conf |
| 40 | ${KUBERNETES_YAML} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.yml |
| 41 | ${HELM_CHARTS_DIR} ~/helm-charts |
| 42 | ${VOLTHA_POD_NUM} 8 |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 43 | ${NAMESPACE} voltha |
suraj gour | d64356b | 2019-11-07 13:26:20 +0000 | [diff] [blame] | 44 | # For below variable value, using deployment name as using grep for |
| 45 | # parsing radius pod name, we can also use full radius pod name |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 46 | ${RESTART_POD_NAME} radius |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 47 | ${timeout} 60s |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 48 | ${of_id} 0 |
| 49 | ${logical_id} 0 |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 50 | ${has_dataplane} True |
| 51 | ${external_libs} True |
| 52 | ${teardown_device} False |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 53 | ${scripts} ../../scripts |
Suchitra Vemuri | 65cd65f | 2019-08-30 14:39:22 -0700 | [diff] [blame] | 54 | |
| 55 | *** Test Cases *** |
| 56 | Sanity E2E Test for OLT/ONU on POD |
| 57 | [Documentation] Validates E2E Ping Connectivity and object states for the given scenario: |
| 58 | ... 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] | 59 | [Tags] sanity test1 |
Suchitra Vemuri | 6db8941 | 2019-11-14 14:52:54 -0800 | [diff] [blame] | 60 | [Teardown] NONE |
Suchitra Vemuri | c5295a3 | 2019-12-15 20:32:04 -0800 | [diff] [blame] | 61 | Run Keyword If ${has_dataplane} Clean Up Linux |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 62 | Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test |
Suchitra Vemuri | 582574b | 2019-12-10 21:11:54 -0800 | [diff] [blame] | 63 | Run Keyword and Ignore Error Collect Logs |
Suchitra Vemuri | 65cd65f | 2019-08-30 14:39:22 -0700 | [diff] [blame] | 64 | |
Suchitra Vemuri | 6db8941 | 2019-11-14 14:52:54 -0800 | [diff] [blame] | 65 | Test Disable and Enable ONU |
| 66 | [Documentation] Validates E2E Ping Connectivity and object states for the given scenario: |
| 67 | ... Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable |
| 68 | ... Perform disable on the ONUs and validate that the pings do not succeed |
| 69 | ... Perform enable on the ONUs and validate that the pings are successful |
Suchitra Vemuri | 04245f7 | 2020-01-08 16:43:24 -0800 | [diff] [blame] | 70 | [Tags] functional DisableEnableONU released |
Suchitra Vemuri | 6db8941 | 2019-11-14 14:52:54 -0800 | [diff] [blame] | 71 | [Setup] None |
suraj gour | 7f6d5fe | 2019-11-29 10:56:35 +0000 | [diff] [blame] | 72 | [Teardown] None |
Suchitra Vemuri | 6db8941 | 2019-11-14 14:52:54 -0800 | [diff] [blame] | 73 | FOR ${I} IN RANGE 0 ${num_onus} |
| 74 | ${src}= Set Variable ${hosts.src[${I}]} |
| 75 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Suchitra Vemuri | 6db8941 | 2019-11-14 14:52:54 -0800 | [diff] [blame] | 76 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 77 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
| 78 | ... ${of_id} |
| 79 | Disable Device ${onu_device_id} |
Suchitra Vemuri | 15e1525 | 2020-01-20 17:38:49 -0800 | [diff] [blame^] | 80 | #Test Devices Disabled in VOLTHA Id=${onu_device_id} |
Andy Bavier | 33e6dd3 | 2020-01-16 13:35:20 -0700 | [diff] [blame] | 81 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 82 | ... Wait Until Keyword Succeeds 60s 2s |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 83 | ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 84 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
Suchitra Vemuri | 6db8941 | 2019-11-14 14:52:54 -0800 | [diff] [blame] | 85 | Enable Device ${onu_device_id} |
| 86 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 87 | ... Validate Subscriber DHCP Allocation ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port} |
Andy Bavier | 33e6dd3 | 2020-01-16 13:35:20 -0700 | [diff] [blame] | 88 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 89 | ... Wait Until Keyword Succeeds 60s 2s |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 90 | ... Check Ping True ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 91 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 92 | Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id} |
| 93 | Run Keyword and Ignore Error Collect Logs |
Suchitra Vemuri | 6db8941 | 2019-11-14 14:52:54 -0800 | [diff] [blame] | 94 | END |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 95 | Run Keyword and Ignore Error Collect Logs |
Suchitra Vemuri | 6db8941 | 2019-11-14 14:52:54 -0800 | [diff] [blame] | 96 | |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 97 | Test Subscriber Delete and Add |
| 98 | [Documentation] Validates E2E Ping Connectivity and object states for the given scenario: |
| 99 | ... Assuming that all the ONUs are authenticated/DHCP/pingable |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 100 | ... Delete a subscriber and validate that the pings do not succeed |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 101 | ... Re-add the subscriber and validate that the pings are successful |
Suchitra Vemuri | 04245f7 | 2020-01-08 16:43:24 -0800 | [diff] [blame] | 102 | [Tags] functional SubAddDelete released |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 103 | [Setup] None |
| 104 | [Teardown] None |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 105 | FOR ${I} IN RANGE 0 ${num_onus} |
| 106 | ${src}= Set Variable ${hosts.src[${I}]} |
| 107 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 108 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 109 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
| 110 | ... ${of_id} |
| 111 | Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command ${k8s_node_ip} |
| 112 | ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port} |
| 113 | Sleep 10s |
Andy Bavier | 33e6dd3 | 2020-01-16 13:35:20 -0700 | [diff] [blame] | 114 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 115 | ... Wait Until Keyword Succeeds 60s 2s |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 116 | ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 117 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 118 | Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command ${k8s_node_ip} |
| 119 | ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port} |
| 120 | Sleep 10s |
| 121 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 122 | ... Validate Subscriber DHCP Allocation ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port} |
Andy Bavier | 33e6dd3 | 2020-01-16 13:35:20 -0700 | [diff] [blame] | 123 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 124 | ... Wait Until Keyword Succeeds 60s 2s |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 125 | ... Check Ping True ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 126 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 127 | Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id} |
| 128 | Run Keyword and Ignore Error Collect Logs |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 129 | END |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 130 | Run Keyword and Ignore Error Collect Logs |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 131 | |
suraj gour | d64356b | 2019-11-07 13:26:20 +0000 | [diff] [blame] | 132 | Check OLT/ONU Authentication After Radius Pod Restart |
suraj gour | 7f6d5fe | 2019-11-29 10:56:35 +0000 | [diff] [blame] | 133 | [Documentation] After radius restart, triggers reassociation, checks status and |
| 134 | ... authentication, validates dhcp and ping. Note : wpa reassociate works only when |
| 135 | ... wpa supplicant is running in background hence it is recommended to remove |
| 136 | ... teardown from previous test or uncomment 'Teardown None'. |
| 137 | ... Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable |
Suchitra Vemuri | 04245f7 | 2020-01-08 16:43:24 -0800 | [diff] [blame] | 138 | [Tags] functional RadiusRestart released |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 139 | [Setup] None |
| 140 | [Teardown] None |
suraj gour | d64356b | 2019-11-07 13:26:20 +0000 | [diff] [blame] | 141 | Wait Until Keyword Succeeds ${timeout} 15s Restart Pod ${NAMESPACE} ${RESTART_POD_NAME} |
suraj gour | d64356b | 2019-11-07 13:26:20 +0000 | [diff] [blame] | 142 | FOR ${I} IN RANGE 0 ${num_onus} |
| 143 | ${src}= Set Variable ${hosts.src[${I}]} |
| 144 | ${dst}= Set Variable ${hosts.dst[${I}]} |
suraj gour | d64356b | 2019-11-07 13:26:20 +0000 | [diff] [blame] | 145 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 146 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s |
| 147 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
| 148 | Wait Until Keyword Succeeds ${timeout} 2s |
| 149 | ... Verify Eapol Flows Added For ONU ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port} |
| 150 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 151 | ... Validate Authentication After Reassociate True ${src['dp_iface_name']} |
| 152 | ... ${src['ip']} ${src['user']} ${src['pass']} |
suraj gour | d64356b | 2019-11-07 13:26:20 +0000 | [diff] [blame] | 153 | ... ${src['container_type']} ${src['container_name']} |
| 154 | Wait Until Keyword Succeeds ${timeout} 2s Verify ONU in AAA-Users ${k8s_node_ip} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 155 | ... ${ONOS_SSH_PORT} ${onu_port} |
| 156 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 157 | ... Validate DHCP and Ping True True ${src['dp_iface_name']} |
| 158 | ... ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 159 | ... ${src['ip']} ${src['user']} ${src['pass']} |
| 160 | ... ${src['container_type']} ${src['container_name']} |
| 161 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} |
| 162 | ... ${dst['pass']} ${dst['container_type']} ${dst['container_name']} |
suraj gour | d64356b | 2019-11-07 13:26:20 +0000 | [diff] [blame] | 163 | Wait Until Keyword Succeeds ${timeout} 2s Run Keyword And Continue On Failure |
| 164 | ... Validate Subscriber DHCP Allocation ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 165 | Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id} |
| 166 | Run Keyword and Ignore Error Collect Logs |
suraj gour | d64356b | 2019-11-07 13:26:20 +0000 | [diff] [blame] | 167 | END |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 168 | Run Keyword and Ignore Error Collect Logs |
suraj gour | d64356b | 2019-11-07 13:26:20 +0000 | [diff] [blame] | 169 | |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 170 | Check DHCP attempt fails when subscriber is not added |
| 171 | [Documentation] Validates when removed subscriber access, DHCP attempt, ping fails and |
| 172 | ... when again added subscriber access, DHCP attempt, ping succeeds |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 173 | ... Assuming that test1 or sanity test was executed where all the ONUs are authenticated/DHCP/pingable |
Suchitra Vemuri | 04245f7 | 2020-01-08 16:43:24 -0800 | [diff] [blame] | 174 | [Tags] functional SubsRemoveDHCP released |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 175 | [Setup] None |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 176 | [Teardown] None |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 177 | FOR ${I} IN RANGE 0 ${num_onus} |
| 178 | ${src}= Set Variable ${hosts.src[${I}]} |
| 179 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 180 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 181 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
| 182 | ... ${of_id} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 183 | Run Keyword And Ignore Error Login And Run Command On Remote System killall dhclient ${src['ip']} |
| 184 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 185 | Run Keyword And Ignore Error Login And Run Command On Remote System ps -ef | grep dhclient ${src['ip']} |
| 186 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 187 | Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command ${k8s_node_ip} |
| 188 | ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 189 | Sleep 5s |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 190 | Run Keyword And Ignore Error Login And Run Command On Remote System ps -ef | grep dhclient ${src['ip']} |
| 191 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 192 | Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds ${timeout} 2s |
| 193 | ... Delete IP Addresses from Interface on Remote Host ${src['dp_iface_name']} ${src['ip']} |
| 194 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 195 | Run Keyword And Ignore Error Login And Run Command On Remote System |
| 196 | ... ifconfig | grep -A 10 ens ${src['ip']} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 197 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 198 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping False |
| 199 | ... False ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 200 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 201 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 202 | ... ${dst['container_name']} |
| 203 | Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command ${k8s_node_ip} |
| 204 | ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port} |
| 205 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True |
| 206 | ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 207 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 208 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 209 | ... ${dst['container_name']} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 210 | Run Keyword and Ignore Error Collect Logs |
| 211 | END |
| 212 | Run Keyword and Ignore Error Collect Logs |
| 213 | |
suraj gour | 1ecfae9 | 2019-12-20 15:11:40 +0000 | [diff] [blame] | 214 | Check ONU adapter crash not forcing authentication again |
| 215 | [Documentation] After ONU adapter restart, checks wpa log for 'authentication started' |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 216 | ... message count to make sure auth not started again and validates EAP status and ping. |
suraj gour | 1ecfae9 | 2019-12-20 15:11:40 +0000 | [diff] [blame] | 217 | ... Assuming that test1 or sanity was executed where all the ONUs are authenticated/DHCP/pingable |
Suchitra Vemuri | 04245f7 | 2020-01-08 16:43:24 -0800 | [diff] [blame] | 218 | [Tags] functional ONUAdaptCrash notready |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 219 | [Setup] None |
| 220 | [Teardown] None |
suraj gour | 1ecfae9 | 2019-12-20 15:11:40 +0000 | [diff] [blame] | 221 | @{before_list}= Create List |
| 222 | @{after_list}= Create List |
| 223 | FOR ${I} IN RANGE 0 ${num_onus} |
| 224 | ${src}= Set Variable ${hosts.src[${I}]} |
| 225 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 226 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 227 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
| 228 | ... ${of_id} |
| 229 | ${before}= Run Keyword If ${has_dataplane} Check Remote File Contents For WPA Logs |
| 230 | ... True /tmp/wpa.log authentication started ${src['ip']} ${src['user']} ${src['pass']} |
| 231 | ... ${src['container_type']} ${src['container_name']} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 232 | Append To List ${before_list} ${before} |
suraj gour | 1ecfae9 | 2019-12-20 15:11:40 +0000 | [diff] [blame] | 233 | END |
| 234 | Wait Until Keyword Succeeds ${timeout} 15s Restart Pod ${NAMESPACE} adapter-open-onu |
| 235 | Wait Until Keyword Succeeds ${timeout} 2s Validate Pod Status ${podName} ${NAMESPACE} |
| 236 | ... Running |
| 237 | FOR ${I} IN RANGE 0 ${num_onus} |
| 238 | ${src}= Set Variable ${hosts.src[${I}]} |
| 239 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 240 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 241 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
| 242 | ... ${of_id} |
| 243 | ${after}= Run Keyword If ${has_dataplane} Check Remote File Contents For WPA Logs |
| 244 | ... True /tmp/wpa.log authentication started ${src['ip']} ${src['user']} ${src['pass']} |
| 245 | ... ${src['container_type']} ${src['container_name']} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 246 | Append To List ${after_list} ${after} |
| 247 | ${output}= Run Keyword If ${has_dataplane} Login And Run Command On Remote System |
| 248 | ... wpa_cli status | grep SUCCESS ${src['ip']} ${src['user']} ${src['pass']} |
| 249 | ... ${src['container_type']} ${src['container_name']} |
Andy Bavier | 33e6dd3 | 2020-01-16 13:35:20 -0700 | [diff] [blame] | 250 | Run Keyword If ${has_dataplane} Should Contain ${output} SUCCESS |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 251 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 252 | ... Wait Until Keyword Succeeds 60s 2s Check Ping |
suraj gour | 1ecfae9 | 2019-12-20 15:11:40 +0000 | [diff] [blame] | 253 | ... True ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} ${src['ip']} ${src['user']} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 254 | ... ${src['pass']} ${src['container_type']} ${src['container_name']} |
suraj gour | 1ecfae9 | 2019-12-20 15:11:40 +0000 | [diff] [blame] | 255 | END |
| 256 | Lists Should Be Equal ${after_list} ${before_list} |
| 257 | Log ${after_list} |
| 258 | Log ${before_list} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 259 | Run Keyword and Ignore Error Collect Logs |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 260 | |
| 261 | Test Disable and Enable ONU scenario for ATT workflow |
| 262 | [Documentation] Validates E2E Ping Connectivity and object states for the given scenario: |
| 263 | ... Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable |
| 264 | ... 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] | 265 | ... Perform enable on the ONUs, authentication check, volt-add-subscriber-access and |
| 266 | ... validate that the pings are successful |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 267 | ... VOL-2284 |
Suchitra Vemuri | 04245f7 | 2020-01-08 16:43:24 -0800 | [diff] [blame] | 268 | [Tags] functional ATT_DisableEnableONU |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 269 | [Setup] None |
| 270 | #[Teardown] None |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 271 | FOR ${I} IN RANGE 0 ${num_onus} |
| 272 | ${src}= Set Variable ${hosts.src[${I}]} |
| 273 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 274 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 275 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
| 276 | ... ${of_id} |
| 277 | Disable Device ${onu_device_id} |
Suchitra Vemuri | 04245f7 | 2020-01-08 16:43:24 -0800 | [diff] [blame] | 278 | Sleep 5s |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 279 | Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command ${k8s_node_ip} |
| 280 | ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 281 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 282 | ... Wait Until Keyword Succeeds 60s 2s Check Ping |
| 283 | ... False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 284 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 285 | ... ELSE sleep 60s |
| 286 | Enable Device ${onu_device_id} |
| 287 | Wait Until Keyword Succeeds ${timeout} 2s Verify Eapol Flows Added For ONU ${k8s_node_ip} |
| 288 | ... ${ONOS_SSH_PORT} ${onu_port} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 289 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 290 | ... Validate Authentication After Reassociate True |
| 291 | ... ${src['dp_iface_name']} ${src['ip']} ${src['user']} ${src['pass']} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 292 | ... ${src['container_type']} ${src['container_name']} |
| 293 | Wait Until Keyword Succeeds ${timeout} 2s Verify ONU in AAA-Users ${k8s_node_ip} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 294 | ... ${ONOS_SSH_PORT} ${onu_port} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 295 | Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command ${k8s_node_ip} |
| 296 | ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port} |
| 297 | Sleep 10s |
| 298 | 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] | 299 | ... 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] | 300 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 301 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 302 | ... ${dst['container_name']} |
| 303 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 304 | ... Validate Subscriber DHCP Allocation ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port} |
Suchitra Vemuri | 5994cd1 | 2019-12-17 22:20:55 -0800 | [diff] [blame] | 305 | Run Keyword and Ignore Error Collect Logs |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 306 | END |
| 307 | Run Keyword and Ignore Error Collect Logs |
| 308 | |
Gayathri.Selvan | 4939896 | 2020-01-13 07:19:12 +0000 | [diff] [blame] | 309 | Verify restart any container after VOLTHA is operational |
| 310 | [Documentation] Restart any container after VOLTHA is operational. |
| 311 | ... Prerequisite : ONUs are authenticated and pingable. |
Suchitra Vemuri | d1e2b71 | 2020-01-13 23:06:22 -0800 | [diff] [blame] | 312 | [Tags] functional VOL-1958 RestartPods |
Gayathri.Selvan | 4939896 | 2020-01-13 07:19:12 +0000 | [diff] [blame] | 313 | [Setup] NONE |
| 314 | [Teardown] NONE |
| 315 | ${waitforRestart} Set Variable 120s |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 316 | ${podStatusOutput}= Run kubectl get pods -n ${NAMESPACE} |
Gayathri.Selvan | 4939896 | 2020-01-13 07:19:12 +0000 | [diff] [blame] | 317 | Log ${podStatusOutput} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 318 | ${countBforRestart}= Run kubectl get pods -n ${NAMESPACE} | grep Running | wc -l |
Gayathri.Selvan | 4939896 | 2020-01-13 07:19:12 +0000 | [diff] [blame] | 319 | ${podName} Set Variable adapter-open-olt |
| 320 | Restart Pod ${NAMESPACE} ${podName} |
| 321 | Wait Until Keyword Succeeds ${waitforRestart} 2s Validate Pod Status ${podName} ${NAMESPACE} |
| 322 | ... Running |
| 323 | Repeat Sanity Test |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 324 | ${podStatusOutput}= Run kubectl get pods -n ${NAMESPACE} |
Gayathri.Selvan | 4939896 | 2020-01-13 07:19:12 +0000 | [diff] [blame] | 325 | Log ${podStatusOutput} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 326 | ${countAfterRestart}= Run kubectl get pods -n ${NAMESPACE} | grep Running | wc -l |
Gayathri.Selvan | 4939896 | 2020-01-13 07:19:12 +0000 | [diff] [blame] | 327 | Should Be Equal As Strings ${countAfterRestart} ${countBforRestart} |
Gayathri.Selvan | 4939896 | 2020-01-13 07:19:12 +0000 | [diff] [blame] | 328 | |
Suchitra Vemuri | 937cd39 | 2020-01-12 17:10:42 -0800 | [diff] [blame] | 329 | Delete OLT, ReAdd OLT and Perform Sanity Test |
| 330 | [Documentation] Validates E2E Ping Connectivity and object states for the given scenario: |
| 331 | ... Disable and Delete the OLT |
| 332 | ... Create/Enable the same OLT again |
| 333 | ... Validate authentication/DHCP/E2E pings succeed for all the ONUs connected to the OLT |
| 334 | [Tags] functional DeleteOLT |
| 335 | [Setup] None |
| 336 | [Teardown] NONE |
| 337 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 338 | Run Keyword If ${has_dataplane} Delete Device and Verify |
| 339 | Run Keyword and Ignore Error Collect Logs |
| 340 | # Recreate the OLT |
| 341 | Run Keyword If ${has_dataplane} Setup |
| 342 | Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test |
| 343 | Run Keyword and Ignore Error Collect Logs |
| 344 | |
Gayathri.Selvan | 9188ea5 | 2020-01-17 11:56:54 +0000 | [diff] [blame] | 345 | Adding the same OLT before enabling the device |
| 346 | [Documentation] Create OLT, Create the same OLT again and Check for the Error message |
| 347 | [Tags] VOL-2405 AddSameOLT notready |
| 348 | [Setup] Delete Device and Verify |
| 349 | [Teardown] Enable Device ${olt_device_id} |
| 350 | Run Keyword If ${has_dataplane} Sleep 180s |
| 351 | ${olt_device_id}= Create Device ${olt_ip} ${OLT_PORT} |
| 352 | Set Suite Variable ${olt_device_id} |
| 353 | Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device PREPROVISIONED UNKNOWN UNKNOWN |
| 354 | ... ${EMPTY} ${olt_device_id} |
| 355 | ${rc} ${output}= Run and Return Rc and Output |
| 356 | ... ${VOLTCTL_CONFIG}; voltctl device create -t openolt -H ${olt_ip}:${OLT_PORT} |
| 357 | Should Not Be Equal As Integers ${rc} 0 |
| 358 | Should Contain ${output} Device is already pre-provisioned |
| 359 | |
Hema | e6d223d | 2019-12-30 19:21:26 +0530 | [diff] [blame] | 360 | Adding the same OLT after enabling the device |
| 361 | [Documentation] Create OLT, enable it, Create the same OLT again and Check for the Error message |
Suchitra Vemuri | c9f2bc9 | 2020-01-16 21:21:08 -0800 | [diff] [blame] | 362 | [Tags] VOL-2406 AddEnableOLT_AddTheSameOLTAgain functional |
Hema | e6d223d | 2019-12-30 19:21:26 +0530 | [diff] [blame] | 363 | [Setup] Delete Device and Verify |
| 364 | [Teardown] None |
| 365 | Run Keyword If ${has_dataplane} Sleep 180s |
Hema | e6d223d | 2019-12-30 19:21:26 +0530 | [diff] [blame] | 366 | ${olt_device_id}= Create Device ${olt_ip} ${OLT_PORT} |
| 367 | Set Suite Variable ${olt_device_id} |
Hema | e6d223d | 2019-12-30 19:21:26 +0530 | [diff] [blame] | 368 | Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device PREPROVISIONED UNKNOWN UNKNOWN |
| 369 | ... ${EMPTY} ${olt_device_id} |
| 370 | #Enable the created OLT device |
| 371 | Enable Device ${olt_device_id} |
| 372 | Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device ENABLED ACTIVE REACHABLE |
| 373 | ... ${olt_serial_number} |
Hema | e6d223d | 2019-12-30 19:21:26 +0530 | [diff] [blame] | 374 | ${rc} ${output}= Run and Return Rc and Output |
| 375 | ... ${VOLTCTL_CONFIG}; voltctl device create -t openolt -H ${olt_ip}:${OLT_PORT} |
| 376 | Should Not Be Equal As Integers ${rc} 0 |
| 377 | Log ${output} |
Suchitra Vemuri | 1ef4126 | 2020-01-17 15:00:45 -0800 | [diff] [blame] | 378 | Should Contain ${output} Device is already pre-provisioned |
Hema | e6d223d | 2019-12-30 19:21:26 +0530 | [diff] [blame] | 379 | Log "This OLT is added already and enabled" |
| 380 | |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 381 | Sanity E2E Test for OLT/ONU on POD With Core Fail and Restart |
| 382 | [Documentation] Deploys an device instance and waits for it to authenticate. After |
| 383 | ... authentication is successful the rw-core deployment is scaled to 0 instances to |
| 384 | ... simulate a POD crash. The test then scales the rw-core back to a single instance |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 385 | ... and configures ONOS for access. The test succeeds if the device is able to |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 386 | ... complete the DHCP sequence. |
| 387 | [Tags] bbsim rwcore-restart |
| 388 | [Setup] Clear All Devices Then Create New Device |
| 389 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number} |
| 390 | Set Global Variable ${of_id} |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 391 | FOR ${I} IN RANGE 0 ${num_onus} |
| 392 | ${src}= Set Variable ${hosts.src[${I}]} |
| 393 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 394 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 395 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
| 396 | ... ${of_id} |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 397 | # Bring up the device and verify it authenticates |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 398 | Wait Until Keyword Succeeds ${timeout} 5s Validate Device ENABLED ACTIVE REACHABLE |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 399 | ... ${onu_device_id} onu=True onu_reason=omci-flows-pushed |
| 400 | Wait Until Keyword Succeeds ${timeout} 2s Verify Eapol Flows Added For ONU ${k8s_node_ip} |
| 401 | ... ${ONOS_SSH_PORT} ${onu_port} |
| 402 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True |
| 403 | ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']} |
| 404 | ... ${src['container_type']} ${src['container_name']} |
| 405 | Wait Until Keyword Succeeds ${timeout} 2s Verify ONU in AAA-Users ${k8s_node_ip} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 406 | ... ${ONOS_SSH_PORT} ${onu_port} |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 407 | # Scale down the rw-core deployment to 0 PODs and once confirmed, scale it back to 1 |
| 408 | Scale K8s Deployment voltha voltha-rw-core 0 |
| 409 | Wait Until Keyword Succeeds ${timeout} 2s Pod Does Not Exist voltha voltha-rw-core |
| 410 | # Ensure the ofagent POD goes "not-ready" as expected |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 411 | Wait Until keyword Succeeds ${timeout} 2s |
| 412 | ... Check Expected Available Deployment Replicas voltha voltha-ofagent 0 |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 413 | # Scale up the core deployment and make sure both it and the ofagent deployment are back |
| 414 | Scale K8s Deployment voltha voltha-rw-core 1 |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 415 | Wait Until Keyword Succeeds ${timeout} 2s |
| 416 | ... Check Expected Available Deployment Replicas voltha voltha-rw-core 1 |
| 417 | Wait Until Keyword Succeeds ${timeout} 2s |
| 418 | ... Check Expected Available Deployment Replicas voltha voltha-ofagent 1 |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 419 | # For some reason scaling down and up the POD behind a service causes the port forward to stop working, |
| 420 | # so restart the port forwarding for the API service |
| 421 | Restart VOLTHA Port Foward voltha-api-minimal |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 422 | # Ensure that the ofagent pod is up and ready and the device is available in ONOS, this |
| 423 | # represents system connectivity being restored |
| 424 | Wait Until Keyword Succeeds ${timeout} 2s Device Is Available In ONOS |
| 425 | ... http://karaf:karaf@${k8s_node_ip}:${ONOS_REST_PORT} ${of_id} |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 426 | # Add subscriber access and verify that DHCP completes to ensure system is still functioning properly |
| 427 | Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command ${k8s_node_ip} |
| 428 | ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port} |
| 429 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True |
| 430 | ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 431 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 432 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 433 | ... ${dst['container_name']} |
| 434 | Wait Until Keyword Succeeds ${timeout} 2s Run Keyword And Continue On Failure |
| 435 | ... Validate Subscriber DHCP Allocation ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port} |
| 436 | END |
| 437 | |
Suchitra Vemuri | 65cd65f | 2019-08-30 14:39:22 -0700 | [diff] [blame] | 438 | *** Keywords *** |
| 439 | Setup Suite |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 440 | [Documentation] Set up the test suite |
| 441 | Common Test Suite Setup |
Suchitra Vemuri | 65cd65f | 2019-08-30 14:39:22 -0700 | [diff] [blame] | 442 | |
| 443 | Setup |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 444 | [Documentation] Pre-test Setup |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 445 | #test for empty device list |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 446 | Test Empty Device List |
Suchitra Vemuri | 937cd39 | 2020-01-12 17:10:42 -0800 | [diff] [blame] | 447 | Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds 120s 10s Openolt is Up |
| 448 | ... ${olt_ip} ${olt_user} ${olt_pass} |
| 449 | Sleep 60s |
Suchitra Vemuri | 65cd65f | 2019-08-30 14:39:22 -0700 | [diff] [blame] | 450 | #create/preprovision device |
Suchitra Vemuri | c59eb27 | 2019-09-18 17:59:33 -0700 | [diff] [blame] | 451 | ${olt_device_id}= Create Device ${olt_ip} ${OLT_PORT} |
| 452 | Set Suite Variable ${olt_device_id} |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 453 | #validate olt states |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 454 | Wait Until Keyword Succeeds ${timeout} 5s |
| 455 | ... Validate OLT Device PREPROVISIONED UNKNOWN UNKNOWN ${EMPTY} ${olt_device_id} |
Suchitra Vemuri | c59eb27 | 2019-09-18 17:59:33 -0700 | [diff] [blame] | 456 | Enable Device ${olt_device_id} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 457 | Wait Until Keyword Succeeds ${timeout} 5s |
| 458 | ... Validate OLT Device ENABLED ACTIVE REACHABLE ${olt_serial_number} |
Suchitra Vemuri | 00d147d | 2019-09-13 13:07:32 -0700 | [diff] [blame] | 459 | ${logical_id}= Get Logical Device ID From SN ${olt_serial_number} |
| 460 | Set Suite Variable ${logical_id} |
Suchitra Vemuri | 65cd65f | 2019-08-30 14:39:22 -0700 | [diff] [blame] | 461 | |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 462 | Delete All Devices and Verify |
| 463 | [Documentation] Remove any devices from VOLTHA and ONOS |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 464 | # Clear devices from VOLTHA |
| 465 | Disable Devices In Voltha Root=true |
| 466 | Wait Until Keyword Succeeds ${timeout} 2s Test Devices Disabled In Voltha Root=true |
| 467 | Delete Devices In Voltha Root=true |
| 468 | Wait Until Keyword Succeeds ${timeout} 2s Test Empty Device List |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 469 | # Clear devices from ONOS |
| 470 | Remove All Devices From ONOS |
| 471 | ... http://karaf:karaf@${k8s_node_ip}:${ONOS_REST_PORT} |
| 472 | |
| 473 | Clear All Devices Then Create New Device |
| 474 | [Documentation] Remove any devices from VOLTHA and ONOS |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 475 | # Remove all devices from voltha and nos |
| 476 | Delete All Devices and Verify |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 477 | # Execute normal test Setup Keyword |
| 478 | Setup |
| 479 | |
Suchitra Vemuri | 65cd65f | 2019-08-30 14:39:22 -0700 | [diff] [blame] | 480 | Teardown |
| 481 | [Documentation] kills processes and cleans up interfaces on src+dst servers |
Suchitra Vemuri | 582574b | 2019-12-10 21:11:54 -0800 | [diff] [blame] | 482 | Run Keyword If ${has_dataplane} Clean Up Linux |
Suchitra Vemuri | 3ed95ab | 2020-01-15 21:28:04 -0800 | [diff] [blame] | 483 | Run Keyword If ${external_libs} Run Keyword and Ignore Error |
| 484 | ... Log Kubernetes Containers Logs Since Time |
| 485 | ... ${datetime} ${container_list} |
Suchitra Vemuri | 582574b | 2019-12-10 21:11:54 -0800 | [diff] [blame] | 486 | |
| 487 | Collect Logs |
| 488 | [Documentation] Collect Logs from voltha and onos cli for various commands |
Suchitra Vemuri | 1a970a6 | 2019-11-26 12:52:16 -0800 | [diff] [blame] | 489 | Run Keyword and Ignore Error Get Device List from Voltha |
| 490 | Run Keyword and Ignore Error Get Device Output from Voltha ${olt_device_id} |
| 491 | Run Keyword and Ignore Error Get Logical Device Output from Voltha ${logical_id} |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 492 | Run Keyword If ${external_libs} Get ONOS Status ${k8s_node_ip} |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 493 | |
| 494 | Teardown Suite |
| 495 | [Documentation] Clean up device if desired |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 496 | Run Keyword If ${teardown_device} Delete All Devices and Verify |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 497 | |
Suchitra Vemuri | 65cd65f | 2019-08-30 14:39:22 -0700 | [diff] [blame] | 498 | Clean Up Linux |
| 499 | [Documentation] Kill processes and clean up interfaces on src+dst servers |
Suchitra Vemuri | 8a9c378 | 2019-10-23 12:43:01 -0700 | [diff] [blame] | 500 | FOR ${I} IN RANGE 0 ${num_onus} |
| 501 | ${src}= Set Variable ${hosts.src[${I}]} |
| 502 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 503 | Run Keyword And Ignore Error Kill Linux Process [w]pa_supplicant ${src['ip']} |
| 504 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 505 | Run Keyword And Ignore Error Kill Linux Process [d]hclient ${src['ip']} |
| 506 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 507 | Run Keyword If '${dst['ip']}' != '${None}' Run Keyword And Ignore Error |
| 508 | ... Kill Linux Process [d]hcpd ${dst['ip']} ${dst['user']} |
| 509 | ... ${dst['pass']} ${dst['container_type']} ${dst['container_name']} |
| 510 | Delete IP Addresses from Interface on Remote Host ${src['dp_iface_name']} ${src['ip']} |
| 511 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 512 | Run Keyword If '${dst['ip']}' != '${None}' Delete Interface on Remote Host |
| 513 | ... ${dst['dp_iface_name']}.${src['s_tag']} ${dst['ip']} ${dst['user']} ${dst['pass']} |
| 514 | ... ${dst['container_type']} ${dst['container_name']} |
| 515 | END |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 516 | |
| 517 | Delete Device and Verify |
| 518 | [Documentation] Disable -> Delete devices via voltctl and verify its removed |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 519 | ${rc} ${output}= Run and Return Rc and Output |
| 520 | ... ${VOLTCTL_CONFIG}; voltctl device disable ${olt_device_id} |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 521 | Should Be Equal As Integers ${rc} 0 |
Suchitra Vemuri | 937cd39 | 2020-01-12 17:10:42 -0800 | [diff] [blame] | 522 | Sleep 5s |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 523 | Wait Until Keyword Succeeds ${timeout} 5s |
| 524 | ... Validate OLT Device DISABLED UNKNOWN REACHABLE ${olt_serial_number} |
| 525 | ${rc} ${output}= Run and Return Rc and Output |
| 526 | ... ${VOLTCTL_CONFIG}; voltctl device delete ${olt_device_id} |
Suchitra Vemuri | c9f2bc9 | 2020-01-16 21:21:08 -0800 | [diff] [blame] | 527 | Sleep 50s |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 528 | Should Be Equal As Integers ${rc} 0 |
| 529 | Wait Until Keyword Succeeds ${timeout} 5s Validate Device Removed ${olt_device_id} |
Suchitra Vemuri | b89b9ac | 2019-12-11 21:53:11 -0800 | [diff] [blame] | 530 | |
| 531 | Perform Sanity Test |
| 532 | [Documentation] This keyword performs Sanity Test Procedure |
| 533 | ... Sanity test performs authentication, dhcp and pings for all the ONUs given for the POD |
| 534 | ... This keyword can be used to call in any other tests where sanity check is required |
| 535 | ... and avoids duplication of code. |
Suchitra Vemuri | b89b9ac | 2019-12-11 21:53:11 -0800 | [diff] [blame] | 536 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number} |
| 537 | Set Global Variable ${of_id} |
Suchitra Vemuri | b89b9ac | 2019-12-11 21:53:11 -0800 | [diff] [blame] | 538 | FOR ${I} IN RANGE 0 ${num_onus} |
| 539 | ${src}= Set Variable ${hosts.src[${I}]} |
| 540 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Suchitra Vemuri | 50aa980 | 2019-12-20 14:25:46 -0800 | [diff] [blame] | 541 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device |
| 542 | ... ENABLED ACTIVE REACHABLE |
Suchitra Vemuri | b89b9ac | 2019-12-11 21:53:11 -0800 | [diff] [blame] | 543 | ... ${src['onu']} onu=True onu_reason=omci-flows-pushed |
Suchitra Vemuri | b89b9ac | 2019-12-11 21:53:11 -0800 | [diff] [blame] | 544 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 545 | ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 546 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
| 547 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 548 | ... Verify Eapol Flows Added For ONU ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port} |
| 549 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True |
Suchitra Vemuri | b89b9ac | 2019-12-11 21:53:11 -0800 | [diff] [blame] | 550 | ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']} |
| 551 | ... ${src['container_type']} ${src['container_name']} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 552 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2 |
| 553 | ... Verify ONU in AAA-Users ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port} |
| 554 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2 |
| 555 | ... Execute ONOS CLI Command ${k8s_node_ip} ${ONOS_SSH_PORT} |
| 556 | ... volt-add-subscriber-access ${of_id} ${onu_port} |
Suchitra Vemuri | b89b9ac | 2019-12-11 21:53:11 -0800 | [diff] [blame] | 557 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True |
| 558 | ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 559 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 560 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 561 | ... ${dst['container_name']} |
| 562 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 563 | ... Validate Subscriber DHCP Allocation ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 564 | Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id} |
| 565 | Run Keyword and Ignore Error Collect Logs |
Suchitra Vemuri | b89b9ac | 2019-12-11 21:53:11 -0800 | [diff] [blame] | 566 | END |
Gayathri.Selvan | 4939896 | 2020-01-13 07:19:12 +0000 | [diff] [blame] | 567 | |
| 568 | Repeat Sanity Test |
Gayathri.Selvan | 9188ea5 | 2020-01-17 11:56:54 +0000 | [diff] [blame] | 569 | [Documentation] Performs Sanity Test Procedure where sanity check is required with wpa reassociation |
Gayathri.Selvan | 4939896 | 2020-01-13 07:19:12 +0000 | [diff] [blame] | 570 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number} |
| 571 | Set Global Variable ${of_id} |
Gayathri.Selvan | 4939896 | 2020-01-13 07:19:12 +0000 | [diff] [blame] | 572 | FOR ${I} IN RANGE 0 ${num_onus} |
| 573 | ${src}= Set Variable ${hosts.src[${I}]} |
| 574 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Gayathri.Selvan | 4939896 | 2020-01-13 07:19:12 +0000 | [diff] [blame] | 575 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 576 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s |
| 577 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
| 578 | Wait Until Keyword Succeeds ${timeout} 2s |
| 579 | ... Verify Eapol Flows Added For ONU ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port} |
| 580 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 581 | ... Validate Authentication After Reassociate |
Gayathri.Selvan | 4939896 | 2020-01-13 07:19:12 +0000 | [diff] [blame] | 582 | ... True ${src['dp_iface_name']} ${src['ip']} ${src['user']} ${src['pass']} |
| 583 | ... ${src['container_type']} ${src['container_name']} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 584 | Wait Until Keyword Succeeds ${timeout} 2s |
| 585 | ... Verify ONU in AAA-Users ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port} |
| 586 | Wait Until Keyword Succeeds ${timeout} 2s |
| 587 | ... Execute ONOS CLI Command ${k8s_node_ip} ${ONOS_SSH_PORT} |
| 588 | ... volt-add-subscriber-access ${of_id} ${onu_port} |
| 589 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 590 | ... Validate DHCP and Ping True True |
| 591 | ... ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
Gayathri.Selvan | 4939896 | 2020-01-13 07:19:12 +0000 | [diff] [blame] | 592 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 593 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 594 | ... ${dst['container_name']} |
| 595 | Wait Until Keyword Succeeds ${timeout} 2s Run Keyword And Continue On Failure |
| 596 | ... Validate Subscriber DHCP Allocation ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port} |
| 597 | Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id} |
| 598 | Run Keyword and Ignore Error Collect Logs |
Suchitra Vemuri | 15e1525 | 2020-01-20 17:38:49 -0800 | [diff] [blame^] | 599 | END |