blob: ee306e504620448a452143628b34d0d0b1f63d60 [file] [log] [blame]
David Bainbridgef81cd642019-11-20 00:14:47 +00001# Copyright 2017 - present Open Networking Foundation
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -07002#
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 Scandolo1294aeb2019-09-24 16:20:32 -070014# FIXME Can we use the same test against BBSim and Hardware?
15
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -070016*** Settings ***
Zack Williamsec53a1b2019-09-16 15:50:52 -070017Documentation Test various end-to-end scenarios
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -070018Suite Setup Setup Suite
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -070019Test Setup Setup
20Test Teardown Teardown
Andy Bavierba9866b2019-10-11 07:11:53 -070021Suite Teardown Teardown Suite
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -070022Library Collections
23Library String
24Library OperatingSystem
25Library XML
26Library RequestsLibrary
Andy Bavierba9866b2019-10-11 07:11:53 -070027Library ../../libraries/DependencyLibrary.py
Suchitra Vemurib8ed2d52019-09-30 13:22:51 -070028Resource ../../libraries/onos.robot
29Resource ../../libraries/voltctl.robot
David Bainbridgef81cd642019-11-20 00:14:47 +000030Resource ../../libraries/voltha.robot
Suchitra Vemurib8ed2d52019-09-30 13:22:51 -070031Resource ../../libraries/utils.robot
Andy Bavierba9866b2019-10-11 07:11:53 -070032Resource ../../libraries/k8s.robot
Suchitra Vemurib8ed2d52019-09-30 13:22:51 -070033Resource ../../variables/variables.robot
Suchitra Vemuri1d8e8172020-06-17 17:43:56 -070034Resource ../../libraries/power_switch.robot
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -070035
36*** Variables ***
Zack Williamsec53a1b2019-09-16 15:50:52 -070037${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 Williamsa8fe75a2020-01-10 14:25:27 -070044${NAMESPACE} voltha
Hardik Windlass4288c6a2021-09-28 07:22:06 +000045${INFRA_NAMESPACE} default
suraj gourd64356b2019-11-07 13:26:20 +000046# 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 Williamsa8fe75a2020-01-10 14:25:27 -070048${RESTART_POD_NAME} radius
Andy Bavierba9866b2019-10-11 07:11:53 -070049${timeout} 60s
Zack Williamsec53a1b2019-09-16 15:50:52 -070050${of_id} 0
51${logical_id} 0
Andrea Campanella86e24062020-08-05 19:09:18 +020052${uprate} 0
53${dnrate} 0
Andy Bavierba9866b2019-10-11 07:11:53 -070054${has_dataplane} True
Andy Bavierba9866b2019-10-11 07:11:53 -070055${teardown_device} False
Zack Williamsa8fe75a2020-01-10 14:25:27 -070056${scripts} ../../scripts
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -070057
Gayathri.Selvan92d16862020-03-19 14:47:58 +000058# For dataplane bandwidth testing
59${upper_margin_pct} 105 # Allow 5% over the limit
Suchitra Vemuria6879aa2020-11-03 11:03:11 -080060${lower_margin_pct} 90 # Allow 8% under the limit
Gayathri.Selvan92d16862020-03-19 14:47:58 +000061${udp_rate_multiplier} 1.10 # Send UDP at bw profile limit * rate_multiplier
Andy Bavierc80a2742020-08-28 10:59:05 -070062${udp_packet_bytes} 1470 # UDP payload in bytes
Gayathri.Selvan92d16862020-03-19 14:47:58 +000063
Andy Bavierabeba262020-02-07 16:22:16 -070064# Per-test logging on failure is turned off by default; set this variable to enable
65${container_log_dir} ${None}
66
Matteo Scandoloda1c64b2021-07-20 10:14:49 -070067# logging flag to enable Collect Logs, can be passed via the command line too
68# example: -v logging:False
69${logging} True
70
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -070071*** Test Cases ***
Suchitra Vemuri1d8e8172020-06-17 17:43:56 -070072Reboot 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 Vemuria6879aa2020-11-03 11:03:11 -080081 FOR ${I} IN RANGE 0 ${num_all_onus}
Suchitra Vemuri1d8e8172020-06-17 17:43:56 -070082 ${src}= Set Variable ${hosts.src[${I}]}
83 ${dst}= Set Variable ${hosts.dst[${I}]}
84 Disable Switch Outlet ${src['power_switch_port']}
Hardik Windlass5e214b22021-02-26 10:37:14 +000085 Sleep 10s
Suchitra Vemuri1d8e8172020-06-17 17:43:56 -070086 Enable Switch Outlet ${src['power_switch_port']}
Suchitra Vemuri1d8e8172020-06-17 17:43:56 -070087 END
88
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -070089Sanity 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 Bavierba9866b2019-10-11 07:11:53 -070092 [Tags] sanity test1
Andy Baviere187eda2020-04-20 15:00:02 -070093 [Setup] Run Keywords Start Logging SanityTest
Andy Bavier4a8450e2020-02-04 08:58:37 -070094 ... AND Setup
95 [Teardown] Run Keywords Collect Logs
Andy Bavierabeba262020-02-07 16:22:16 -070096 ... AND Stop Logging SanityTest
Suchitra Vemuric5295a32019-12-15 20:32:04 -080097 Run Keyword If ${has_dataplane} Clean Up Linux
Zack Williamsa8fe75a2020-01-10 14:25:27 -070098 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -070099
Suchitra Vemuri6db89412019-11-14 14:52:54 -0800100Test 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 Windlass1ed2eee2021-06-25 09:51:03 +0000105 [Tags] functional DisableEnableONU released multi-uni
Andy Baviere187eda2020-04-20 15:00:02 -0700106 [Setup] Start Logging DisableEnableONU
Andy Bavier4a8450e2020-02-04 08:58:37 -0700107 [Teardown] Run Keywords Collect Logs
Andy Bavierabeba262020-02-07 16:22:16 -0700108 ... AND Stop Logging DisableEnableONU
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800109 FOR ${I} IN RANGE 0 ${num_all_onus}
Suchitra Vemuri6db89412019-11-14 14:52:54 -0800110 ${src}= Set Variable ${hosts.src[${I}]}
111 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800112 ${of_id}= Get ofID From OLT List ${src['olt']}
TorstenThiemedda37652021-11-11 16:22:05 +0000113 ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id}
Suchitra Vemuri6db89412019-11-14 14:52:54 -0800114 ${onu_device_id}= Get Device ID From SN ${src['onu']}
115 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000116 ... ${of_id} ${src['uni_id']}
Suchitra Vemuri6db89412019-11-14 14:52:54 -0800117 Disable Device ${onu_device_id}
Andy Bavier46c8be32020-01-21 10:06:27 -0700118 Wait Until Keyword Succeeds 20s 2s Test Devices Disabled in VOLTHA Id=${onu_device_id}
Andy Bavier33e6dd32020-01-16 13:35:20 -0700119 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
120 ... Wait Until Keyword Succeeds 60s 2s
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700121 ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
122 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Suchitra Vemuri6db89412019-11-14 14:52:54 -0800123 Enable Device ${onu_device_id}
124 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
ubuntu6b6e7d42020-03-02 12:35:42 -0800125 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Hardik Windlass21807632020-04-14 16:24:55 +0530126 # Verify subscriber access flows are added for the ONU port
127 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
128 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
129 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
Andy Bavier33e6dd32020-01-16 13:35:20 -0700130 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
131 ... Wait Until Keyword Succeeds 60s 2s
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700132 ... Check Ping True ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
133 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Suchitra Vemuri6db89412019-11-14 14:52:54 -0800134 END
135
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800136Test Subscriber Delete and Add
137 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
138 ... Assuming that all the ONUs are authenticated/DHCP/pingable
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700139 ... Delete a subscriber and validate that the pings do not succeed
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800140 ... Re-add the subscriber and validate that the pings are successful
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000141 [Tags] functional SubAddDelete released multi-uni
Andy Baviere187eda2020-04-20 15:00:02 -0700142 [Setup] Start Logging SubAddDelete
Andy Bavier4a8450e2020-02-04 08:58:37 -0700143 [Teardown] Run Keywords Collect Logs
Andy Bavierabeba262020-02-07 16:22:16 -0700144 ... AND Stop Logging SubAddDelete
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800145 FOR ${I} IN RANGE 0 ${num_all_onus}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800146 ${src}= Set Variable ${hosts.src[${I}]}
147 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800148 ${of_id}= Get ofID From OLT List ${src['olt']}
TorstenThiemedda37652021-11-11 16:22:05 +0000149 ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800150 ${onu_device_id}= Get Device ID From SN ${src['onu']}
151 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000152 ... ${of_id} ${src['uni_id']}
TorstenThieme4e2168e2021-06-22 14:01:47 +0000153 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800154 ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port}
Suchitra Vemuri9da44302020-03-04 14:24:49 -0800155 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
156 ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Andy Bavier33e6dd32020-01-16 13:35:20 -0700157 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
158 ... Wait Until Keyword Succeeds 60s 2s
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700159 ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
160 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
TorstenThieme4e2168e2021-06-22 14:01:47 +0000161 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800162 ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800163 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
Suchitra Vemuri9da44302020-03-04 14:24:49 -0800164 ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
165 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
ubuntu6b6e7d42020-03-02 12:35:42 -0800166 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Hardik Windlass21807632020-04-14 16:24:55 +0530167 # Verify subscriber access flows are added for the ONU port
168 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
169 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
170 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
Andy Bavier33e6dd32020-01-16 13:35:20 -0700171 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
172 ... Wait Until Keyword Succeeds 60s 2s
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700173 ... Check Ping True ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
174 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800175 END
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800176
suraj gourd5cfdbb2019-12-13 12:44:55 +0000177Check DHCP attempt fails when subscriber is not added
178 [Documentation] Validates when removed subscriber access, DHCP attempt, ping fails and
179 ... when again added subscriber access, DHCP attempt, ping succeeds
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700180 ... Assuming that test1 or sanity test was executed where all the ONUs are authenticated/DHCP/pingable
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000181 [Tags] functional SubsRemoveDHCP released multi-uni
Andy Baviere187eda2020-04-20 15:00:02 -0700182 [Setup] Start Logging SubsRemoveDHCP
Andy Bavier4a8450e2020-02-04 08:58:37 -0700183 [Teardown] Run Keywords Collect Logs
Andy Bavierabeba262020-02-07 16:22:16 -0700184 ... AND Stop Logging SubsRemoveDHCP
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800185 FOR ${I} IN RANGE 0 ${num_all_onus}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000186 ${src}= Set Variable ${hosts.src[${I}]}
187 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800188 ${of_id}= Get ofID From OLT List ${src['olt']}
TorstenThiemedda37652021-11-11 16:22:05 +0000189 ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700190 ${onu_device_id}= Get Device ID From SN ${src['onu']}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000191 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000192 ... ${of_id} ${src['uni_id']}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800193 Run Keyword And Ignore Error Login And Run Command On Remote System killall dhclient ${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 ps -ef | grep dhclient ${src['ip']}
196 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
TorstenThieme4e2168e2021-06-22 14:01:47 +0000197 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000198 ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port}
Suchitra Vemuri8f1d3062020-02-28 11:57:37 -0800199 Sleep 15s
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800200 Run Keyword And Ignore Error Login And Run Command On Remote System ps -ef | grep dhclient ${src['ip']}
201 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700202 Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds ${timeout} 2s
203 ... Delete IP Addresses from Interface on Remote Host ${src['dp_iface_name']} ${src['ip']}
204 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
205 Run Keyword And Ignore Error Login And Run Command On Remote System
206 ... ifconfig | grep -A 10 ens ${src['ip']}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800207 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000208 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping False
209 ... False ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
210 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
211 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
212 ... ${dst['container_name']}
TorstenThieme4e2168e2021-06-22 14:01:47 +0000213 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000214 ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port}
Suchitra Vemuri9da44302020-03-04 14:24:49 -0800215 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
216 ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Hardik Windlass21807632020-04-14 16:24:55 +0530217 # Verify subscriber access flows are added for the ONU port
218 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
219 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
220 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000221 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
222 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
223 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
224 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
225 ... ${dst['container_name']}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800226 END
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800227
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800228Test Disable and Enable ONU scenario for ATT workflow
229 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
230 ... Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable
231 ... Perform disable on the ONUs, call volt-remove-subscriber and validate that the pings do not succeed
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700232 ... Perform enable on the ONUs, authentication check, volt-add-subscriber-access and
233 ... validate that the pings are successful
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800234 ... VOL-2284
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000235 [Tags] functional ATT_DisableEnableONU released multi-uni
Andy Baviere187eda2020-04-20 15:00:02 -0700236 [Setup] Start Logging ATT_DisableEnableONU
Andy Bavier4a8450e2020-02-04 08:58:37 -0700237 [Teardown] Run Keywords Collect Logs
Andy Bavierabeba262020-02-07 16:22:16 -0700238 ... AND Stop Logging ATT_DisableEnableONU
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800239 FOR ${I} IN RANGE 0 ${num_all_onus}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800240 ${src}= Set Variable ${hosts.src[${I}]}
241 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800242 ${of_id}= Get ofID From OLT List ${src['olt']}
TorstenThiemedda37652021-11-11 16:22:05 +0000243 ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800244 ${onu_device_id}= Get Device ID From SN ${src['onu']}
245 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000246 ... ${of_id} ${src['uni_id']}
Suchitra Vemuri014b6032020-02-14 18:13:13 -0800247 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
Hardik Windlass39015672021-07-05 05:48:08 +0000248 ... Verify UNI Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']} ${src['uni_id']}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800249 Disable Device ${onu_device_id}
Hardik Windlass5e214b22021-02-26 10:37:14 +0000250 Wait Until Keyword Succeeds ${timeout} 2s Test Devices Disabled in VOLTHA Id=${onu_device_id}
TorstenThieme4e2168e2021-06-22 14:01:47 +0000251 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800252 ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700253 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
254 ... Wait Until Keyword Succeeds 60s 2s Check Ping
255 ... False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
256 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Hardik Windlass5e214b22021-02-26 10:37:14 +0000257 ... ELSE Sleep 10s
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800258 Enable Device ${onu_device_id}
ubuntu6b6e7d42020-03-02 12:35:42 -0800259 Wait Until Keyword Succeeds ${timeout} 2s Verify Eapol Flows Added For ONU ${ONOS_SSH_IP}
Matteo Scandolo7e519fb2021-08-13 11:35:16 -0700260 ... ${ONOS_SSH_PORT} ${of_id} ${onu_port}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700261 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
262 ... Validate Authentication After Reassociate True
263 ... ${src['dp_iface_name']} ${src['ip']} ${src['user']} ${src['pass']}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800264 ... ${src['container_type']} ${src['container_name']}
ubuntu6b6e7d42020-03-02 12:35:42 -0800265 Wait Until Keyword Succeeds ${timeout} 2s Verify ONU in AAA-Users ${ONOS_SSH_IP}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700266 ... ${ONOS_SSH_PORT} ${onu_port}
TorstenThieme4e2168e2021-06-22 14:01:47 +0000267 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800268 ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port}
Hardik Windlass21807632020-04-14 16:24:55 +0530269 # Verify subscriber access flows are added for the ONU port
270 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
271 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
272 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800273 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
Andy Bavier08ae5852019-12-19 09:12:42 -0700274 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800275 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
276 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
277 ... ${dst['container_name']}
278 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
ubuntu6b6e7d42020-03-02 12:35:42 -0800279 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000280 END
suraj gourd5cfdbb2019-12-13 12:44:55 +0000281
Hardik Windlass2b37e712020-06-12 02:13:17 +0530282Test Disable and Enable OLT
283 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
284 ... Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable
285 ... Perform disable on the OLT and validate that the pings do not succeed
286 ... Perform enable on the OLT and validate that the pings are successful
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000287 [Tags] functional VOL-2410 DisableEnableOLT multi-uni
Hardik Windlass2b37e712020-06-12 02:13:17 +0530288 [Setup] Start Logging DisableEnableOLT
289 [Teardown] Run Keywords Collect Logs
290 ... AND Stop Logging DisableEnableOLT
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800291 #Disable the OLTs and verify the OLT/ONUs are disabled properly
292 FOR ${I} IN RANGE 0 ${olt_count}
293 ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn
294 ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
295 ${rc} ${output}= Run and Return Rc and Output
Matteo Scandolo5899be12020-11-11 15:38:07 -0800296 ... voltctl -c ${VOLTCTL_CONFIG} device disable ${olt_device_id}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800297 Should Be Equal As Integers ${rc} 0
298 Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device DISABLED UNKNOWN REACHABLE
299 ... ${olt_serial_number}
300 END
301 # Validate the ONUs
302 FOR ${I} IN RANGE 0 ${num_all_onus}
Hardik Windlass2b37e712020-06-12 02:13:17 +0530303 ${src}= Set Variable ${hosts.src[${I}]}
304 ${dst}= Set Variable ${hosts.dst[${I}]}
305 ${onu_device_id}= Get Device ID From SN ${src['onu']}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800306 ${of_id}= Get ofID From OLT List ${src['olt']}
Hardik Windlass2b37e712020-06-12 02:13:17 +0530307 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000308 ... Get ONU Port in ONOS ${src['onu']} ${of_id} ${src['uni_id']}
Hardik Windlass2b37e712020-06-12 02:13:17 +0530309 Wait Until Keyword Succeeds ${timeout} 5s Validate Device ENABLED DISCOVERED
310 ... UNREACHABLE ${src['onu']} onu=false
311 #Verify that ping fails
312 Run Keyword If ${has_dataplane}
313 ... Run Keyword And Continue On Failure Wait Until Keyword Succeeds 60s 2s
314 ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
315 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
316 # Remove Subscriber Access (To replicate ATT workflow)
TorstenThieme4e2168e2021-06-22 14:01:47 +0000317 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
Hardik Windlass2b37e712020-06-12 02:13:17 +0530318 ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port}
Hardik Windlass2b37e712020-06-12 02:13:17 +0530319 END
320 #Enable the OLT back and check ONU, OLT status are back to "ACTIVE"
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800321 FOR ${I} IN RANGE 0 ${olt_count}
322 ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn
323 ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
324 Enable Device ${olt_device_id}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800325 Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device ENABLED ACTIVE REACHABLE
326 ... ${olt_serial_number}
327 #TODO: Update for PON_OLT ETHERNET_NNI
328 #Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Port Types
329 #... PON_OLT ETHERNET_NNI
330 END
Hardik Windlass2b37e712020-06-12 02:13:17 +0530331 Run Keyword If ${has_dataplane} Clean Up Linux
332 Wait Until Keyword Succeeds ${timeout} 5s Perform Sanity Test
333
Suchitra Vemuri937cd392020-01-12 17:10:42 -0800334Delete OLT, ReAdd OLT and Perform Sanity Test
335 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
336 ... Disable and Delete the OLT
337 ... Create/Enable the same OLT again
338 ... Validate authentication/DHCP/E2E pings succeed for all the ONUs connected to the OLT
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800339 [Tags] functional DeleteOLT released notready
Andy Baviere187eda2020-04-20 15:00:02 -0700340 [Setup] Start Logging DeleteOLT
Andy Bavier4a8450e2020-02-04 08:58:37 -0700341 [Teardown] Run Keywords Collect Logs
Andy Bavierabeba262020-02-07 16:22:16 -0700342 ... AND Stop Logging DeleteOLT
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800343 #TODO: Update test with new framework changes
Suchitra Vemuri937cd392020-01-12 17:10:42 -0800344 Run Keyword If ${has_dataplane} Clean Up Linux
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800345 FOR ${I} IN RANGE 0 ${olt_count}
346 ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn
347 ${of_id}= Get ofID From OLT List ${olt_serial_number}
348 Delete Device and Verify ${olt_serial_number}
349 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
350 ... Verify Device Flows Removed ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
351 END
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800352 Run Keyword If ${has_dataplane} Clean Up Linux
Suchitra Vemuri937cd392020-01-12 17:10:42 -0800353 # Recreate the OLT
Hardik Windlass480f3e22020-04-02 20:14:14 +0530354 Setup
Suchitra Vemuri937cd392020-01-12 17:10:42 -0800355 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
Suchitra Vemuri937cd392020-01-12 17:10:42 -0800356
Hema567f3012020-03-25 00:51:53 +0530357Check Mib State on OLT recreation after ONU, OLT deletion
358 [Documentation] Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable,
359 ... Disable and Delete the ONU, Disable and Delete the OLT
360 ... Create/Enable the OLT again and Check for the Mib State of the ONUs
361 [Tags] functional CheckMibState notready
Andy Baviere187eda2020-04-20 15:00:02 -0700362 [Setup] Start Logging CheckMibState
Hema567f3012020-03-25 00:51:53 +0530363 [Teardown] Run Keywords Collect Logs
364 ... AND Stop Logging CheckMibState
Hema567f3012020-03-25 00:51:53 +0530365 #Disable and Delete the ONU
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800366 FOR ${I} IN RANGE 0 ${num_all_onus}
Hema567f3012020-03-25 00:51:53 +0530367 ${src}= Set Variable ${hosts.src[${I}]}
368 ${dst}= Set Variable ${hosts.dst[${I}]}
369 ${onu_device_id}= Get Device ID From SN ${src['onu']}
370 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000371 ... ${of_id} ${src['uni_id']}
Hema567f3012020-03-25 00:51:53 +0530372 Disable Device ${onu_device_id}
373 Wait Until Keyword Succeeds 20s 2s Test Devices Disabled in VOLTHA Id=${onu_device_id}
374 Delete Device ${onu_device_id}
375 END
376 #Disable and Delete the OLT
Hardik Windlass480f3e22020-04-02 20:14:14 +0530377 Delete Device and Verify
378 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
379 ... Verify Device Flows Removed ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
380 # Recreate the OLT
Hema567f3012020-03-25 00:51:53 +0530381 Run Keyword If ${has_dataplane} Sleep 180s
Andrea Campanella3dcce272021-01-15 16:04:47 +0100382 # This dneeds to be done in for loop, test is not ready
383 ${olt_device_id}= Run Keyword If "${list_olts}[${I}][type]" == "${None}"
Suchitra Vemuri09f878d2021-02-10 18:19:04 -0800384 ... Create Device ${list_olts}[${I}][ip] ${list_olts}[${I}][oltport]
385 ... ELSE Create Device ${list_olts}[${I}][ip] ${list_olts}[${I}][oltport] ${list_olts}[${I}][type]
Hema567f3012020-03-25 00:51:53 +0530386 Set Suite Variable ${olt_device_id}
387 Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device PREPROVISIONED
Hardik Windlass8b446492021-06-10 06:25:23 +0000388 ... UNKNOWN UNKNOWN ${olt_device_id} by_dev_id=True
Hema567f3012020-03-25 00:51:53 +0530389 Enable Device ${olt_device_id}
390 Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device ENABLED ACTIVE REACHABLE
391 ... ${olt_serial_number}
392 #Check for the ONU status and ONU Mib State should be "omci-flows-pushed"
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800393 FOR ${I} IN RANGE 0 ${num_all_onus}
Hema567f3012020-03-25 00:51:53 +0530394 ${src}= Set Variable ${hosts.src[${I}]}
395 ${dst}= Set Variable ${hosts.dst[${I}]}
396 ${onu_device_id}= Get Device ID From SN ${src['onu']}
397 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000398 ... ${of_id} ${src['uni_id']}
Suchitra Vemuricdc32d82020-07-17 12:24:46 -0700399 Wait Until Keyword Succeeds 180s 5s Validate Device ENABLED ACTIVE
Hema567f3012020-03-25 00:51:53 +0530400 ... REACHABLE ${src['onu']} onu=True onu_reason=omci-flows-pushed
401 END
402
Hema783279b2020-01-22 15:37:37 +0530403Test disable ONUs and OLT then delete ONUs and OLT
404 [Documentation] On deployed POD, disable the ONU, disable the OLT and then delete ONU and OLT.
405 ... This TC is to confirm that ONU removal is not impacting OLT
406 ... Devices will be removed during the execution of this TC
407 ... so calling setup at the end to add the devices back to avoid the confusion.
Suchitra Vemuria7dae322020-02-19 22:38:18 -0800408 [Tags] functional VOL-2354 DisableDeleteONUandOLT released
Andy Baviere187eda2020-04-20 15:00:02 -0700409 [Setup] Start Logging DisableDeleteONUandOLT
Andy Bavier4a8450e2020-02-04 08:58:37 -0700410 [Teardown] Run Keywords Collect Logs
Andy Bavierabeba262020-02-07 16:22:16 -0700411 ... AND Stop Logging DisableDeleteONUandOLT
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800412 #${olt_device_id}= Get Device ID From SN ${olt_serial_number}
Suchitra Vemuri02170552021-03-23 16:40:50 -0700413 @{onu_reason}= Create List tech-profile-config-downloaded-success omci-flows-pushed
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800414 FOR ${I} IN RANGE 0 ${num_all_onus}
Hema783279b2020-01-22 15:37:37 +0530415 ${src}= Set Variable ${hosts.src[${I}]}
416 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800417 ${of_id}= Get ofID From OLT List ${src['olt']}
Hema783279b2020-01-22 15:37:37 +0530418 ${onu_device_id}= Get Device ID From SN ${src['onu']}
Suchitra Vemuricdc32d82020-07-17 12:24:46 -0700419 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 360s 5s
Suchitra Vemuri014b6032020-02-14 18:13:13 -0800420 ... Validate Device ENABLED ACTIVE
Suchitra Vemuri02170552021-03-23 16:40:50 -0700421 ... REACHABLE ${src['onu']} onu=True onu_reason=${onu_reason}
Suchitra Vemuri014b6032020-02-14 18:13:13 -0800422 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
423 ... Validate OLT Device ENABLED ACTIVE
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800424 ... REACHABLE ${src['olt']}
Hema783279b2020-01-22 15:37:37 +0530425 ${rc} ${output}= Run and Return Rc and Output
Matteo Scandolo5899be12020-11-11 15:38:07 -0800426 ... voltctl -c ${VOLTCTL_CONFIG} device disable ${onu_device_id}
Hema783279b2020-01-22 15:37:37 +0530427 Should Be Equal As Integers ${rc} 0
Suchitra Vemuri014b6032020-02-14 18:13:13 -0800428 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
429 ... Validate Device DISABLED UNKNOWN
Hema783279b2020-01-22 15:37:37 +0530430 ... REACHABLE ${src['onu']} onu=false
Suchitra Vemuricdc32d82020-07-17 12:24:46 -0700431 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 360s 5s
Suchitra Vemuri014b6032020-02-14 18:13:13 -0800432 ... Validate OLT Device ENABLED ACTIVE
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800433 ... REACHABLE ${src['olt']}
Hema783279b2020-01-22 15:37:37 +0530434 END
Matteo Scandolo5899be12020-11-11 15:38:07 -0800435
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800436 # Disable all OLTs
437 FOR ${I} IN RANGE 0 ${olt_count}
438 ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn
439 ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
440 ${rc} ${output}= Run and Return Rc and Output
Matteo Scandolo5899be12020-11-11 15:38:07 -0800441 ... voltctl -c ${VOLTCTL_CONFIG} device disable ${olt_device_id}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800442 Should Be Equal As Integers ${rc} 0
443 Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device DISABLED UNKNOWN REACHABLE
444 ... ${olt_serial_number}
445 END
446 # Validate ONUs after OLT disable
447 FOR ${I} IN RANGE 0 ${num_all_onus}
Hema783279b2020-01-22 15:37:37 +0530448 ${src}= Set Variable ${hosts.src[${I}]}
449 ${dst}= Set Variable ${hosts.dst[${I}]}
450 ${onu_device_id}= Get Device ID From SN ${src['onu']}
Suchitra Vemuri014b6032020-02-14 18:13:13 -0800451 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
452 ... Validate Device DISABLED DISCOVERED
453 ... UNREACHABLE ${src['onu']} onu=false
Hardik Windlass7da42ca2020-03-13 14:25:44 +0530454 Delete Device ${onu_device_id}
Suchitra Vemuri014b6032020-02-14 18:13:13 -0800455 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
456 ... Validate OLT Device DISABLED UNKNOWN
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800457 ... REACHABLE ${src['olt']}
Hema783279b2020-01-22 15:37:37 +0530458 END
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800459 # Delete all OLTs
460 Delete All Devices and Verify
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000461 # Re-create the Devices and Perform Sanity
462 Setup
463 Run Keyword If ${has_dataplane} Clean Up Linux
464 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
David Bainbridgef81cd642019-11-20 00:14:47 +0000465
Suchitra Vemuri9a6dd6d2020-02-28 17:46:26 -0800466Validate authentication on a disabled ONU
suraj gour472da1c2020-02-25 05:44:51 +0000467 [Documentation] Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable
468 ... Perform disable on the ONUs and validate that the authentication do not succeed
469 ... Perform enable on the ONUs and validate that authentication successful
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000470 [Tags] functional DisableONU_AuthCheck multi-uni
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800471 # Creates Devices in the Setup
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000472 [Setup] Start Logging DisableONU_AuthCheck
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800473 [Teardown] Run Keywords Collect Logs
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800474 ... AND Delete All Devices and Verify
Girish Gowdraf244d5b2021-09-01 17:16:16 -0700475 ... AND Run Keyword If ${logging} Collect Logs
476 ... AND Stop Logging DisableONU_AuthCheck
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800477 Clean WPA Process
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800478 FOR ${I} IN RANGE 0 ${num_all_onus}
suraj gour472da1c2020-02-25 05:44:51 +0000479 ${src}= Set Variable ${hosts.src[${I}]}
480 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800481 ${of_id}= Get ofID From OLT List ${src['olt']}
suraj gour472da1c2020-02-25 05:44:51 +0000482 ${onu_device_id}= Get Device ID From SN ${src['onu']}
483 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000484 ... ${of_id} ${src['uni_id']}
suraj gour472da1c2020-02-25 05:44:51 +0000485 Disable Device ${onu_device_id}
486 Wait Until Keyword Succeeds ${timeout} 5s Validate Device DISABLED UNKNOWN
487 ... REACHABLE ${src['onu']} onu=false
Andy Bavier84834d42020-02-25 13:49:50 -0700488 ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=.
489 ... /tmp/wpa ${src['dp_iface_name']} log
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800490 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication False
491 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
Andy Bavier84834d42020-02-25 13:49:50 -0700492 ... ${src['container_type']} ${src['container_name']} ${wpa_log}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800493 Enable Device ${onu_device_id}
494 Run Keyword And Ignore Error Kill Linux Process [w]pa_supplicant ${src['ip']}
495 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800496 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
497 ... ENABLED ACTIVE REACHABLE ${src['onu']} onu=True onu_reason=omci-flows-pushed
498 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True
499 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
Andy Bavier84834d42020-02-25 13:49:50 -0700500 ... ${src['container_type']} ${src['container_name']} ${wpa_log}
suraj gour472da1c2020-02-25 05:44:51 +0000501 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
502 END
suraj gour472da1c2020-02-25 05:44:51 +0000503
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000504Data plane verification using TCP
505 [Documentation] Test bandwidth profile is met and not exceeded for each subscriber.
506 ... Assumes iperf3 and jq installed on client and iperf -s running on DHCP server
Matteo Scandoloab48f9e2021-06-11 17:08:00 +0200507 [Tags] non-critical dataplane BandwidthProfileTCP VOL-2052
Andy Bavierdfbcaef2020-05-27 15:34:18 -0700508 [Setup] Start Logging BandwidthProfileTCP
509 [Teardown] Run Keywords Collect Logs
510 ... AND Stop Logging BandwidthProfileTCP
Andy Baviereff938d2020-06-29 18:27:49 -0700511 Pass Execution If '${has_dataplane}'=='False'
512 ... Bandwidth profile validation can be done only in physical pod. Skipping this test in BBSIM.
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800513 Delete All Devices And Verify
514 Run Keyword If ${has_dataplane} Clean Up Linux
515 setup
516 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
517
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800518 FOR ${I} IN RANGE 0 ${num_all_onus}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000519 ${src}= Set Variable ${hosts.src[${I}]}
520 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800521 ${of_id}= Get ofID From OLT List ${src['olt']}
Andy Bavierf6ab19c2020-05-14 10:34:47 -0700522
523 # Check for iperf3 and jq tools
524 ${stdout} ${stderr} ${rc}= Execute Remote Command which iperf3 jq
525 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
526 Pass Execution If ${rc} != 0 Skipping test: iperf3 / jq not found on the RG
527
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000528 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000529 ... ${of_id} ${src['uni_id']}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000530 ${subscriber_id}= Set Variable ${of_id}/${onu_port}
531 ${bandwidth_profile_name} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id}
532 ... upstreamBandwidthProfile
Girish Gowdrad769b412021-05-16 11:09:46 -0700533 ${limiting_bw_value_upstream} Get Limiting Bandwidth Details ${bandwidth_profile_name}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000534 ${bandwidth_profile_name} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id}
535 ... downstreamBandwidthProfile
Girish Gowdrad769b412021-05-16 11:09:46 -0700536 ${limiting_bw_value_dnstream} Get Limiting Bandwidth Details ${bandwidth_profile_name}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000537
538 # Stream TCP packets from RG to server
539 ${updict}= Run Iperf3 Test Client ${src} server=${dst['dp_iface_ip_qinq']}
540 ... args=-t 30
541 ${actual_upstream_bw_used}= Evaluate ${updict['end']['sum_received']['bits_per_second']}/1000
542
543 # Stream TCP packets from server to RG
544 ${dndict}= Run Iperf3 Test Client ${src} server=${dst['dp_iface_ip_qinq']}
545 ... args=-R -t 30
546 ${actual_dnstream_bw_used}= Evaluate ${dndict['end']['sum_received']['bits_per_second']}/1000
547
548 ${pct_limit_up}= Evaluate 100*${actual_upstream_bw_used}/${limiting_bw_value_upstream}
549 ${pct_limit_dn}= Evaluate 100*${actual_dnstream_bw_used}/${limiting_bw_value_dnstream}
550 Log Up: bwprof ${limiting_bw_value_upstream}Kbps, got ${actual_upstream_bw_used}Kbps (${pct_limit_up}%)
551 Log Down: bwprof ${limiting_bw_value_dnstream}Kbps, got ${actual_dnstream_bw_used}Kbps (${pct_limit_dn}%)
552
553 Should Be True ${pct_limit_up} <= ${upper_margin_pct}
554 ... The upstream bandwidth exceeded the limit (${pct_limit_up}% of limit)
Andy Baviereff938d2020-06-29 18:27:49 -0700555 # VOL-3125: downstream bw limit not enforced. Uncomment when fixed.
556 #Should Be True ${pct_limit_dn} <= ${upper_margin_pct}
557 #... The downstream bandwidth exceeded the limit (${pct_limit_dn}% of limit)
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000558 Should Be True ${pct_limit_up} >= ${lower_margin_pct}
559 ... The upstream bandwidth guarantee was not met (${pct_limit_up}% of resv)
560 Should Be True ${pct_limit_dn} >= ${lower_margin_pct}
561 ... The downstream bandwidth guarantee was not met (${pct_limit_dn}% of resv)
562 END
563
564Data plane verification using UDP
565 [Documentation] Test bandwidth profile is met and not exceeded for each subscriber.
566 ... Assumes iperf3 and jq installed on client and iperf -s running on DHCP server
Matteo Scandoloab48f9e2021-06-11 17:08:00 +0200567 [Tags] non-critical dataplane BandwidthProfileUDP VOL-2052
Andy Bavierdfbcaef2020-05-27 15:34:18 -0700568 [Setup] Start Logging BandwidthProfileUDP
569 [Teardown] Run Keywords Collect Logs
570 ... AND Stop Logging BandwidthProfileUDP
Andy Baviereff938d2020-06-29 18:27:49 -0700571 Pass Execution If '${has_dataplane}'=='False'
572 ... Bandwidth profile validation can be done only in physical pod. Skipping this test in BBSIM.
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800573 FOR ${I} IN RANGE 0 ${num_all_onus}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000574 ${src}= Set Variable ${hosts.src[${I}]}
575 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800576 ${of_id}= Get ofID From OLT List ${src['olt']}
Andy Bavierd59f9772020-07-01 12:00:42 -0700577
578 # Check for iperf3 and jq tools
579 ${stdout} ${stderr} ${rc}= Execute Remote Command which iperf3 jq
580 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
581 Pass Execution If ${rc} != 0 Skipping test: iperf3 / jq not found on the RG
582
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000583 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000584 ... ${of_id} ${src['uni_id']}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000585 ${subscriber_id}= Set Variable ${of_id}/${onu_port}
586 ${bandwidth_profile_name} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id}
587 ... upstreamBandwidthProfile
Girish Gowdrad769b412021-05-16 11:09:46 -0700588 ${limiting_bw_value_upstream} Get Limiting Bandwidth Details ${bandwidth_profile_name}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000589 ${bandwidth_profile_name} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id}
590 ... downstreamBandwidthProfile
Girish Gowdrad769b412021-05-16 11:09:46 -0700591 ${limiting_bw_value_dnstream} Get Limiting Bandwidth Details ${bandwidth_profile_name}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000592
593 # Stream UDP packets from RG to server
Andrea Campanella1d34bfc2020-08-06 09:58:49 +0200594 ${uprate}= Run Keyword If ${limiting_bw_value_upstream} != 1000000
595 ... Evaluate ${limiting_bw_value_upstream}*${udp_rate_multiplier}
Andrea Campanella29341a32020-08-03 22:06:26 +0200596 ... ELSE
Andrea Campanella1d34bfc2020-08-06 09:58:49 +0200597 ... Set Variable ${limiting_bw_value_upstream}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000598 ${updict}= Run Iperf3 Test Client ${src} server=${dst['dp_iface_ip_qinq']}
Andy Bavier7dc50622020-05-28 14:34:12 -0700599 ... args=-u -b ${uprate}K -t 30 -l ${udp_packet_bytes} --pacing-timer 0
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000600 # With UDP test, bits per second is the sending rate. Multiply by the loss rate to get the throughput.
601 ${actual_upstream_bw_used}= Evaluate
602 ... (100 - ${updict['end']['sum']['lost_percent']})*${updict['end']['sum']['bits_per_second']}/100000
603
604 # Stream UDP packets from server to RG
Andrea Campanella1d34bfc2020-08-06 09:58:49 +0200605 ${dnrate}= Run Keyword If ${limiting_bw_value_dnstream} != 1000000
606 ... Evaluate ${limiting_bw_value_dnstream}*${udp_rate_multiplier}
Andrea Campanella29341a32020-08-03 22:06:26 +0200607 ... ELSE
Andrea Campanella1d34bfc2020-08-06 09:58:49 +0200608 ... Set Variable ${limiting_bw_value_dnstream}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000609 ${dndict}= Run Iperf3 Test Client ${src} server=${dst['dp_iface_ip_qinq']}
Andy Bavier7dc50622020-05-28 14:34:12 -0700610 ... args=-u -b ${dnrate}K -R -t 30 -l ${udp_packet_bytes} --pacing-timer 0
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000611 # With UDP test, bits per second is the sending rate. Multiply by the loss rate to get the throughput.
612 ${actual_dnstream_bw_used}= Evaluate
613 ... (100 - ${dndict['end']['sum']['lost_percent']})*${dndict['end']['sum']['bits_per_second']}/100000
614
615 ${pct_limit_up}= Evaluate 100*${actual_upstream_bw_used}/${limiting_bw_value_upstream}
616 ${pct_limit_dn}= Evaluate 100*${actual_dnstream_bw_used}/${limiting_bw_value_dnstream}
617 Log Up: bwprof ${limiting_bw_value_upstream}Kbps, got ${actual_upstream_bw_used}Kbps (${pct_limit_up}%)
618 Log Down: bwprof ${limiting_bw_value_dnstream}Kbps, got ${actual_dnstream_bw_used}Kbps (${pct_limit_dn}%)
619
620 Should Be True ${pct_limit_up} <= ${upper_margin_pct}
621 ... The upstream bandwidth exceeded the limit (${pct_limit_up}% of limit)
Andy Baviereff938d2020-06-29 18:27:49 -0700622 # VOL-3125: downstream bw limit not enforced. Uncomment when fixed.
623 #Should Be True ${pct_limit_dn} <= ${upper_margin_pct}
624 #... The downstream bandwidth exceeded the limit (${pct_limit_dn}% of limit)
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000625 Should Be True ${pct_limit_up} >= ${lower_margin_pct}
626 ... The upstream bandwidth guarantee was not met (${pct_limit_up}% of resv)
627 Should Be True ${pct_limit_dn} >= ${lower_margin_pct}
628 ... The downstream bandwidth guarantee was not met (${pct_limit_dn}% of resv)
629 END
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800630
Suraj Gour33651272020-05-04 10:10:16 +0530631Validate parsing of data traffic through voltha using tech profile
632 [Documentation] Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable
633 ... Prerequisite tools : Tcpdump and Mausezahn traffic generator on both RG and DHCP/BNG VMs
634 ... Install jq tool to read json file, where test suite is being running
Girish Gowdrabbfbbc32021-05-17 14:36:58 -0700635 ... This test sends TCP packets with pbits between 0 and 7 and validates that
Suraj Gour33651272020-05-04 10:10:16 +0530636 ... the pbits are preserved by the PON.
Hardik Windlass04d791e2021-07-12 16:23:13 +0000637 [Tags] dataplane TechProfile VOL-2054 notready
Suraj Gour33651272020-05-04 10:10:16 +0530638 [Setup] Start Logging TechProfile
639 [Teardown] Run Keywords Collect Logs
640 ... AND Stop Logging TechProfile
641 Pass Execution If '${has_dataplane}'=='False'
642 ... Skipping test: Technology profile validation can be done only in physical pod
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800643 FOR ${I} IN RANGE 0 ${num_all_onus}
Suraj Gour33651272020-05-04 10:10:16 +0530644 ${src}= Set Variable ${hosts.src[${I}]}
645 ${dst}= Set Variable ${hosts.dst[${I}]}
646
647 ${bng_ip}= Get Variable Value ${dst['noroot_ip']}
648 ${bng_user}= Get Variable Value ${dst['noroot_user']}
649 ${bng_pass}= Get Variable Value ${dst['noroot_pass']}
Andy Bavierf4b7d1d2020-06-30 11:14:04 -0700650 Pass Execution If "${bng_ip}" == "${NONE}" or "${bng_user}" == "${NONE}" or "${bng_pass}" == "${NONE}"
Suraj Gour33651272020-05-04 10:10:16 +0530651 ... Skipping test: credentials for BNG login required in deployment config
652
653 ${stdout} ${stderr} ${rc}= Execute Remote Command which mausezahn tcpdump
654 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
655 Pass Execution If ${rc} != 0 Skipping test: mausezahn / tcpdump not found on the RG
656 ${stdout} ${stderr} ${rc}= Execute Remote Command which mausezahn tcpdump
657 ... ${bng_ip} ${bng_user} ${bng_pass} ${dst['container_type']} ${dst['container_name']}
658 Pass Execution If ${rc} != 0 Skipping test: mausezahn / tcpdump not found on the BNG
659 Log Upstream test
Andy Baviereff938d2020-06-29 18:27:49 -0700660 Run Keyword If ${has_dataplane} Create traffic with each pbit and capture at other end
Suraj Gour33651272020-05-04 10:10:16 +0530661 ... ${dst['dp_iface_ip_qinq']} ${dst['dp_iface_name']} ${src['dp_iface_name']}
Girish Gowdra66cd95d2021-07-08 10:31:54 -0700662 ... 0 tcp 0 ${src['s_tag']} upstream vlan
Suraj Gour33651272020-05-04 10:10:16 +0530663 ... ${bng_ip} ${bng_user} ${bng_pass} ${dst['container_type']} ${dst['container_name']}
664 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
665 Log Downstream test
666 ${rg_ip} ${stderr} ${rc}= Execute Remote Command
667 ... ifconfig ${src['dp_iface_name']} | grep 'inet addr:' | cut -d: -f2 | awk '{ print $1 }'
668 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
669 Should Be Equal As Integers ${rc} 0 Could not get RG's IP address
Andy Baviereff938d2020-06-29 18:27:49 -0700670 Run Keyword If ${has_dataplane} Create traffic with each pbit and capture at other end
Girish Gowdra66cd95d2021-07-08 10:31:54 -0700671 ... ${rg_ip} ${src['dp_iface_name']} ${dst['dp_iface_name']}
672 ... 0 tcp ${src['c_tag']} ${src['s_tag']} downstream tcp
Suraj Gour33651272020-05-04 10:10:16 +0530673 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
674 ... ${bng_ip} ${bng_user} ${bng_pass} ${dst['container_type']} ${dst['container_name']}
675 END
676
Hardik Windlass16cdf962020-04-29 15:26:50 +0530677Test Disable and Enable OLT PON Port
678 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
679 ... Assuming that all the ONUs are DHCP/pingable (i.e. assuming sanityDt test was executed)
680 ... Perform disable on the OLT PON Port and validate that the pings do not succeed
681 ... Perform enable on the OLT PON Port and validate that the pings are successful
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000682 [Tags] functional DisableEnableOltPonPort VOL-2577 multi-uni
Hardik Windlass16cdf962020-04-29 15:26:50 +0530683 [Setup] Run Keywords Start Logging DisableEnableOltPonPort
684 ... AND Setup
685 [Teardown] Run Keywords Collect Logs
Hardik Windlass41701e82021-01-12 17:44:44 +0000686 ... AND Delete All Devices and Verify
Girish Gowdraf244d5b2021-09-01 17:16:16 -0700687 ... AND Run Keyword If ${logging} Collect Logs
688 ... AND Stop Logging DisableEnableOltPonPort
Hardik Windlass16cdf962020-04-29 15:26:50 +0530689 Run Keyword If ${has_dataplane} Clean Up Linux
690 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
Hardik Windlass41701e82021-01-12 17:44:44 +0000691 # Multi-OLTs
692 FOR ${I} IN RANGE 0 ${olt_count}
693 ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn
694 Disable Enable PON Port Per OLT ${olt_serial_number}
Hardik Windlass16cdf962020-04-29 15:26:50 +0530695 END
696
Gayathri.Selvan5d23e522020-09-15 17:26:25 +0530697Data plane Bandwidth profile update verification
698 [Documentation] Test bandwidth profile is updated for one subscriber and not changed for other subscribers.
699 ... Assumes iperf3 and jq installed on client and iperf -s running on DHCP server
700 ... Assumes Default and User_Bandwidth2 profiles are configured as bandwidth profiles
701 [Tags] non-critical dataplane BandwidthProfileUpdateTCP VOL-2053
702 [Setup] Start Logging BandwidthProfileUpdateTCP
703 [Teardown] Run Keywords Collect Logs
704 ... AND Stop Logging BandwidthProfileUpdateTCP
705 ... AND Send File To Onos ${CURDIR}/../../tests/data/${POD_NAME}-sadis.json
706 Pass Execution If '${has_dataplane}'=='False'
707 ... Bandwidth profile validation can be done only in physical pod. Skipping this test in BBSIM.
708 Delete All Devices And Verify
709 Run Keyword If ${has_dataplane} Clean Up Linux
710 Setup
711 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
712 # Update the Bandwidth Profile for the First Subscriber under test
713 ${src}= Set Variable ${hosts.src[${0}]}
714 ${dst}= Set Variable ${hosts.dst[${0}]}
715 ${of_id}= Get ofID From OLT List ${src['olt']}
TorstenThiemedda37652021-11-11 16:22:05 +0000716 ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id}
Gayathri.Selvan5d23e522020-09-15 17:26:25 +0530717 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
718 ... ${of_id} ${src['uni_id']}
719 ${subscriber_id}= Set Variable ${of_id}/${onu_port}
720 ${oldBwName} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id} upstreamBandwidthProfile
721 # Delete the existing subscriber
722 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
723 ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port}
724 # Change the bandwidth profile and load the configuration
Hardik Windlassaa41bb42021-07-23 15:32:43 +0000725 ${newBwName} Set Variable If ${oldBwName} == 'Default' 'User_Bandwidth2' 'Default'
Gayathri.Selvan5d23e522020-09-15 17:26:25 +0530726 ${cmd} Catenate
727 ... sed 's/upstreamBandwidthProfile": "${oldBwName}"/upstreamBandwidthProfile": "${newBwName}"/g'
728 ... ${CURDIR}/../../tests/data/${POD_NAME}-sadis.json > ${CURDIR}/../../tests/data/${POD_NAME}-sadis-new.json
729 ${rc} Run and Return RC ${cmd}
730 Send File To Onos ${CURDIR}/../../tests/data/${POD_NAME}-sadis-new.json
731 # Re-add the subscriber with new bandwidth profile
732 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
733 ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port}
734 # Verify that no pending flows exist for the ONU port
735 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
736 ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
737 # Verify subscriber access flows are added for the ONU port
738 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
739 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
740 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
741 # Verify Meters in ONOS
742 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
743 ... Verify Meters in ONOS ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} ${onu_port}
744 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
745 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
746 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
747 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
748 ... ${dst['container_name']}
749 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
750 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
751 # Verify new bandwidth profile is applied and other subscribers are working fine
752 ${checkBwName} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id} upstreamBandwidthProfile
753 Should Be Equal ${checkBwName} ${newBwName} The bandwidth profile is not updated properly
754 FOR ${I} IN RANGE 0 ${num_all_onus}
755 ${src}= Set Variable ${hosts.src[${I}]}
756 ${dst}= Set Variable ${hosts.dst[${I}]}
757 ${of_id}= Get ofID From OLT List ${src['olt']}
758
759 # Check for iperf3 and jq tools
760 ${stdout} ${stderr} ${rc}= Execute Remote Command which iperf3 jq
761 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
762 Pass Execution If ${rc} != 0 Skipping test: iperf3 / jq not found on the RG
763
764 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
765 ... ${of_id} ${src['uni_id']}
766 ${subscriber_id}= Set Variable ${of_id}/${onu_port}
767 ${bandwidth_profile_name} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id}
768 ... upstreamBandwidthProfile
769 ${limiting_bw_value_upstream} Get Limiting Bandwidth Details ${bandwidth_profile_name}
770 ${bandwidth_profile_name} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id}
771 ... downstreamBandwidthProfile
772 ${limiting_bw_value_dnstream} Get Limiting Bandwidth Details ${bandwidth_profile_name}
773
774 # Stream TCP packets from RG to server
775 ${updict}= Run Iperf3 Test Client ${src} server=${dst['dp_iface_ip_qinq']}
776 ... args=-t 30
777 ${actual_upstream_bw_used}= Evaluate ${updict['end']['sum_received']['bits_per_second']}/1000
778
779 # Stream TCP packets from server to RG
780 ${dndict}= Run Iperf3 Test Client ${src} server=${dst['dp_iface_ip_qinq']}
781 ... args=-R -t 30
782 ${actual_dnstream_bw_used}= Evaluate ${dndict['end']['sum_received']['bits_per_second']}/1000
783
784 ${pct_limit_up}= Evaluate 100*${actual_upstream_bw_used}/${limiting_bw_value_upstream}
785 ${pct_limit_dn}= Evaluate 100*${actual_dnstream_bw_used}/${limiting_bw_value_dnstream}
786 Log Up: bwprof ${limiting_bw_value_upstream}Kbps, got ${actual_upstream_bw_used}Kbps (${pct_limit_up}%)
787 Log Down: bwprof ${limiting_bw_value_dnstream}Kbps, got ${actual_dnstream_bw_used}Kbps (${pct_limit_dn}%)
788
789 Should Be True ${pct_limit_up} <= ${upper_margin_pct}
790 ... The upstream bandwidth exceeded the limit (${pct_limit_up}% of limit)
791 # VOL-3125: downstream bw limit not enforced. Uncomment when fixed.
792 #Should Be True ${pct_limit_dn} <= ${upper_margin_pct}
793 #... The downstream bandwidth exceeded the limit (${pct_limit_dn}% of limit)
794 Should Be True ${pct_limit_up} >= ${lower_margin_pct}
795 ... The upstream bandwidth guarantee was not met (${pct_limit_up}% of resv)
796 Should Be True ${pct_limit_dn} >= ${lower_margin_pct}
797 ... The downstream bandwidth guarantee was not met (${pct_limit_dn}% of resv)
798 END
799
Hardik Windlassb75cf1b2021-01-18 06:59:09 +0000800Test ONU Delete and Auto-Discovery
801 [Documentation] Tests the voltctl delete and Auto-Discovery of the ONU
802 [Tags] functional VOL-3098 ONUAutoDiscovery notready
803 [Setup] Run Keywords Start Logging ONUAutoDiscovery
804 ... AND Setup
805 [Teardown] Run Keywords Collect Logs
806 ... AND Delete All Devices and Verify
807 ... AND Run Keyword If ${logging} Collect Logs
808 ... AND Stop Logging ONUAutoDiscovery
809 # Performing Sanity Test to make sure subscribers are all AUTH+DHCP and pingable
810 Run Keyword If ${has_dataplane} Clean Up Linux
811 Perform Sanity Test
812 FOR ${I} IN RANGE 0 ${num_all_onus}
813 ${src}= Set Variable ${hosts.src[${I}]}
814 ${dst}= Set Variable ${hosts.dst[${I}]}
815 ${onu_device_id}= Get Device ID From SN ${src['onu']}
816 ${of_id}= Get ofID From OLT List ${src['olt']}
817 ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id}
818 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s
819 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
820 # Remove Subscriber Access (To replicate ATT workflow)
821 Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
822 ... volt-remove-subscriber-access ${of_id} ${onu_port}
823 # Additional sleep to let subscriber delete process
824 Sleep 10s
825 # Delete ONU and Verify Ping Fails
826 Delete Device ${onu_device_id}
827 Run Keyword If ${has_dataplane} Verify ping is successful except for given device
828 ... ${num_all_onus} ${src['onu']}
829 # Verify that no pending flows exist for the ONU port
830 Wait Until Keyword Succeeds ${timeout} 2s
831 ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
832 # ONU Auto-Discovery
833 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s
834 ... Get ONU Port in ONOS ${src['onu']} ${of_id} ${src['uni_id']}
835 # Check ONU port is Enabled in ONOS
836 Wait Until Keyword Succeeds ${timeout} 2s
837 ... Verify UNI Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']} ${src['uni_id']}
838 ${onu_device_id}= Get Device ID From SN ${src['onu']}
839 Run Keyword If ${has_dataplane} Clean Up Linux ${onu_device_id}
840 # Verify default EAPOL flows are added for the ONU port
841 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
842 ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} ${onu_port}
843 # Verify ONU state in voltha
844 Wait Until Keyword Succeeds ${timeout} 5s Validate Device ENABLED ACTIVE REACHABLE
845 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
846 # Perform Authentication
847 ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=.
848 ... /tmp/wpa ${src['dp_iface_name']} log
849 Run Keyword If ${has_dataplane} Validate Authentication True
850 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
851 ... ${src['container_type']} ${src['container_name']} ${wpa_log}
852 Wait Until Keyword Succeeds ${timeout} 2
853 ... Verify ONU in AAA-Users ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
854 Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
855 ... volt-add-subscriber-access ${of_id} ${onu_port}
856 # Verify that no pending flows exist for the ONU port
857 Wait Until Keyword Succeeds ${timeout} 2s
858 ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
859 # Verify subscriber access flows are added for the ONU port
860 Wait Until Keyword Succeeds ${timeout} 5s
861 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
862 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
863 # Verify subscriber EAPOL flow is installed
864 Wait Until Keyword Succeeds ${timeout} 5s
865 ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
866 ... ${onu_port} ${src['c_tag']}
867 # Verify Meters in ONOS
868 Wait Until Keyword Succeeds ${timeout} 5s
869 ... Verify Meters in ONOS ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} ${onu_port}
870 Run Keyword If ${has_dataplane} Validate DHCP and Ping True
871 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
872 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
873 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
874 ... ${dst['container_name']}
875 Wait Until Keyword Succeeds ${timeout} 2s
876 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
877 END
878
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -0700879*** Keywords ***
880Setup Suite
Andy Bavier88cd9f62019-11-26 16:22:33 -0700881 [Documentation] Set up the test suite
882 Common Test Suite Setup
Hung-Wei Chiucc6e6552020-06-04 12:57:38 -0700883 #Restore all ONUs
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800884 #Run Keyword If ${has_dataplane} RestoreONUs ${num_all_onus}
Suchitra Vemuri1d8e8172020-06-17 17:43:56 -0700885 #power_switch.robot needs it to support different vendor's power switch
886 ${switch_type}= Get Variable Value ${web_power_switch.type}
887 Run Keyword If "${switch_type}"!="" Set Global Variable ${powerswitch_type} ${switch_type}
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -0700888
David Bainbridgef81cd642019-11-20 00:14:47 +0000889Clear All Devices Then Create New Device
890 [Documentation] Remove any devices from VOLTHA and ONOS
David Bainbridgef81cd642019-11-20 00:14:47 +0000891 # Remove all devices from voltha and nos
892 Delete All Devices and Verify
David Bainbridgef81cd642019-11-20 00:14:47 +0000893 # Execute normal test Setup Keyword
894 Setup