blob: f87df61d3b911b33c581718116f8e7c523c3ac1e [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
Girish Gowdra8fd96962021-12-14 16:20:04 +0530106 [Setup] Run Keywords Start Logging DisableEnableONU
107 ... AND Run Keyword If ${has_dataplane} Set Non-Critical Tag for XGSPON Tech
Andy Bavier4a8450e2020-02-04 08:58:37 -0700108 [Teardown] Run Keywords Collect Logs
Andy Bavierabeba262020-02-07 16:22:16 -0700109 ... AND Stop Logging DisableEnableONU
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800110 FOR ${I} IN RANGE 0 ${num_all_onus}
Suchitra Vemuri6db89412019-11-14 14:52:54 -0800111 ${src}= Set Variable ${hosts.src[${I}]}
112 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800113 ${of_id}= Get ofID From OLT List ${src['olt']}
TorstenThiemedda37652021-11-11 16:22:05 +0000114 ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id}
Suchitra Vemuri6db89412019-11-14 14:52:54 -0800115 ${onu_device_id}= Get Device ID From SN ${src['onu']}
116 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000117 ... ${of_id} ${src['uni_id']}
Suchitra Vemuri6db89412019-11-14 14:52:54 -0800118 Disable Device ${onu_device_id}
Andy Bavier46c8be32020-01-21 10:06:27 -0700119 Wait Until Keyword Succeeds 20s 2s Test Devices Disabled in VOLTHA Id=${onu_device_id}
Andy Bavier33e6dd32020-01-16 13:35:20 -0700120 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
121 ... Wait Until Keyword Succeeds 60s 2s
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700122 ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
123 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Suchitra Vemuri6db89412019-11-14 14:52:54 -0800124 Enable Device ${onu_device_id}
Girish Gowdrafc0bdf22021-12-06 16:57:50 +0530125 Wait Until Keyword Succeeds ${timeout} 5s
126 ... Validate Device ENABLED ACTIVE
127 ... REACHABLE ${src['onu']} onu=True onu_reason=omci-flows-pushed
128 # Workaround for issue seen in VOL-4489. Keep this workaround until VOL-4489 is fixed.
129 Run Keyword If ${has_dataplane} Reboot XGSPON ONU ${src['olt']} ${src['onu']} omci-flows-pushed
130 # Workaround ends here for issue seen in VOL-4489.
Suchitra Vemuri6db89412019-11-14 14:52:54 -0800131 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
ubuntu6b6e7d42020-03-02 12:35:42 -0800132 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Hardik Windlass21807632020-04-14 16:24:55 +0530133 # Verify subscriber access flows are added for the ONU port
134 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
135 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
136 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
Andy Bavier33e6dd32020-01-16 13:35:20 -0700137 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
138 ... Wait Until Keyword Succeeds 60s 2s
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700139 ... Check Ping True ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
140 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Suchitra Vemuri6db89412019-11-14 14:52:54 -0800141 END
142
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800143Test Subscriber Delete and Add
144 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
145 ... Assuming that all the ONUs are authenticated/DHCP/pingable
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700146 ... Delete a subscriber and validate that the pings do not succeed
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800147 ... Re-add the subscriber and validate that the pings are successful
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000148 [Tags] functional SubAddDelete released multi-uni
Andy Baviere187eda2020-04-20 15:00:02 -0700149 [Setup] Start Logging SubAddDelete
Andy Bavier4a8450e2020-02-04 08:58:37 -0700150 [Teardown] Run Keywords Collect Logs
Andy Bavierabeba262020-02-07 16:22:16 -0700151 ... AND Stop Logging SubAddDelete
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800152 FOR ${I} IN RANGE 0 ${num_all_onus}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800153 ${src}= Set Variable ${hosts.src[${I}]}
154 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800155 ${of_id}= Get ofID From OLT List ${src['olt']}
TorstenThiemedda37652021-11-11 16:22:05 +0000156 ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800157 ${onu_device_id}= Get Device ID From SN ${src['onu']}
158 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000159 ... ${of_id} ${src['uni_id']}
TorstenThieme4e2168e2021-06-22 14:01:47 +0000160 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800161 ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port}
Suchitra Vemuri9da44302020-03-04 14:24:49 -0800162 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
163 ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Andy Bavier33e6dd32020-01-16 13:35:20 -0700164 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
165 ... Wait Until Keyword Succeeds 60s 2s
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700166 ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
167 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
TorstenThieme4e2168e2021-06-22 14:01:47 +0000168 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800169 ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800170 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
Suchitra Vemuri9da44302020-03-04 14:24:49 -0800171 ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
172 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
ubuntu6b6e7d42020-03-02 12:35:42 -0800173 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Hardik Windlass21807632020-04-14 16:24:55 +0530174 # Verify subscriber access flows are added for the ONU port
175 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
176 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
177 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
Andy Bavier33e6dd32020-01-16 13:35:20 -0700178 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
179 ... Wait Until Keyword Succeeds 60s 2s
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700180 ... Check Ping True ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
181 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800182 END
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800183
suraj gourd5cfdbb2019-12-13 12:44:55 +0000184Check DHCP attempt fails when subscriber is not added
185 [Documentation] Validates when removed subscriber access, DHCP attempt, ping fails and
186 ... when again added subscriber access, DHCP attempt, ping succeeds
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700187 ... Assuming that test1 or sanity test was executed where all the ONUs are authenticated/DHCP/pingable
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000188 [Tags] functional SubsRemoveDHCP released multi-uni
Andy Baviere187eda2020-04-20 15:00:02 -0700189 [Setup] Start Logging SubsRemoveDHCP
Andy Bavier4a8450e2020-02-04 08:58:37 -0700190 [Teardown] Run Keywords Collect Logs
Andy Bavierabeba262020-02-07 16:22:16 -0700191 ... AND Stop Logging SubsRemoveDHCP
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800192 FOR ${I} IN RANGE 0 ${num_all_onus}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000193 ${src}= Set Variable ${hosts.src[${I}]}
194 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800195 ${of_id}= Get ofID From OLT List ${src['olt']}
TorstenThiemedda37652021-11-11 16:22:05 +0000196 ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700197 ${onu_device_id}= Get Device ID From SN ${src['onu']}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000198 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000199 ... ${of_id} ${src['uni_id']}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800200 Run Keyword And Ignore Error Login And Run Command On Remote System killall dhclient ${src['ip']}
201 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
202 Run Keyword And Ignore Error Login And Run Command On Remote System ps -ef | grep dhclient ${src['ip']}
203 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
TorstenThieme4e2168e2021-06-22 14:01:47 +0000204 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000205 ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port}
Suchitra Vemuri8f1d3062020-02-28 11:57:37 -0800206 Sleep 15s
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800207 Run Keyword And Ignore Error Login And Run Command On Remote System ps -ef | grep dhclient ${src['ip']}
208 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700209 Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds ${timeout} 2s
210 ... Delete IP Addresses from Interface on Remote Host ${src['dp_iface_name']} ${src['ip']}
211 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
212 Run Keyword And Ignore Error Login And Run Command On Remote System
213 ... ifconfig | grep -A 10 ens ${src['ip']}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800214 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000215 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping False
216 ... False ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
217 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
218 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
219 ... ${dst['container_name']}
TorstenThieme4e2168e2021-06-22 14:01:47 +0000220 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000221 ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port}
Suchitra Vemuri9da44302020-03-04 14:24:49 -0800222 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
223 ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
Hardik Windlass21807632020-04-14 16:24:55 +0530224 # Verify subscriber access flows are added for the ONU port
225 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
226 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
227 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000228 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
229 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
230 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
231 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
232 ... ${dst['container_name']}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800233 END
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800234
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800235Test Disable and Enable ONU scenario for ATT workflow
236 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
237 ... Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable
238 ... Perform disable on the ONUs, call volt-remove-subscriber and validate that the pings do not succeed
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700239 ... Perform enable on the ONUs, authentication check, volt-add-subscriber-access and
240 ... validate that the pings are successful
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800241 ... VOL-2284
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000242 [Tags] functional ATT_DisableEnableONU released multi-uni
Girish Gowdra8fd96962021-12-14 16:20:04 +0530243 [Setup] Run Keywords Start Logging ATT_DisableEnableONU
244 ... AND Run Keyword If ${has_dataplane} Set Non-Critical Tag for XGSPON Tech
Andy Bavier4a8450e2020-02-04 08:58:37 -0700245 [Teardown] Run Keywords Collect Logs
Andy Bavierabeba262020-02-07 16:22:16 -0700246 ... AND Stop Logging ATT_DisableEnableONU
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800247 FOR ${I} IN RANGE 0 ${num_all_onus}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800248 ${src}= Set Variable ${hosts.src[${I}]}
249 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800250 ${of_id}= Get ofID From OLT List ${src['olt']}
TorstenThiemedda37652021-11-11 16:22:05 +0000251 ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800252 ${onu_device_id}= Get Device ID From SN ${src['onu']}
253 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000254 ... ${of_id} ${src['uni_id']}
Suchitra Vemuri014b6032020-02-14 18:13:13 -0800255 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s
Hardik Windlass39015672021-07-05 05:48:08 +0000256 ... Verify UNI Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']} ${src['uni_id']}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800257 Disable Device ${onu_device_id}
Hardik Windlass5e214b22021-02-26 10:37:14 +0000258 Wait Until Keyword Succeeds ${timeout} 2s Test Devices Disabled in VOLTHA Id=${onu_device_id}
TorstenThieme4e2168e2021-06-22 14:01:47 +0000259 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800260 ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700261 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
262 ... Wait Until Keyword Succeeds 60s 2s Check Ping
263 ... False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
264 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Hardik Windlass5e214b22021-02-26 10:37:14 +0000265 ... ELSE Sleep 10s
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800266 Enable Device ${onu_device_id}
ubuntu6b6e7d42020-03-02 12:35:42 -0800267 Wait Until Keyword Succeeds ${timeout} 2s Verify Eapol Flows Added For ONU ${ONOS_SSH_IP}
Matteo Scandolo7e519fb2021-08-13 11:35:16 -0700268 ... ${ONOS_SSH_PORT} ${of_id} ${onu_port}
Girish Gowdrafc0bdf22021-12-06 16:57:50 +0530269 # Workaround for issue seen in VOL-4489. Keep this workaround until VOL-4489 is fixed.
270 Run Keyword If ${has_dataplane} Reboot XGSPON ONU ${src['olt']} ${src['onu']} omci-flows-pushed
271 # Workaround ends here for issue seen in VOL-4489.
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700272 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure
273 ... Validate Authentication After Reassociate True
274 ... ${src['dp_iface_name']} ${src['ip']} ${src['user']} ${src['pass']}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800275 ... ${src['container_type']} ${src['container_name']}
ubuntu6b6e7d42020-03-02 12:35:42 -0800276 Wait Until Keyword Succeeds ${timeout} 2s Verify ONU in AAA-Users ${ONOS_SSH_IP}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700277 ... ${ONOS_SSH_PORT} ${onu_port}
TorstenThieme4e2168e2021-06-22 14:01:47 +0000278 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800279 ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port}
Hardik Windlass21807632020-04-14 16:24:55 +0530280 # Verify subscriber access flows are added for the ONU port
281 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
282 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
283 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800284 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
Andy Bavier08ae5852019-12-19 09:12:42 -0700285 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
Suchitra Vemuri5994cd12019-12-17 22:20:55 -0800286 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
287 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
288 ... ${dst['container_name']}
289 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
ubuntu6b6e7d42020-03-02 12:35:42 -0800290 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000291 END
suraj gourd5cfdbb2019-12-13 12:44:55 +0000292
Hardik Windlass2b37e712020-06-12 02:13:17 +0530293Test Disable and Enable OLT
294 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
295 ... Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable
296 ... Perform disable on the OLT and validate that the pings do not succeed
297 ... Perform enable on the OLT and validate that the pings are successful
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000298 [Tags] functional VOL-2410 DisableEnableOLT multi-uni
Hardik Windlass2b37e712020-06-12 02:13:17 +0530299 [Setup] Start Logging DisableEnableOLT
300 [Teardown] Run Keywords Collect Logs
301 ... AND Stop Logging DisableEnableOLT
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800302 #Disable the OLTs and verify the OLT/ONUs are disabled properly
303 FOR ${I} IN RANGE 0 ${olt_count}
304 ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn
305 ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
306 ${rc} ${output}= Run and Return Rc and Output
Matteo Scandolo5899be12020-11-11 15:38:07 -0800307 ... voltctl -c ${VOLTCTL_CONFIG} device disable ${olt_device_id}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800308 Should Be Equal As Integers ${rc} 0
309 Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device DISABLED UNKNOWN REACHABLE
310 ... ${olt_serial_number}
311 END
312 # Validate the ONUs
313 FOR ${I} IN RANGE 0 ${num_all_onus}
Hardik Windlass2b37e712020-06-12 02:13:17 +0530314 ${src}= Set Variable ${hosts.src[${I}]}
315 ${dst}= Set Variable ${hosts.dst[${I}]}
316 ${onu_device_id}= Get Device ID From SN ${src['onu']}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800317 ${of_id}= Get ofID From OLT List ${src['olt']}
Hardik Windlass2b37e712020-06-12 02:13:17 +0530318 ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000319 ... Get ONU Port in ONOS ${src['onu']} ${of_id} ${src['uni_id']}
Hardik Windlass2b37e712020-06-12 02:13:17 +0530320 Wait Until Keyword Succeeds ${timeout} 5s Validate Device ENABLED DISCOVERED
321 ... UNREACHABLE ${src['onu']} onu=false
322 #Verify that ping fails
323 Run Keyword If ${has_dataplane}
324 ... Run Keyword And Continue On Failure Wait Until Keyword Succeeds 60s 2s
325 ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']}
326 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
327 # Remove Subscriber Access (To replicate ATT workflow)
TorstenThieme4e2168e2021-06-22 14:01:47 +0000328 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
Hardik Windlass2b37e712020-06-12 02:13:17 +0530329 ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port}
Hardik Windlass2b37e712020-06-12 02:13:17 +0530330 END
331 #Enable the OLT back and check ONU, OLT status are back to "ACTIVE"
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800332 FOR ${I} IN RANGE 0 ${olt_count}
333 ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn
334 ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
335 Enable Device ${olt_device_id}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800336 Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device ENABLED ACTIVE REACHABLE
337 ... ${olt_serial_number}
338 #TODO: Update for PON_OLT ETHERNET_NNI
339 #Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Port Types
340 #... PON_OLT ETHERNET_NNI
341 END
Hardik Windlass2b37e712020-06-12 02:13:17 +0530342 Run Keyword If ${has_dataplane} Clean Up Linux
343 Wait Until Keyword Succeeds ${timeout} 5s Perform Sanity Test
344
Suchitra Vemuri937cd392020-01-12 17:10:42 -0800345Delete OLT, ReAdd OLT and Perform Sanity Test
346 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
347 ... Disable and Delete the OLT
348 ... Create/Enable the same OLT again
349 ... Validate authentication/DHCP/E2E pings succeed for all the ONUs connected to the OLT
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800350 [Tags] functional DeleteOLT released notready
Andy Baviere187eda2020-04-20 15:00:02 -0700351 [Setup] Start Logging DeleteOLT
Andy Bavier4a8450e2020-02-04 08:58:37 -0700352 [Teardown] Run Keywords Collect Logs
Andy Bavierabeba262020-02-07 16:22:16 -0700353 ... AND Stop Logging DeleteOLT
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800354 #TODO: Update test with new framework changes
Suchitra Vemuri937cd392020-01-12 17:10:42 -0800355 Run Keyword If ${has_dataplane} Clean Up Linux
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800356 FOR ${I} IN RANGE 0 ${olt_count}
357 ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn
358 ${of_id}= Get ofID From OLT List ${olt_serial_number}
359 Delete Device and Verify ${olt_serial_number}
360 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
361 ... Verify Device Flows Removed ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
362 END
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800363 Run Keyword If ${has_dataplane} Clean Up Linux
Suchitra Vemuri937cd392020-01-12 17:10:42 -0800364 # Recreate the OLT
Hardik Windlass480f3e22020-04-02 20:14:14 +0530365 Setup
Suchitra Vemuri937cd392020-01-12 17:10:42 -0800366 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
Suchitra Vemuri937cd392020-01-12 17:10:42 -0800367
Hema567f3012020-03-25 00:51:53 +0530368Check Mib State on OLT recreation after ONU, OLT deletion
369 [Documentation] Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable,
370 ... Disable and Delete the ONU, Disable and Delete the OLT
371 ... Create/Enable the OLT again and Check for the Mib State of the ONUs
372 [Tags] functional CheckMibState notready
Andy Baviere187eda2020-04-20 15:00:02 -0700373 [Setup] Start Logging CheckMibState
Hema567f3012020-03-25 00:51:53 +0530374 [Teardown] Run Keywords Collect Logs
375 ... AND Stop Logging CheckMibState
Hema567f3012020-03-25 00:51:53 +0530376 #Disable and Delete the ONU
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800377 FOR ${I} IN RANGE 0 ${num_all_onus}
Hema567f3012020-03-25 00:51:53 +0530378 ${src}= Set Variable ${hosts.src[${I}]}
379 ${dst}= Set Variable ${hosts.dst[${I}]}
380 ${onu_device_id}= Get Device ID From SN ${src['onu']}
381 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000382 ... ${of_id} ${src['uni_id']}
Hema567f3012020-03-25 00:51:53 +0530383 Disable Device ${onu_device_id}
384 Wait Until Keyword Succeeds 20s 2s Test Devices Disabled in VOLTHA Id=${onu_device_id}
385 Delete Device ${onu_device_id}
386 END
387 #Disable and Delete the OLT
Hardik Windlass480f3e22020-04-02 20:14:14 +0530388 Delete Device and Verify
389 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
390 ... Verify Device Flows Removed ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
391 # Recreate the OLT
Hema567f3012020-03-25 00:51:53 +0530392 Run Keyword If ${has_dataplane} Sleep 180s
Andrea Campanella3dcce272021-01-15 16:04:47 +0100393 # This dneeds to be done in for loop, test is not ready
394 ${olt_device_id}= Run Keyword If "${list_olts}[${I}][type]" == "${None}"
Suchitra Vemuri09f878d2021-02-10 18:19:04 -0800395 ... Create Device ${list_olts}[${I}][ip] ${list_olts}[${I}][oltport]
396 ... ELSE Create Device ${list_olts}[${I}][ip] ${list_olts}[${I}][oltport] ${list_olts}[${I}][type]
Hema567f3012020-03-25 00:51:53 +0530397 Set Suite Variable ${olt_device_id}
398 Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device PREPROVISIONED
Hardik Windlass8b446492021-06-10 06:25:23 +0000399 ... UNKNOWN UNKNOWN ${olt_device_id} by_dev_id=True
Hema567f3012020-03-25 00:51:53 +0530400 Enable Device ${olt_device_id}
401 Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device ENABLED ACTIVE REACHABLE
402 ... ${olt_serial_number}
403 #Check for the ONU status and ONU Mib State should be "omci-flows-pushed"
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800404 FOR ${I} IN RANGE 0 ${num_all_onus}
Hema567f3012020-03-25 00:51:53 +0530405 ${src}= Set Variable ${hosts.src[${I}]}
406 ${dst}= Set Variable ${hosts.dst[${I}]}
407 ${onu_device_id}= Get Device ID From SN ${src['onu']}
408 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000409 ... ${of_id} ${src['uni_id']}
Suchitra Vemuricdc32d82020-07-17 12:24:46 -0700410 Wait Until Keyword Succeeds 180s 5s Validate Device ENABLED ACTIVE
Hema567f3012020-03-25 00:51:53 +0530411 ... REACHABLE ${src['onu']} onu=True onu_reason=omci-flows-pushed
412 END
413
Hema783279b2020-01-22 15:37:37 +0530414Test disable ONUs and OLT then delete ONUs and OLT
415 [Documentation] On deployed POD, disable the ONU, disable the OLT and then delete ONU and OLT.
416 ... This TC is to confirm that ONU removal is not impacting OLT
417 ... Devices will be removed during the execution of this TC
418 ... so calling setup at the end to add the devices back to avoid the confusion.
Suchitra Vemuria7dae322020-02-19 22:38:18 -0800419 [Tags] functional VOL-2354 DisableDeleteONUandOLT released
Andy Baviere187eda2020-04-20 15:00:02 -0700420 [Setup] Start Logging DisableDeleteONUandOLT
Andy Bavier4a8450e2020-02-04 08:58:37 -0700421 [Teardown] Run Keywords Collect Logs
Andy Bavierabeba262020-02-07 16:22:16 -0700422 ... AND Stop Logging DisableDeleteONUandOLT
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800423 #${olt_device_id}= Get Device ID From SN ${olt_serial_number}
Suchitra Vemuri02170552021-03-23 16:40:50 -0700424 @{onu_reason}= Create List tech-profile-config-downloaded-success omci-flows-pushed
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800425 FOR ${I} IN RANGE 0 ${num_all_onus}
Hema783279b2020-01-22 15:37:37 +0530426 ${src}= Set Variable ${hosts.src[${I}]}
427 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800428 ${of_id}= Get ofID From OLT List ${src['olt']}
Hema783279b2020-01-22 15:37:37 +0530429 ${onu_device_id}= Get Device ID From SN ${src['onu']}
Suchitra Vemuricdc32d82020-07-17 12:24:46 -0700430 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 360s 5s
Suchitra Vemuri014b6032020-02-14 18:13:13 -0800431 ... Validate Device ENABLED ACTIVE
Suchitra Vemuri02170552021-03-23 16:40:50 -0700432 ... REACHABLE ${src['onu']} onu=True onu_reason=${onu_reason}
Suchitra Vemuri014b6032020-02-14 18:13:13 -0800433 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
434 ... Validate OLT Device ENABLED ACTIVE
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800435 ... REACHABLE ${src['olt']}
Hema783279b2020-01-22 15:37:37 +0530436 ${rc} ${output}= Run and Return Rc and Output
Matteo Scandolo5899be12020-11-11 15:38:07 -0800437 ... voltctl -c ${VOLTCTL_CONFIG} device disable ${onu_device_id}
Hema783279b2020-01-22 15:37:37 +0530438 Should Be Equal As Integers ${rc} 0
Suchitra Vemuri014b6032020-02-14 18:13:13 -0800439 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
440 ... Validate Device DISABLED UNKNOWN
Hema783279b2020-01-22 15:37:37 +0530441 ... REACHABLE ${src['onu']} onu=false
Suchitra Vemuricdc32d82020-07-17 12:24:46 -0700442 Run Keyword And Continue On Failure Wait Until Keyword Succeeds 360s 5s
Suchitra Vemuri014b6032020-02-14 18:13:13 -0800443 ... Validate OLT Device ENABLED ACTIVE
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800444 ... REACHABLE ${src['olt']}
Hema783279b2020-01-22 15:37:37 +0530445 END
Matteo Scandolo5899be12020-11-11 15:38:07 -0800446
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800447 # Disable all OLTs
448 FOR ${I} IN RANGE 0 ${olt_count}
449 ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn
450 ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
451 ${rc} ${output}= Run and Return Rc and Output
Matteo Scandolo5899be12020-11-11 15:38:07 -0800452 ... voltctl -c ${VOLTCTL_CONFIG} device disable ${olt_device_id}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800453 Should Be Equal As Integers ${rc} 0
454 Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device DISABLED UNKNOWN REACHABLE
455 ... ${olt_serial_number}
456 END
457 # Validate ONUs after OLT disable
458 FOR ${I} IN RANGE 0 ${num_all_onus}
Hema783279b2020-01-22 15:37:37 +0530459 ${src}= Set Variable ${hosts.src[${I}]}
460 ${dst}= Set Variable ${hosts.dst[${I}]}
461 ${onu_device_id}= Get Device ID From SN ${src['onu']}
Suchitra Vemuri014b6032020-02-14 18:13:13 -0800462 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
463 ... Validate Device DISABLED DISCOVERED
464 ... UNREACHABLE ${src['onu']} onu=false
Hardik Windlass7da42ca2020-03-13 14:25:44 +0530465 Delete Device ${onu_device_id}
Suchitra Vemuri014b6032020-02-14 18:13:13 -0800466 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
467 ... Validate OLT Device DISABLED UNKNOWN
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800468 ... REACHABLE ${src['olt']}
Hema783279b2020-01-22 15:37:37 +0530469 END
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800470 # Delete all OLTs
471 Delete All Devices and Verify
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000472 # Re-create the Devices and Perform Sanity
473 Setup
474 Run Keyword If ${has_dataplane} Clean Up Linux
475 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
David Bainbridgef81cd642019-11-20 00:14:47 +0000476
Suchitra Vemuri9a6dd6d2020-02-28 17:46:26 -0800477Validate authentication on a disabled ONU
suraj gour472da1c2020-02-25 05:44:51 +0000478 [Documentation] Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable
479 ... Perform disable on the ONUs and validate that the authentication do not succeed
480 ... Perform enable on the ONUs and validate that authentication successful
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000481 [Tags] functional DisableONU_AuthCheck multi-uni
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800482 # Creates Devices in the Setup
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000483 [Setup] Start Logging DisableONU_AuthCheck
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800484 [Teardown] Run Keywords Collect Logs
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800485 ... AND Delete All Devices and Verify
Girish Gowdraf244d5b2021-09-01 17:16:16 -0700486 ... AND Run Keyword If ${logging} Collect Logs
487 ... AND Stop Logging DisableONU_AuthCheck
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800488 Clean WPA Process
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800489 FOR ${I} IN RANGE 0 ${num_all_onus}
suraj gour472da1c2020-02-25 05:44:51 +0000490 ${src}= Set Variable ${hosts.src[${I}]}
491 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800492 ${of_id}= Get ofID From OLT List ${src['olt']}
suraj gour472da1c2020-02-25 05:44:51 +0000493 ${onu_device_id}= Get Device ID From SN ${src['onu']}
494 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000495 ... ${of_id} ${src['uni_id']}
suraj gour472da1c2020-02-25 05:44:51 +0000496 Disable Device ${onu_device_id}
497 Wait Until Keyword Succeeds ${timeout} 5s Validate Device DISABLED UNKNOWN
498 ... REACHABLE ${src['onu']} onu=false
Andy Bavier84834d42020-02-25 13:49:50 -0700499 ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=.
500 ... /tmp/wpa ${src['dp_iface_name']} log
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800501 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication False
502 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
Andy Bavier84834d42020-02-25 13:49:50 -0700503 ... ${src['container_type']} ${src['container_name']} ${wpa_log}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800504 Enable Device ${onu_device_id}
505 Run Keyword And Ignore Error Kill Linux Process [w]pa_supplicant ${src['ip']}
506 ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800507 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
508 ... ENABLED ACTIVE REACHABLE ${src['onu']} onu=True onu_reason=omci-flows-pushed
509 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True
510 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
Andy Bavier84834d42020-02-25 13:49:50 -0700511 ... ${src['container_type']} ${src['container_name']} ${wpa_log}
suraj gour472da1c2020-02-25 05:44:51 +0000512 Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id}
513 END
suraj gour472da1c2020-02-25 05:44:51 +0000514
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000515Data plane verification using TCP
516 [Documentation] Test bandwidth profile is met and not exceeded for each subscriber.
517 ... Assumes iperf3 and jq installed on client and iperf -s running on DHCP server
Matteo Scandoloab48f9e2021-06-11 17:08:00 +0200518 [Tags] non-critical dataplane BandwidthProfileTCP VOL-2052
Andy Bavierdfbcaef2020-05-27 15:34:18 -0700519 [Setup] Start Logging BandwidthProfileTCP
520 [Teardown] Run Keywords Collect Logs
521 ... AND Stop Logging BandwidthProfileTCP
Andy Baviereff938d2020-06-29 18:27:49 -0700522 Pass Execution If '${has_dataplane}'=='False'
523 ... Bandwidth profile validation can be done only in physical pod. Skipping this test in BBSIM.
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800524 Delete All Devices And Verify
525 Run Keyword If ${has_dataplane} Clean Up Linux
526 setup
527 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
528
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800529 FOR ${I} IN RANGE 0 ${num_all_onus}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000530 ${src}= Set Variable ${hosts.src[${I}]}
531 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800532 ${of_id}= Get ofID From OLT List ${src['olt']}
Andy Bavierf6ab19c2020-05-14 10:34:47 -0700533
534 # Check for iperf3 and jq tools
535 ${stdout} ${stderr} ${rc}= Execute Remote Command which iperf3 jq
536 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
537 Pass Execution If ${rc} != 0 Skipping test: iperf3 / jq not found on the RG
538
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000539 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000540 ... ${of_id} ${src['uni_id']}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000541 ${subscriber_id}= Set Variable ${of_id}/${onu_port}
542 ${bandwidth_profile_name} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id}
543 ... upstreamBandwidthProfile
Girish Gowdrad769b412021-05-16 11:09:46 -0700544 ${limiting_bw_value_upstream} Get Limiting Bandwidth Details ${bandwidth_profile_name}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000545 ${bandwidth_profile_name} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id}
546 ... downstreamBandwidthProfile
Girish Gowdrad769b412021-05-16 11:09:46 -0700547 ${limiting_bw_value_dnstream} Get Limiting Bandwidth Details ${bandwidth_profile_name}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000548
549 # Stream TCP packets from RG to server
550 ${updict}= Run Iperf3 Test Client ${src} server=${dst['dp_iface_ip_qinq']}
551 ... args=-t 30
552 ${actual_upstream_bw_used}= Evaluate ${updict['end']['sum_received']['bits_per_second']}/1000
553
554 # Stream TCP packets from server to RG
555 ${dndict}= Run Iperf3 Test Client ${src} server=${dst['dp_iface_ip_qinq']}
556 ... args=-R -t 30
557 ${actual_dnstream_bw_used}= Evaluate ${dndict['end']['sum_received']['bits_per_second']}/1000
558
559 ${pct_limit_up}= Evaluate 100*${actual_upstream_bw_used}/${limiting_bw_value_upstream}
560 ${pct_limit_dn}= Evaluate 100*${actual_dnstream_bw_used}/${limiting_bw_value_dnstream}
561 Log Up: bwprof ${limiting_bw_value_upstream}Kbps, got ${actual_upstream_bw_used}Kbps (${pct_limit_up}%)
562 Log Down: bwprof ${limiting_bw_value_dnstream}Kbps, got ${actual_dnstream_bw_used}Kbps (${pct_limit_dn}%)
563
564 Should Be True ${pct_limit_up} <= ${upper_margin_pct}
565 ... The upstream bandwidth exceeded the limit (${pct_limit_up}% of limit)
Andy Baviereff938d2020-06-29 18:27:49 -0700566 # VOL-3125: downstream bw limit not enforced. Uncomment when fixed.
567 #Should Be True ${pct_limit_dn} <= ${upper_margin_pct}
568 #... The downstream bandwidth exceeded the limit (${pct_limit_dn}% of limit)
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000569 Should Be True ${pct_limit_up} >= ${lower_margin_pct}
570 ... The upstream bandwidth guarantee was not met (${pct_limit_up}% of resv)
571 Should Be True ${pct_limit_dn} >= ${lower_margin_pct}
572 ... The downstream bandwidth guarantee was not met (${pct_limit_dn}% of resv)
573 END
574
575Data plane verification using UDP
576 [Documentation] Test bandwidth profile is met and not exceeded for each subscriber.
577 ... Assumes iperf3 and jq installed on client and iperf -s running on DHCP server
Matteo Scandoloab48f9e2021-06-11 17:08:00 +0200578 [Tags] non-critical dataplane BandwidthProfileUDP VOL-2052
Andy Bavierdfbcaef2020-05-27 15:34:18 -0700579 [Setup] Start Logging BandwidthProfileUDP
580 [Teardown] Run Keywords Collect Logs
581 ... AND Stop Logging BandwidthProfileUDP
Andy Baviereff938d2020-06-29 18:27:49 -0700582 Pass Execution If '${has_dataplane}'=='False'
583 ... Bandwidth profile validation can be done only in physical pod. Skipping this test in BBSIM.
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800584 FOR ${I} IN RANGE 0 ${num_all_onus}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000585 ${src}= Set Variable ${hosts.src[${I}]}
586 ${dst}= Set Variable ${hosts.dst[${I}]}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800587 ${of_id}= Get ofID From OLT List ${src['olt']}
Andy Bavierd59f9772020-07-01 12:00:42 -0700588
589 # Check for iperf3 and jq tools
590 ${stdout} ${stderr} ${rc}= Execute Remote Command which iperf3 jq
591 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
592 Pass Execution If ${rc} != 0 Skipping test: iperf3 / jq not found on the RG
593
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000594 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000595 ... ${of_id} ${src['uni_id']}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000596 ${subscriber_id}= Set Variable ${of_id}/${onu_port}
597 ${bandwidth_profile_name} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id}
598 ... upstreamBandwidthProfile
Girish Gowdrad769b412021-05-16 11:09:46 -0700599 ${limiting_bw_value_upstream} Get Limiting Bandwidth Details ${bandwidth_profile_name}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000600 ${bandwidth_profile_name} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id}
601 ... downstreamBandwidthProfile
Girish Gowdrad769b412021-05-16 11:09:46 -0700602 ${limiting_bw_value_dnstream} Get Limiting Bandwidth Details ${bandwidth_profile_name}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000603
604 # Stream UDP packets from RG to server
Andrea Campanella1d34bfc2020-08-06 09:58:49 +0200605 ${uprate}= Run Keyword If ${limiting_bw_value_upstream} != 1000000
606 ... Evaluate ${limiting_bw_value_upstream}*${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_upstream}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000609 ${updict}= Run Iperf3 Test Client ${src} server=${dst['dp_iface_ip_qinq']}
Andy Bavier7dc50622020-05-28 14:34:12 -0700610 ... args=-u -b ${uprate}K -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_upstream_bw_used}= Evaluate
613 ... (100 - ${updict['end']['sum']['lost_percent']})*${updict['end']['sum']['bits_per_second']}/100000
614
615 # Stream UDP packets from server to RG
Andrea Campanella1d34bfc2020-08-06 09:58:49 +0200616 ${dnrate}= Run Keyword If ${limiting_bw_value_dnstream} != 1000000
617 ... Evaluate ${limiting_bw_value_dnstream}*${udp_rate_multiplier}
Andrea Campanella29341a32020-08-03 22:06:26 +0200618 ... ELSE
Andrea Campanella1d34bfc2020-08-06 09:58:49 +0200619 ... Set Variable ${limiting_bw_value_dnstream}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000620 ${dndict}= Run Iperf3 Test Client ${src} server=${dst['dp_iface_ip_qinq']}
Andy Bavier7dc50622020-05-28 14:34:12 -0700621 ... args=-u -b ${dnrate}K -R -t 30 -l ${udp_packet_bytes} --pacing-timer 0
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000622 # With UDP test, bits per second is the sending rate. Multiply by the loss rate to get the throughput.
623 ${actual_dnstream_bw_used}= Evaluate
624 ... (100 - ${dndict['end']['sum']['lost_percent']})*${dndict['end']['sum']['bits_per_second']}/100000
625
626 ${pct_limit_up}= Evaluate 100*${actual_upstream_bw_used}/${limiting_bw_value_upstream}
627 ${pct_limit_dn}= Evaluate 100*${actual_dnstream_bw_used}/${limiting_bw_value_dnstream}
628 Log Up: bwprof ${limiting_bw_value_upstream}Kbps, got ${actual_upstream_bw_used}Kbps (${pct_limit_up}%)
629 Log Down: bwprof ${limiting_bw_value_dnstream}Kbps, got ${actual_dnstream_bw_used}Kbps (${pct_limit_dn}%)
630
631 Should Be True ${pct_limit_up} <= ${upper_margin_pct}
632 ... The upstream bandwidth exceeded the limit (${pct_limit_up}% of limit)
Andy Baviereff938d2020-06-29 18:27:49 -0700633 # VOL-3125: downstream bw limit not enforced. Uncomment when fixed.
634 #Should Be True ${pct_limit_dn} <= ${upper_margin_pct}
635 #... The downstream bandwidth exceeded the limit (${pct_limit_dn}% of limit)
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000636 Should Be True ${pct_limit_up} >= ${lower_margin_pct}
637 ... The upstream bandwidth guarantee was not met (${pct_limit_up}% of resv)
638 Should Be True ${pct_limit_dn} >= ${lower_margin_pct}
639 ... The downstream bandwidth guarantee was not met (${pct_limit_dn}% of resv)
640 END
Suchitra Vemurif7a033c2020-02-26 17:22:41 -0800641
Suraj Gour33651272020-05-04 10:10:16 +0530642Validate parsing of data traffic through voltha using tech profile
643 [Documentation] Assuming that test1 was executed where all the ONUs are authenticated/DHCP/pingable
644 ... Prerequisite tools : Tcpdump and Mausezahn traffic generator on both RG and DHCP/BNG VMs
645 ... Install jq tool to read json file, where test suite is being running
Girish Gowdrabbfbbc32021-05-17 14:36:58 -0700646 ... This test sends TCP packets with pbits between 0 and 7 and validates that
Suraj Gour33651272020-05-04 10:10:16 +0530647 ... the pbits are preserved by the PON.
Hardik Windlass04d791e2021-07-12 16:23:13 +0000648 [Tags] dataplane TechProfile VOL-2054 notready
Suraj Gour33651272020-05-04 10:10:16 +0530649 [Setup] Start Logging TechProfile
650 [Teardown] Run Keywords Collect Logs
651 ... AND Stop Logging TechProfile
652 Pass Execution If '${has_dataplane}'=='False'
653 ... Skipping test: Technology profile validation can be done only in physical pod
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800654 FOR ${I} IN RANGE 0 ${num_all_onus}
Suraj Gour33651272020-05-04 10:10:16 +0530655 ${src}= Set Variable ${hosts.src[${I}]}
656 ${dst}= Set Variable ${hosts.dst[${I}]}
657
658 ${bng_ip}= Get Variable Value ${dst['noroot_ip']}
659 ${bng_user}= Get Variable Value ${dst['noroot_user']}
660 ${bng_pass}= Get Variable Value ${dst['noroot_pass']}
Andy Bavierf4b7d1d2020-06-30 11:14:04 -0700661 Pass Execution If "${bng_ip}" == "${NONE}" or "${bng_user}" == "${NONE}" or "${bng_pass}" == "${NONE}"
Suraj Gour33651272020-05-04 10:10:16 +0530662 ... Skipping test: credentials for BNG login required in deployment config
663
664 ${stdout} ${stderr} ${rc}= Execute Remote Command which mausezahn tcpdump
665 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
666 Pass Execution If ${rc} != 0 Skipping test: mausezahn / tcpdump not found on the RG
667 ${stdout} ${stderr} ${rc}= Execute Remote Command which mausezahn tcpdump
668 ... ${bng_ip} ${bng_user} ${bng_pass} ${dst['container_type']} ${dst['container_name']}
669 Pass Execution If ${rc} != 0 Skipping test: mausezahn / tcpdump not found on the BNG
670 Log Upstream test
Andy Baviereff938d2020-06-29 18:27:49 -0700671 Run Keyword If ${has_dataplane} Create traffic with each pbit and capture at other end
Suraj Gour33651272020-05-04 10:10:16 +0530672 ... ${dst['dp_iface_ip_qinq']} ${dst['dp_iface_name']} ${src['dp_iface_name']}
Girish Gowdra66cd95d2021-07-08 10:31:54 -0700673 ... 0 tcp 0 ${src['s_tag']} upstream vlan
Suraj Gour33651272020-05-04 10:10:16 +0530674 ... ${bng_ip} ${bng_user} ${bng_pass} ${dst['container_type']} ${dst['container_name']}
675 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
676 Log Downstream test
677 ${rg_ip} ${stderr} ${rc}= Execute Remote Command
678 ... ifconfig ${src['dp_iface_name']} | grep 'inet addr:' | cut -d: -f2 | awk '{ print $1 }'
679 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
680 Should Be Equal As Integers ${rc} 0 Could not get RG's IP address
Andy Baviereff938d2020-06-29 18:27:49 -0700681 Run Keyword If ${has_dataplane} Create traffic with each pbit and capture at other end
Girish Gowdra66cd95d2021-07-08 10:31:54 -0700682 ... ${rg_ip} ${src['dp_iface_name']} ${dst['dp_iface_name']}
683 ... 0 tcp ${src['c_tag']} ${src['s_tag']} downstream tcp
Suraj Gour33651272020-05-04 10:10:16 +0530684 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
685 ... ${bng_ip} ${bng_user} ${bng_pass} ${dst['container_type']} ${dst['container_name']}
686 END
687
Hardik Windlass16cdf962020-04-29 15:26:50 +0530688Test Disable and Enable OLT PON Port
689 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
690 ... Assuming that all the ONUs are DHCP/pingable (i.e. assuming sanityDt test was executed)
691 ... Perform disable on the OLT PON Port and validate that the pings do not succeed
692 ... Perform enable on the OLT PON Port and validate that the pings are successful
Hardik Windlass1ed2eee2021-06-25 09:51:03 +0000693 [Tags] functional DisableEnableOltPonPort VOL-2577 multi-uni
Hardik Windlass16cdf962020-04-29 15:26:50 +0530694 [Setup] Run Keywords Start Logging DisableEnableOltPonPort
Girish Gowdra8fd96962021-12-14 16:20:04 +0530695 ... AND Run Keyword If ${has_dataplane} Set Non-Critical Tag for XGSPON Tech
Hardik Windlass16cdf962020-04-29 15:26:50 +0530696 ... AND Setup
697 [Teardown] Run Keywords Collect Logs
Hardik Windlass41701e82021-01-12 17:44:44 +0000698 ... AND Delete All Devices and Verify
Girish Gowdraf244d5b2021-09-01 17:16:16 -0700699 ... AND Run Keyword If ${logging} Collect Logs
700 ... AND Stop Logging DisableEnableOltPonPort
Hardik Windlass16cdf962020-04-29 15:26:50 +0530701 Run Keyword If ${has_dataplane} Clean Up Linux
702 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
Hardik Windlass41701e82021-01-12 17:44:44 +0000703 # Multi-OLTs
704 FOR ${I} IN RANGE 0 ${olt_count}
705 ${olt_serial_number}= Get From Dictionary ${olt_ids}[${I}] sn
706 Disable Enable PON Port Per OLT ${olt_serial_number}
Hardik Windlass16cdf962020-04-29 15:26:50 +0530707 END
708
Gayathri.Selvan5d23e522020-09-15 17:26:25 +0530709Data plane Bandwidth profile update verification
710 [Documentation] Test bandwidth profile is updated for one subscriber and not changed for other subscribers.
711 ... Assumes iperf3 and jq installed on client and iperf -s running on DHCP server
712 ... Assumes Default and User_Bandwidth2 profiles are configured as bandwidth profiles
713 [Tags] non-critical dataplane BandwidthProfileUpdateTCP VOL-2053
714 [Setup] Start Logging BandwidthProfileUpdateTCP
715 [Teardown] Run Keywords Collect Logs
716 ... AND Stop Logging BandwidthProfileUpdateTCP
717 ... AND Send File To Onos ${CURDIR}/../../tests/data/${POD_NAME}-sadis.json
718 Pass Execution If '${has_dataplane}'=='False'
719 ... Bandwidth profile validation can be done only in physical pod. Skipping this test in BBSIM.
720 Delete All Devices And Verify
721 Run Keyword If ${has_dataplane} Clean Up Linux
722 Setup
723 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
724 # Update the Bandwidth Profile for the First Subscriber under test
725 ${src}= Set Variable ${hosts.src[${0}]}
726 ${dst}= Set Variable ${hosts.dst[${0}]}
727 ${of_id}= Get ofID From OLT List ${src['olt']}
TorstenThiemedda37652021-11-11 16:22:05 +0000728 ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id}
Gayathri.Selvan5d23e522020-09-15 17:26:25 +0530729 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
730 ... ${of_id} ${src['uni_id']}
731 ${subscriber_id}= Set Variable ${of_id}/${onu_port}
732 ${oldBwName} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id} upstreamBandwidthProfile
733 # Delete the existing subscriber
734 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
735 ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port}
736 # Change the bandwidth profile and load the configuration
Hardik Windlassaa41bb42021-07-23 15:32:43 +0000737 ${newBwName} Set Variable If ${oldBwName} == 'Default' 'User_Bandwidth2' 'Default'
Gayathri.Selvan5d23e522020-09-15 17:26:25 +0530738 ${cmd} Catenate
739 ... sed 's/upstreamBandwidthProfile": "${oldBwName}"/upstreamBandwidthProfile": "${newBwName}"/g'
740 ... ${CURDIR}/../../tests/data/${POD_NAME}-sadis.json > ${CURDIR}/../../tests/data/${POD_NAME}-sadis-new.json
741 ${rc} Run and Return RC ${cmd}
742 Send File To Onos ${CURDIR}/../../tests/data/${POD_NAME}-sadis-new.json
743 # Re-add the subscriber with new bandwidth profile
744 Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection ${ONOS_SSH_IP}
745 ... ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} ${onu_port}
746 # Verify that no pending flows exist for the ONU port
747 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
748 ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
749 # Verify subscriber access flows are added for the ONU port
750 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
751 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
752 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
753 # Verify Meters in ONOS
754 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s
755 ... Verify Meters in ONOS ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} ${onu_port}
756 Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True
757 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
758 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
759 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
760 ... ${dst['container_name']}
761 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
762 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
763 # Verify new bandwidth profile is applied and other subscribers are working fine
764 ${checkBwName} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id} upstreamBandwidthProfile
765 Should Be Equal ${checkBwName} ${newBwName} The bandwidth profile is not updated properly
766 FOR ${I} IN RANGE 0 ${num_all_onus}
767 ${src}= Set Variable ${hosts.src[${I}]}
768 ${dst}= Set Variable ${hosts.dst[${I}]}
769 ${of_id}= Get ofID From OLT List ${src['olt']}
770
771 # Check for iperf3 and jq tools
772 ${stdout} ${stderr} ${rc}= Execute Remote Command which iperf3 jq
773 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
774 Pass Execution If ${rc} != 0 Skipping test: iperf3 / jq not found on the RG
775
776 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
777 ... ${of_id} ${src['uni_id']}
778 ${subscriber_id}= Set Variable ${of_id}/${onu_port}
779 ${bandwidth_profile_name} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id}
780 ... upstreamBandwidthProfile
781 ${limiting_bw_value_upstream} Get Limiting Bandwidth Details ${bandwidth_profile_name}
782 ${bandwidth_profile_name} Get Bandwidth Profile Name For Given Subscriber ${subscriber_id}
783 ... downstreamBandwidthProfile
784 ${limiting_bw_value_dnstream} Get Limiting Bandwidth Details ${bandwidth_profile_name}
785
786 # Stream TCP packets from RG to server
787 ${updict}= Run Iperf3 Test Client ${src} server=${dst['dp_iface_ip_qinq']}
788 ... args=-t 30
789 ${actual_upstream_bw_used}= Evaluate ${updict['end']['sum_received']['bits_per_second']}/1000
790
791 # Stream TCP packets from server to RG
792 ${dndict}= Run Iperf3 Test Client ${src} server=${dst['dp_iface_ip_qinq']}
793 ... args=-R -t 30
794 ${actual_dnstream_bw_used}= Evaluate ${dndict['end']['sum_received']['bits_per_second']}/1000
795
796 ${pct_limit_up}= Evaluate 100*${actual_upstream_bw_used}/${limiting_bw_value_upstream}
797 ${pct_limit_dn}= Evaluate 100*${actual_dnstream_bw_used}/${limiting_bw_value_dnstream}
798 Log Up: bwprof ${limiting_bw_value_upstream}Kbps, got ${actual_upstream_bw_used}Kbps (${pct_limit_up}%)
799 Log Down: bwprof ${limiting_bw_value_dnstream}Kbps, got ${actual_dnstream_bw_used}Kbps (${pct_limit_dn}%)
800
801 Should Be True ${pct_limit_up} <= ${upper_margin_pct}
802 ... The upstream bandwidth exceeded the limit (${pct_limit_up}% of limit)
803 # VOL-3125: downstream bw limit not enforced. Uncomment when fixed.
804 #Should Be True ${pct_limit_dn} <= ${upper_margin_pct}
805 #... The downstream bandwidth exceeded the limit (${pct_limit_dn}% of limit)
806 Should Be True ${pct_limit_up} >= ${lower_margin_pct}
807 ... The upstream bandwidth guarantee was not met (${pct_limit_up}% of resv)
808 Should Be True ${pct_limit_dn} >= ${lower_margin_pct}
809 ... The downstream bandwidth guarantee was not met (${pct_limit_dn}% of resv)
810 END
811
Hardik Windlassb75cf1b2021-01-18 06:59:09 +0000812Test ONU Delete and Auto-Discovery
813 [Documentation] Tests the voltctl delete and Auto-Discovery of the ONU
814 [Tags] functional VOL-3098 ONUAutoDiscovery notready
815 [Setup] Run Keywords Start Logging ONUAutoDiscovery
816 ... AND Setup
817 [Teardown] Run Keywords Collect Logs
818 ... AND Delete All Devices and Verify
819 ... AND Run Keyword If ${logging} Collect Logs
820 ... AND Stop Logging ONUAutoDiscovery
821 # Performing Sanity Test to make sure subscribers are all AUTH+DHCP and pingable
822 Run Keyword If ${has_dataplane} Clean Up Linux
823 Perform Sanity Test
824 FOR ${I} IN RANGE 0 ${num_all_onus}
825 ${src}= Set Variable ${hosts.src[${I}]}
826 ${dst}= Set Variable ${hosts.dst[${I}]}
827 ${onu_device_id}= Get Device ID From SN ${src['onu']}
828 ${of_id}= Get ofID From OLT List ${src['olt']}
829 ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id}
830 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s
831 ... Get ONU Port in ONOS ${src['onu']} ${of_id}
832 # Remove Subscriber Access (To replicate ATT workflow)
833 Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
834 ... volt-remove-subscriber-access ${of_id} ${onu_port}
835 # Additional sleep to let subscriber delete process
836 Sleep 10s
837 # Delete ONU and Verify Ping Fails
838 Delete Device ${onu_device_id}
839 Run Keyword If ${has_dataplane} Verify ping is successful except for given device
840 ... ${num_all_onus} ${src['onu']}
841 # Verify that no pending flows exist for the ONU port
842 Wait Until Keyword Succeeds ${timeout} 2s
843 ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
844 # ONU Auto-Discovery
845 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s
846 ... Get ONU Port in ONOS ${src['onu']} ${of_id} ${src['uni_id']}
847 # Check ONU port is Enabled in ONOS
848 Wait Until Keyword Succeeds ${timeout} 2s
849 ... Verify UNI Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']} ${src['uni_id']}
850 ${onu_device_id}= Get Device ID From SN ${src['onu']}
851 Run Keyword If ${has_dataplane} Clean Up Linux ${onu_device_id}
852 # Verify default EAPOL flows are added for the ONU port
853 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
854 ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} ${onu_port}
855 # Verify ONU state in voltha
856 Wait Until Keyword Succeeds ${timeout} 5s Validate Device ENABLED ACTIVE REACHABLE
857 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
858 # Perform Authentication
859 ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=.
860 ... /tmp/wpa ${src['dp_iface_name']} log
861 Run Keyword If ${has_dataplane} Validate Authentication True
862 ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']}
863 ... ${src['container_type']} ${src['container_name']} ${wpa_log}
864 Wait Until Keyword Succeeds ${timeout} 2
865 ... Verify ONU in AAA-Users ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
866 Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
867 ... volt-add-subscriber-access ${of_id} ${onu_port}
868 # Verify that no pending flows exist for the ONU port
869 Wait Until Keyword Succeeds ${timeout} 2s
870 ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
871 # Verify subscriber access flows are added for the ONU port
872 Wait Until Keyword Succeeds ${timeout} 5s
873 ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
874 ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']}
875 # Verify subscriber EAPOL flow is installed
876 Wait Until Keyword Succeeds ${timeout} 5s
877 ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id}
878 ... ${onu_port} ${src['c_tag']}
879 # Verify Meters in ONOS
880 Wait Until Keyword Succeeds ${timeout} 5s
881 ... Verify Meters in ONOS ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} ${onu_port}
882 Run Keyword If ${has_dataplane} Validate DHCP and Ping True
883 ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']}
884 ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']}
885 ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']}
886 ... ${dst['container_name']}
887 Wait Until Keyword Succeeds ${timeout} 2s
888 ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port}
889 END
890
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -0700891*** Keywords ***
892Setup Suite
Andy Bavier88cd9f62019-11-26 16:22:33 -0700893 [Documentation] Set up the test suite
894 Common Test Suite Setup
Hung-Wei Chiucc6e6552020-06-04 12:57:38 -0700895 #Restore all ONUs
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800896 #Run Keyword If ${has_dataplane} RestoreONUs ${num_all_onus}
Suchitra Vemuri1d8e8172020-06-17 17:43:56 -0700897 #power_switch.robot needs it to support different vendor's power switch
898 ${switch_type}= Get Variable Value ${web_power_switch.type}
899 Run Keyword If "${switch_type}"!="" Set Global Variable ${powerswitch_type} ${switch_type}
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -0700900
David Bainbridgef81cd642019-11-20 00:14:47 +0000901Clear All Devices Then Create New Device
902 [Documentation] Remove any devices from VOLTHA and ONOS
David Bainbridgef81cd642019-11-20 00:14:47 +0000903 # Remove all devices from voltha and nos
904 Delete All Devices and Verify
David Bainbridgef81cd642019-11-20 00:14:47 +0000905 # Execute normal test Setup Keyword
906 Setup