blob: 010d05d2a53ed0079ce476f30682fd941252e0fb [file] [log] [blame]
TorstenThieme440b7c02020-12-18 15:42:57 +00001# Copyright 2020 - present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15*** Settings ***
TorstenThiemec3c23232021-01-13 13:06:31 +000016Documentation Test different Reconcile scenarios of ONU Go adapter with all three workflows ATT, DT and TT.
TorstenThieme440b7c02020-12-18 15:42:57 +000017... Hint: default timeout in BBSim to mimic OLT reboot is 60 seconds!
18... This behaviour of BBSim can be modified by 'oltRebootDelay: 60' in BBSim section of helm chart or
19... used values.yaml during 'voltha up'.
20Suite Setup Setup Suite
21Suite Teardown Teardown Suite
22Test Setup Setup
23Test Teardown Teardown
24Library Collections
25Library String
26Library OperatingSystem
27Library XML
28Library RequestsLibrary
29Library ../../libraries/DependencyLibrary.py
30Resource ../../libraries/onos.robot
31Resource ../../libraries/voltctl.robot
32Resource ../../libraries/voltha.robot
33Resource ../../libraries/utils.robot
34Resource ../../libraries/k8s.robot
35Resource ../../libraries/onu_utilities.robot
36Resource ../../variables/variables.robot
37
38*** Variables ***
Hardik Windlass4288c6a2021-09-28 07:22:06 +000039${NAMESPACE} voltha
40${INFRA_NAMESPACE} default
TorstenThieme440b7c02020-12-18 15:42:57 +000041${timeout} 60s
42${of_id} 0
43${logical_id} 0
44${has_dataplane} True
45${external_libs} True
46${teardown_device} True
47${scripts} ../../scripts
48# Per-test logging on failure is turned off by default; set this variable to enable
49${container_log_dir} ${None}
50# flag for first test, needed due default timeout in BBSim to mimic OLT reboot of 60 seconds
51${firsttest} True
TorstenThiemec3c23232021-01-13 13:06:31 +000052# determines the environment workflow: DT, TT or ATT (default)
53# example: -v workflow:DT
54${workflow} ATT
TorstenThieme47983692021-06-17 10:43:35 +000055# KV Store Prefix
Andrea Campanella388cd872022-02-10 09:11:39 +010056# example: -v kvstoreprefix:voltha/voltha_voltha
57${kvstoreprefix} voltha/voltha_voltha
TorstenThieme440b7c02020-12-18 15:42:57 +000058# flag debugmode is used, if true timeout calculation various, can be passed via the command line too
59# example: -v debugmode:True
60${debugmode} False
61# logging flag to enable Collect Logs, can be passed via the command line too
62# example: -v logging:True
63${logging} False
64# if True execution will be paused before clean up, only use in case of manual testing, do not use in ci pipeline!
65# example: -v pausebeforecleanup:True
66${pausebeforecleanup} False
67# if True some outputs to console are done during running tests e.g. long duration flow test
68# example: -v print2console:True
69${print2console} False
70# if True (hard) kill will be used to restart onu adapter, else (soft) restart mechanism of k8s will be used
71# example: -v usekill2restart:True
72${usekill2restart} False
TorstenThieme45071602021-03-16 12:14:37 +000073# if True etcd check will be executed in test case teardown, if False etcd check will be executed in suite teardown
74# example: -v etcdcheckintestteardown:False
75${etcdcheckintestteardown} True
TorstenThieme440b7c02020-12-18 15:42:57 +000076${data_dir} ../data
TorstenThieme70bc5262021-01-19 12:12:55 +000077${suppressaddsubscriber} True
TorstenThieme440b7c02020-12-18 15:42:57 +000078
Hardik Windlassb1bda362021-11-24 11:54:36 +000079# flag to choose the subscriber provisioning command type in ONOS
80# TT often provision a single services for a subscriber (eg: hsia, voip, ...) one after the other.
81# if set to True, command used is "volt-add-subscriber-unitag"
82# if set to False, comand used is "volt-add-subscriber-access"
83${unitag_sub} False
TorstenThieme440b7c02020-12-18 15:42:57 +000084
85*** Test Cases ***
86Reconcile In Starting-OpenOmci
87 [Documentation] Validates the Reconcile in Starting-OpenOmci
88 ... Reconcile test during starting-openomci in AT&T-workflow:
89 ... - create and enable one BBSIM-ONU (no MIB-template should be available in KV-store)
TorstenThiemec3c23232021-01-13 13:06:31 +000090 ... - wait for device reason starting-openomci
TorstenThieme440b7c02020-12-18 15:42:57 +000091 ... - kill the open-onu-adapter-go
TorstenThiemec3c23232021-01-13 13:06:31 +000092 ... - wait for open-onu-adapter-go to restart
93 ... - perform sanity test include add subscriber
TorstenThieme440b7c02020-12-18 15:42:57 +000094 ... - delete ONU and MIB-template in KV-store
95 [Tags] functionalOnuGo ReconcileStartingOpenOmciOnuGo
96 [Setup] Run Keywords Start Logging ReconcileStartingOpenOmciOnuGo
97 ... AND Setup Test
98 Run Keyword If ${has_dataplane} Clean Up Linux
TorstenThiemee9017be2021-03-05 16:59:31 +000099 Do Reconcile In Determined State starting-openomci
TorstenThieme373adfe2021-12-16 13:03:04 +0000100 [Teardown] Run Keywords Printout ONU Serial Number and Device Id print2console=${print2console}
101 ... AND Run Keyword If ${logging} Get Logical Id of OLT
TorstenThieme3494ceb2021-07-19 09:47:24 +0000102 ... AND Run Keyword If ${logging} Collect Logs
TorstenThieme440b7c02020-12-18 15:42:57 +0000103 ... AND Teardown Test
104 ... AND Stop Logging ReconcileStartingOpenOmciOnuGo
105
106Reconcile In Initial-Mib-Downloaded
107 [Documentation] Validates the Reconcile in initial-mib-downloaded
108 ... Reconcile test during initial-mib-downloaded in AT&T-workflow:
109 ... - create and enable one BBSIM-ONU (no MIB-template should be available in KV-store)
TorstenThiemec3c23232021-01-13 13:06:31 +0000110 ... - wait for device reason initial-mib-downloaded
TorstenThieme440b7c02020-12-18 15:42:57 +0000111 ... - kill the open-onu-adapter-go
TorstenThiemec3c23232021-01-13 13:06:31 +0000112 ... - wait for open-onu-adapter-go to restart
113 ... - perform sanity test include add subscriber
TorstenThieme440b7c02020-12-18 15:42:57 +0000114 ... - delete ONU and MIB-template in KV-store
115 [Tags] functionalOnuGo ReconcileInitialMibDownloadedOnuGo
116 [Setup] Run Keywords Start Logging ReconcileInitialMibDownloadedOnuGo
117 ... AND Setup Test
118 Run Keyword If ${has_dataplane} Clean Up Linux
TorstenThiemee9017be2021-03-05 16:59:31 +0000119 Do Reconcile In Determined State initial-mib-downloaded
TorstenThieme373adfe2021-12-16 13:03:04 +0000120 [Teardown] Run Keywords Printout ONU Serial Number and Device Id print2console=${print2console}
121 ... AND Run Keyword If ${logging} Get Logical Id of OLT
TorstenThieme3494ceb2021-07-19 09:47:24 +0000122 ... AND Run Keyword If ${logging} Collect Logs
TorstenThieme440b7c02020-12-18 15:42:57 +0000123 ... AND Teardown Test
124 ... AND Stop Logging ReconcileInitialMibDownloadedOnuGo
125
126Reconcile In Omci-Flows-Pushed
127 [Documentation] Validates the Reconcile in omci-flows-pushed
128 ... Former testcase: Reconcile Onu Device in Testsuite Voltha_ONUStateTest.robot
129 ... Reconcile test during omci-flows-pushed in AT&T-workflow:
130 ... - create and enable one BBSIM-ONU (no MIB-template should be available in KV-store)
TorstenThiemec3c23232021-01-13 13:06:31 +0000131 ... - perform sanity test include add subscriber
TorstenThieme440b7c02020-12-18 15:42:57 +0000132 ... - kill the open-onu-adapter-go
TorstenThiemec3c23232021-01-13 13:06:31 +0000133 ... - wait for open-onu-adapter-go to restart
134 ... - perform sanity test suppress add subscriber
TorstenThieme440b7c02020-12-18 15:42:57 +0000135 ... - disable onu device
TorstenThiemec3c23232021-01-13 13:06:31 +0000136 ... - wait for device corresponding onu reason e.g. tech-profile-config-delete-success
137 ... - check UNI-ports disabled in ONOS
TorstenThieme440b7c02020-12-18 15:42:57 +0000138 ... - enable onu device
TorstenThiemec3c23232021-01-13 13:06:31 +0000139 ... - perform sanity test suppress add subscriber
TorstenThieme440b7c02020-12-18 15:42:57 +0000140 ... - delete ONU and MIB-template in KV-store
141 [Tags] functionalOnuGo ReconcileOmciFlowsPushedOnuGo
142 [Setup] Run Keywords Start Logging ReconcileOmciFlowsPushedOnuGo
143 ... AND Setup Test
144 Run Keyword If ${has_dataplane} Clean Up Linux
TorstenThiemee9017be2021-03-05 16:59:31 +0000145 Do Reconcile In Omci-Flows-Pushed
TorstenThieme373adfe2021-12-16 13:03:04 +0000146 [Teardown] Run Keywords Printout ONU Serial Number and Device Id print2console=${print2console}
147 ... AND Run Keyword If ${logging} Get Logical Id of OLT
TorstenThieme3494ceb2021-07-19 09:47:24 +0000148 ... AND Run Keyword If ${logging} Collect Logs
TorstenThieme440b7c02020-12-18 15:42:57 +0000149 ... AND Teardown Test
150 ... AND Stop Logging ReconcileOmciFlowsPushedOnuGo
151
152Reconcile For Disabled Onu Device
153 [Documentation] Validates the Reconcile for disabled Onu device
154 ... Reconcile test for disabled Onu device in AT&T-workflow:
155 ... - create and enable one BBSIM-ONU (no MIB-template should be available in KV-store)
TorstenThiemec3c23232021-01-13 13:06:31 +0000156 ... - perform sanity test include add subscriber
TorstenThieme440b7c02020-12-18 15:42:57 +0000157 ... - disable onu device
TorstenThiemec3c23232021-01-13 13:06:31 +0000158 ... - wait for device corresponding onu reason e.g. tech-profile-config-delete-success
159 ... - check UNI-ports disabled in ONOS
160 ... - kill the open-onu-adapter-go
161 ... - wait for open-onu-adapter-go to restart
162 ... - check device reason is still the same before restart
TorstenThieme440b7c02020-12-18 15:42:57 +0000163 ... - enable onu device
TorstenThiemec3c23232021-01-13 13:06:31 +0000164 ... - perform sanity test suppress add subscriber
TorstenThieme440b7c02020-12-18 15:42:57 +0000165 ... - delete ONU and MIB-template in KV-store
166 [Tags] functionalOnuGo ReconcileDisabledOnuDeviceOnuGo
167 [Setup] Run Keywords Start Logging ReconcileDisabledOnuDeviceOnuGo
168 ... AND Setup Test
169 Run Keyword If ${has_dataplane} Clean Up Linux
TorstenThiemee9017be2021-03-05 16:59:31 +0000170 Do Reconcile For Disabled Onu Device
TorstenThieme373adfe2021-12-16 13:03:04 +0000171 [Teardown] Run Keywords Printout ONU Serial Number and Device Id print2console=${print2console}
172 ... AND Run Keyword If ${logging} Get Logical Id of OLT
TorstenThieme3494ceb2021-07-19 09:47:24 +0000173 ... AND Run Keyword If ${logging} Collect Logs
TorstenThieme440b7c02020-12-18 15:42:57 +0000174 ... AND Teardown Test
175 ... AND Stop Logging ReconcileDisabledOnuDeviceOnuGo
176
TorstenThieme712b2962021-11-17 14:16:15 +0000177Olt Deletion After Adapter Restart
178 [Documentation] Validates the OLT deletion after adapter restart
179 ... - prefered environment is two ONUs are active on each of two OLTs, but test works also with single ONU/OLT
180 ... - restart the ONU adapter preferred via "kubectl delete pod"
181 ... - delete one OLT immediately after the restart has been initiated
182 ... - wait until the restart of the ONU adapter and the reconcile processing are finished
183 ... - check whether the ONUs on the remaining OLT have been properly reconciled (if avaialable)
184 ... - check whether the ONUs at the deleted OLT have disappeared from the device list
185 ... - KV store data of these ONUs are deleted under:
186 ... - <kvStorePrefix>/openonu/<deviceId>
187 ... - <kvStorePrefix>/openonu/pm-data/<deviceId>
188 ... - check for not deleted device(s) reason is still the same before restart (if available)
189 ... - delete ONU and MIB-template in KV-store
190 ... Check [VOL-4443] for more details
191 [Tags] functionalOnuGo OltDeletionAfterAdapterRestartOnuGo
192 [Setup] Run Keywords Start Logging OltDeletionAfterAdapterRestartOnuGo
193 ... AND Setup Test
194 Run Keyword If ${has_dataplane} Clean Up Linux
195 Do Olt Deletion After Adapter Restart
TorstenThieme373adfe2021-12-16 13:03:04 +0000196 [Teardown] Run Keywords Printout ONU Serial Number and Device Id print2console=${print2console}
197 ... AND Run Keyword If ${logging} Get Logical Id of OLT
TorstenThieme712b2962021-11-17 14:16:15 +0000198 ... AND Run Keyword If ${logging} Collect Logs
199 ... AND Teardown Test
200 ... AND Stop Logging OltDeletionAfterAdapterRestartOnuGo
201
TorstenThiemef7cd2be2021-12-06 14:30:11 +0000202Flow Deletion After Adapter Restart
203 [Documentation] Validates the flow(s) deletion after adapter restart
204 ... - perform sanity test include add subscriber
205 ... - restart the ONU adapter preferred via "kubectl delete pod"
206 ... - remove flow(s) from one ONU immediately after the restart has been initiated
207 ... - wait until the restart of the ONU adapter and the reconcile processing are finished
208 ... - check removed flow(s) from ONU
209 ... - check for not removed flows still the same before restart (if available)
210 [Tags] functionalOnuGo FlowDeletionAfterAdapterRestartOnuGo
211 [Setup] Run Keywords Start Logging FlowDeletionAfterAdapterRestartOnuGo
212 ... AND Setup Test
213 Run Keyword If ${has_dataplane} Clean Up Linux
214 Do Flow Deletion After Adapter Restart
TorstenThieme373adfe2021-12-16 13:03:04 +0000215 [Teardown] Run Keywords Printout ONU Serial Number and Device Id print2console=${print2console}
216 ... AND Run Keyword If ${logging} Get Logical Id of OLT
TorstenThiemef7cd2be2021-12-06 14:30:11 +0000217 ... AND Run Keyword If ${logging} Collect Logs
218 ... AND Teardown Test
219 ... AND Stop Logging FlowDeletionAfterAdapterRestartOnuGo
220
TorstenThieme00fe8262022-01-19 10:43:07 +0000221Wrong MDS Counter After Adapter Restart
222 [Documentation] Validates wrong MDS Counter of ONU after adapter restart
223 ... - perform sanity test include add subscriber
224 ... - restart the ONU adapter preferred via "kubectl delete pod"
225 ... - manipulate MDS counter
226 ... - wait until the restart of the ONU adapter and the reconcile processing are finished
227 ... - check all ONUs come up to previous state
228 [Tags] functionalOnuGo WrongMDSCounterAfterAdapterRestartOnuGo
229 [Setup] Run Keywords Start Logging WrongMDSCounterAfterAdapterRestartOnuGo
230 ... AND Setup Test
231 Run Keyword If ${has_dataplane} Clean Up Linux
232 Do Wrong MDS Counter After Adapter Restart
233 [Teardown] Run Keywords Printout ONU Serial Number and Device Id print2console=${print2console}
234 ... AND Run Keyword If ${logging} Get Logical Id of OLT
235 ... AND Run Keyword If ${logging} Collect Logs
236 ... AND Teardown Test
237 ... AND Stop Logging WrongMDSCounterAfterAdapterRestartOnuGo
238
TorstenThieme440b7c02020-12-18 15:42:57 +0000239*** Keywords ***
240Setup Suite
241 [Documentation] Set up the test suite
Andrea Campanella82add372021-11-05 12:01:15 +0100242 Start Logging Setup or Teardown Setup-${SUITE NAME}
TorstenThieme440b7c02020-12-18 15:42:57 +0000243 ${LogInfo}= Catenate
244 ... \r\nPassed arguments:
245 ... debugmode:${debugmode}, logging:${logging}, pausebeforecleanup:${pausebeforecleanup},
TorstenThieme47983692021-06-17 10:43:35 +0000246 ... print2console:${print2console}, usekill2restart:${usekill2restart}, workflow:${workflow},
247 ... kvstoreprefix:${kvstoreprefix}
TorstenThieme440b7c02020-12-18 15:42:57 +0000248 Log ${LogInfo} console=yes
249 Common Test Suite Setup
TorstenThieme00fe8262022-01-19 10:43:07 +0000250 # set tech profiles
TorstenThieme6ab99502022-02-07 15:00:59 +0000251 ${preload_tech_profile}= Set Variable If ${unitag_sub} and "${workflow}"=="TT" and not ${has_dataplane} True False
252 Set Suite Variable ${preload_tech_profile}
253 Run Keyword If ${preload_tech_profile} Set Tech Profile TT-HSIA ${INFRA_NAMESPACE} 64
254 Run Keyword If ${preload_tech_profile} Set Tech Profile TT-VoIP ${INFRA_NAMESPACE} 65
255 Run Keyword If ${preload_tech_profile} Set Tech Profile TT-multi-uni-MCAST-AdditionalBW-None ${INFRA_NAMESPACE} 66
TorstenThieme440b7c02020-12-18 15:42:57 +0000256 # delete etcd MIB Template Data
Hardik Windlass4288c6a2021-09-28 07:22:06 +0000257 Delete MIB Template Data ${INFRA_NAMESPACE}
TorstenThieme45071602021-03-16 12:14:37 +0000258 # delete etcd onu data
Hardik Windlass4288c6a2021-09-28 07:22:06 +0000259 Delete ONU Go Adapter ETCD Data namespace=${INFRA_NAMESPACE} validate=True
Andrea Campanella82add372021-11-05 12:01:15 +0100260 Run Keyword If ${logging} Collect Logs
261 Stop Logging Setup or Teardown Setup-${SUITE NAME}
TorstenThieme440b7c02020-12-18 15:42:57 +0000262
TorstenThieme70bc5262021-01-19 12:12:55 +0000263
TorstenThieme440b7c02020-12-18 15:42:57 +0000264Teardown Suite
265 [Documentation] Replaces the Suite Teardown in utils.robot.
266 ... Cleans up and checks all ONU ports disabled in ONOS.
267 ... Furthermore gives the possibility to pause the execution.
Andrea Campanella82add372021-11-05 12:01:15 +0100268 Start Logging Setup or Teardown Teardown-${SUITE NAME}
TorstenThieme440b7c02020-12-18 15:42:57 +0000269 Run Keyword If ${pausebeforecleanup} Import Library Dialogs
270 Run Keyword If ${pausebeforecleanup} Pause Execution Press OK to continue with clean up!
271 Run Keyword If ${pausebeforecleanup} Log Teardown will be continued... console=yes
272 Run Keyword If ${teardown_device} Delete All Devices and Verify
Hardik Windlass4288c6a2021-09-28 07:22:06 +0000273 Run Keyword If ${usekill2restart} Restart Pod By Label ${NAMESPACE} app adapter-open-onu
TorstenThieme45071602021-03-16 12:14:37 +0000274 Run Keyword Unless ${etcdcheckintestteardown} Wait Until Keyword Succeeds ${timeout} 1s
Hardik Windlass4288c6a2021-09-28 07:22:06 +0000275 ... Validate Onu Data In Etcd ${INFRA_NAMESPACE} 0 ${kvstoreprefix} without_pm_data=False
TorstenThieme731a7592021-07-01 14:26:54 +0000276 Wait for Ports in ONOS for all OLTs ${ONOS_SSH_IP} ${ONOS_SSH_PORT} 0 BBSM ${timeout}
Andrea Campanella82add372021-11-05 12:01:15 +0100277 Run Keyword If ${logging} Collect Logs
278 Stop Logging Setup or Teardown Teardown-${SUITE NAME}
TorstenThieme440b7c02020-12-18 15:42:57 +0000279 Close All ONOS SSH Connections
TorstenThieme00fe8262022-01-19 10:43:07 +0000280 Set Suite Variable ${TechProfile} ${EMPTY}
TorstenThieme6ab99502022-02-07 15:00:59 +0000281 Run Keyword If ${preload_tech_profile} Remove Tech Profile ${INFRA_NAMESPACE} 64
282 Run Keyword If ${preload_tech_profile} Remove Tech Profile ${INFRA_NAMESPACE} 65
283 Run Keyword If ${preload_tech_profile} Remove Tech Profile ${INFRA_NAMESPACE} 66
TorstenThieme440b7c02020-12-18 15:42:57 +0000284
285Setup Test
286 [Documentation] Pre-test Setup
287 #test for empty device list
288 Test Empty Device List
289 Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds 120s 10s Openolt is Up
290 ... ${olt_ssh_ip} ${olt_user} ${olt_pass}
291 Run Keyword If ${has_dataplane} Sleep 60s
292 #restart open-onu pod to reset crash loop back off mechansim of kubenetes
TorstenThieme37165402021-09-03 11:39:40 +0000293 Run Keyword If "${firsttest}"=="False" and "${usekill2restart}"=="True"
Hardik Windlass4288c6a2021-09-28 07:22:06 +0000294 ... Restart Pod By Label ${NAMESPACE} app adapter-open-onu
TorstenThieme440b7c02020-12-18 15:42:57 +0000295 Run Keyword If "${firsttest}"=="False" Sleep 35s
296 ${firsttest} Set Variable False
297 Set Suite Variable ${firsttest}
298 # Create a list of olt ids (logical and device_id)
299 ${olt_ids} Create List
300 FOR ${I} IN RANGE 0 ${num_olts}
301 #create/preprovision device
Andrea Campanella3dcce272021-01-15 16:04:47 +0100302 ${olt_device_id}= Run Keyword If "${list_olts}[${I}][type]" == "${None}"
TorstenThieme44136642021-02-12 13:41:17 +0000303 ... Create Device ${list_olts}[${I}][ip] ${list_olts}[${I}][oltport]
304 ... ELSE Create Device ${list_olts}[${I}][ip] ${list_olts}[${I}][oltport] ${list_olts}[${I}][type]
TorstenThieme440b7c02020-12-18 15:42:57 +0000305 ${olt_serial_number}= Set Variable ${list_olts}[${I}][sn]
306 #validate olt states
307 Wait Until Keyword Succeeds ${timeout} 5s
Hardik Windlass8b446492021-06-10 06:25:23 +0000308 ... Validate OLT Device PREPROVISIONED UNKNOWN UNKNOWN ${olt_device_id} by_dev_id=True
TorstenThieme440b7c02020-12-18 15:42:57 +0000309 Sleep 5s
310 ${logical_id}= Get Logical Device ID From SN ${olt_serial_number}
311 ${olt} Create Dictionary device_id ${olt_device_id} logical_id ${logical_id}
312 ... of_id ${of_id} sn ${olt_serial_number}
313 Append To List ${olt_ids} ${olt}
314 END
315 Set Global Variable ${olt_ids}
316
317Teardown Test
318 [Documentation] Post-test Teardown
TorstenThieme45071602021-03-16 12:14:37 +0000319 Run Keyword If ${pausebeforecleanup} Import Library Dialogs
320 Run Keyword If ${pausebeforecleanup} Pause Execution Press OK to continue with clean up!
321 Run Keyword If ${pausebeforecleanup} Log Teardown will be continued... console=yes
TorstenThiemee9017be2021-03-05 16:59:31 +0000322 Run Keyword If ${teardown_device} Delete All Devices and Verify
TorstenThieme440b7c02020-12-18 15:42:57 +0000323 # delete etcd MIB Template Data
Matteo Scandolo6b524122021-10-22 14:34:29 -0700324 Delete MIB Template Data ${INFRA_NAMESPACE}
TorstenThiemeb355eb62021-03-09 14:04:55 +0000325 # check etcd data are empty
TorstenThieme45071602021-03-16 12:14:37 +0000326 Run Keyword If ${etcdcheckintestteardown} Wait Until Keyword Succeeds ${timeout} 1s
Hardik Windlass4288c6a2021-09-28 07:22:06 +0000327 ... Validate Onu Data In Etcd ${INFRA_NAMESPACE} 0 ${kvstoreprefix} without_pm_data=False
TorstenThieme440b7c02020-12-18 15:42:57 +0000328 Sleep 5s
329
330Do Reconcile In Determined State
331 [Documentation] This keyword reconciles ONU device when passed reason is reached and
332 ... check the state afterwards.
333 ... Following steps will be executed:
334 ... - enable OLT device
335 ... - wait for passed openonu reason
336 ... - restart openonu adaptor
TorstenThiemec3c23232021-01-13 13:06:31 +0000337 ... - perform sanity test include add subscriber
TorstenThieme440b7c02020-12-18 15:42:57 +0000338 [Arguments] ${expected_onu_reason}
TorstenThiemec3c23232021-01-13 13:06:31 +0000339 ${admin_state} ${oper_status} ${connect_status} ${onu_state_nb} ${onu_state}= Map State
340 ... ${expected_onu_reason}
341 Should Be True ${onu_state_nb}<=5
342 ... Wrong expected onu reason ${expected_onu_reason}, must be lower than 'omci-flows-pushed'!
TorstenThieme440b7c02020-12-18 15:42:57 +0000343 FOR ${I} IN RANGE 0 ${num_olts}
344 #get olt serial number
345 ${olt_serial_number}= Set Variable ${list_olts}[${I}][sn]
346 #validate olt states
347 ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
348 Enable Device ${olt_device_id}
349 END
350 Current State Test All Onus ${expected_onu_reason}
TorstenThieme96fe9ee2021-10-21 10:24:08 +0000351 Reconcile Onu Adapter ${NAMESPACE} ${usekill2restart} ACTIVE
TorstenThiemec3c23232021-01-13 13:06:31 +0000352 Run Keyword If "${workflow}"=="DT" Perform Sanity Test DT
TorstenThieme136ebf72021-02-26 14:27:07 +0000353 ... ELSE IF "${workflow}"=="TT" Perform Sanity Tests TT
TorstenThiemec3c23232021-01-13 13:06:31 +0000354 ... ELSE Perform Sanity Test
TorstenThieme440b7c02020-12-18 15:42:57 +0000355
356Do Reconcile For Disabled Onu Device
357 [Documentation] This keyword reconciles ONU device for a disabled onu device and
358 ... check the state afterwards.
359 ... Following steps will be executed:
360 ... - enable OLT device
TorstenThiemec3c23232021-01-13 13:06:31 +0000361 ... - perform sanity test include add subscriber
TorstenThieme440b7c02020-12-18 15:42:57 +0000362 ... - disable onu device
TorstenThiemec3c23232021-01-13 13:06:31 +0000363 ... - wait for corresponding openonu reason
TorstenThieme440b7c02020-12-18 15:42:57 +0000364 ... - check UNI-ports disabled in ONOS
365 ... - restart openonu adaptor
366 ... - check openonu adaptor is ready again
TorstenThiemec3c23232021-01-13 13:06:31 +0000367 ... - check device reason is still before restart
TorstenThieme440b7c02020-12-18 15:42:57 +0000368 ... - enable onu device
TorstenThiemec3c23232021-01-13 13:06:31 +0000369 ... - perform sanity test suppress add subscriber
TorstenThieme440b7c02020-12-18 15:42:57 +0000370 FOR ${I} IN RANGE 0 ${num_olts}
371 #get olt serial number
372 ${olt_serial_number}= Set Variable ${list_olts}[${I}][sn]
373 #validate olt states
374 ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
375 Enable Device ${olt_device_id}
376 END
TorstenThiemec3c23232021-01-13 13:06:31 +0000377 Run Keyword If "${workflow}"=="DT" Perform Sanity Test DT
TorstenThieme136ebf72021-02-26 14:27:07 +0000378 ... ELSE IF "${workflow}"=="TT" Perform Sanity Tests TT
TorstenThiemec3c23232021-01-13 13:06:31 +0000379 ... ELSE Perform Sanity Test
TorstenThieme440b7c02020-12-18 15:42:57 +0000380 Disable Onu Device
TorstenThieme0ec95eb2021-11-23 14:56:26 +0000381 Current State Test All Onus tech-profile-config-delete-success
TorstenThieme00fe8262022-01-19 10:43:07 +0000382 #check no port is enabled in ONOS
383 Wait for Ports in ONOS for all OLTs ${ONOS_SSH_IP} ${ONOS_SSH_PORT} 0 BBSM
384 Wait for all ONU Ports in ONOS Disabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${unitag_sub}
385 # validate etcd data
386 ${List_ONU_Serial} Create List
387 Build ONU SN List ${List_ONU_Serial}
388 FOR ${onu_sn} IN @{List_ONU_Serial}
389 Wait Until Keyword Succeeds ${timeout} 2s Validate Tech Profiles and Flows in ETCD Data Per Onu
390 ... ${onu_sn} ${INFRA_NAMESPACE} ${kvstoreprefix} must_exist=False check_tcont_map_empty=True
TorstenThieme569ef452022-02-07 14:00:26 +0000391 ... check_default_flow_att=False
TorstenThieme00fe8262022-01-19 10:43:07 +0000392 END
TorstenThieme96fe9ee2021-10-21 10:24:08 +0000393 Reconcile Onu Adapter ${NAMESPACE} ${usekill2restart} UNKNOWN
TorstenThieme0ec95eb2021-11-23 14:56:26 +0000394 Current State Test All Onus tech-profile-config-delete-success
TorstenThieme00fe8262022-01-19 10:43:07 +0000395 Wait for all ONU Ports in ONOS Disabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${unitag_sub}
TorstenThieme440b7c02020-12-18 15:42:57 +0000396 Enable Onu Device
TorstenThieme70bc5262021-01-19 12:12:55 +0000397 Run Keyword If "${workflow}"=="DT" Perform Sanity Test DT ${suppressaddsubscriber}
TorstenThieme136ebf72021-02-26 14:27:07 +0000398 ... ELSE IF "${workflow}"=="TT" Perform Sanity Tests TT ${suppressaddsubscriber}
TorstenThieme70bc5262021-01-19 12:12:55 +0000399 ... ELSE Perform Sanity Test ${suppressaddsubscriber}
TorstenThieme440b7c02020-12-18 15:42:57 +0000400
401Do Reconcile In Omci-Flows-Pushed
402 [Documentation] This keyword reconciles ONU device in omci-flows-pushed and check the state afterwards.
403 ... Reconcile test during omci-flows-pushed in AT&T-workflow:
404 ... - create and enable one BBSIM-ONU (no MIB-template should be available in KV-store)
TorstenThiemec3c23232021-01-13 13:06:31 +0000405 ... - perform sanity test include add subscriber
TorstenThieme440b7c02020-12-18 15:42:57 +0000406 ... - kill the open-onu-adapter-go
TorstenThiemec3c23232021-01-13 13:06:31 +0000407 ... - wait for open-onu-adapter-go to restart
408 ... - perform sanity test suppress add subscriber
TorstenThieme440b7c02020-12-18 15:42:57 +0000409 ... - disable onu device
TorstenThiemec3c23232021-01-13 13:06:31 +0000410 ... - wait for corresponding device reason
411 ... - check UNI-ports disabled in ONOS
TorstenThieme440b7c02020-12-18 15:42:57 +0000412 ... - enable onu device
TorstenThiemec3c23232021-01-13 13:06:31 +0000413 ... - perform sanity test supress add subscriber
TorstenThieme440b7c02020-12-18 15:42:57 +0000414 FOR ${I} IN RANGE 0 ${num_olts}
415 #get olt serial number
416 ${olt_serial_number}= Set Variable ${list_olts}[${I}][sn]
417 #validate olt states
418 ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
419 Enable Device ${olt_device_id}
420 END
TorstenThiemec3c23232021-01-13 13:06:31 +0000421 Run Keyword If "${workflow}"=="DT" Perform Sanity Test DT
TorstenThieme136ebf72021-02-26 14:27:07 +0000422 ... ELSE IF "${workflow}"=="TT" Perform Sanity Tests TT
TorstenThiemec3c23232021-01-13 13:06:31 +0000423 ... ELSE Perform Sanity Test
TorstenThieme96fe9ee2021-10-21 10:24:08 +0000424 Reconcile Onu Adapter ${NAMESPACE} ${usekill2restart} ACTIVE
TorstenThieme70bc5262021-01-19 12:12:55 +0000425 Run Keyword If "${workflow}"=="DT" Perform Sanity Test DT ${suppressaddsubscriber}
TorstenThieme136ebf72021-02-26 14:27:07 +0000426 ... ELSE IF "${workflow}"=="TT" Perform Sanity Tests TT ${suppressaddsubscriber}
TorstenThieme70bc5262021-01-19 12:12:55 +0000427 ... ELSE Perform Sanity Test ${suppressaddsubscriber}
TorstenThieme440b7c02020-12-18 15:42:57 +0000428 Disable Onu Device
TorstenThieme0ec95eb2021-11-23 14:56:26 +0000429 Current State Test All Onus tech-profile-config-delete-success
TorstenThieme00fe8262022-01-19 10:43:07 +0000430 Wait for all ONU Ports in ONOS Disabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${unitag_sub}
TorstenThieme440b7c02020-12-18 15:42:57 +0000431 Enable Onu Device
TorstenThieme70bc5262021-01-19 12:12:55 +0000432 Run Keyword If "${workflow}"=="DT" Perform Sanity Test DT ${suppressaddsubscriber}
TorstenThieme136ebf72021-02-26 14:27:07 +0000433 ... ELSE IF "${workflow}"=="TT" Perform Sanity Tests TT ${suppressaddsubscriber}
TorstenThieme70bc5262021-01-19 12:12:55 +0000434 ... ELSE Perform Sanity Test ${suppressaddsubscriber}
TorstenThieme712b2962021-11-17 14:16:15 +0000435
436
437Do Olt Deletion After Adapter Restart
438 [Documentation] This keyword deletes OLT after adapter restart and checks deleted device(s) and data
439 ... - prefered environment is two ONUs are active on each of two OLTs, but test works also with single ONU/OLT
440 ... - restart the ONU adapter preferred via "kubectl delete pod"
441 ... - delete one OLT immediately after the restart has been initiated
442 ... - wait until the restart of the ONU adapter and the reconcile processing are finished
443 ... - check whether the ONUs on the remaining OLT have been properly reconciled (if avaialable)
444 ... - check whether the ONUs at the deleted OLT have disappeared from the device list
445 ... - KV store data of these ONUs are deleted under:
446 ... - <kvStorePrefix>/openonu/<deviceId>
447 ... - <kvStorePrefix>/openonu/pm-data/<deviceId>
448 ... - check for not deleted device(s) reason is still the same before restart (if available)
449 ... - delete ONU and MIB-template in KV-store
450 ... Check [VOL-4443] for more details
451 FOR ${I} IN RANGE 0 ${num_olts}
452 #get olt serial number
453 ${olt_serial_number}= Set Variable ${list_olts}[${I}][sn]
454 #validate olt states
455 ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
456 Enable Device ${olt_device_id}
457 END
TorstenThiemef7cd2be2021-12-06 14:30:11 +0000458 # bring all onus to active -> OMCI-Flows-Pushed
TorstenThieme712b2962021-11-17 14:16:15 +0000459 Run Keyword If "${workflow}"=="DT" Perform Sanity Test DT
460 ... ELSE IF "${workflow}"=="TT" Perform Sanity Tests TT
461 ... ELSE Perform Sanity Test
462 # OLT#1 will be deleted, get its SN
463 ${olt_to_be_deleted}= Set Variable ${olts[0]['serial']}
464 ${olt_to_be_deleted_device_id}= Get OLTDeviceID From OLT List ${olt_to_be_deleted}
465 # collect all ONU device ids belonging to OLT to be deleted
466 ${onu_device_id_list_should_be_deleted} Create List
467 Build ONU Device Id List ${onu_device_id_list_should_be_deleted} ${olt_to_be_deleted}
468 Log ${onu_device_id_list_should_be_deleted}
469 Reconcile Onu Adapter ${NAMESPACE} ${usekill2restart} ACTIVE ${olt_to_be_deleted}
470 # validate OLT and all corresponding ONUs are removed
471 Validate all ONUS for OLT Removed ${num_all_onus} ${hosts} ${olt_to_be_deleted} ${timeout}
472 Validate Device Removed ${olt_to_be_deleted}
473 # validate for alle removed ONUs KV store date deleted
474 FOR ${onu_device_id} IN @{onu_device_id_list_should_be_deleted}
475 Log ${onu_device_id}
476 Wait Until Keyword Succeeds ${timeout} 1s Validate Onu Data In Etcd Removed ${INFRA_NAMESPACE}
477 ... ${onu_device_id} ${kvstoreprefix} without_pm_data=False
478 END
479 FOR ${I} IN RANGE 0 ${num_all_onus}
480 ${src}= Set Variable ${hosts.src[${I}]}
481 Continue For Loop If "${olt_to_be_deleted}"=="${src['olt']}"
482 Current State Test omci-flows-pushed ${src['onu']}
483 END
TorstenThiemef7cd2be2021-12-06 14:30:11 +0000484
485Do Flow Deletion After Adapter Restart
486 [Documentation] This keyword removes flow(s) after adapter restart and checks removed flow(s)
487 ... - perform sanity test include add subscriber
488 ... - restart the ONU adapter preferred via "kubectl delete pod"
489 ... - remove flow(s) from one ONU immediately after the restart has been initiated
490 ... - wait until the restart of the ONU adapter and the reconcile processing are finished
491 ... - check removed flow(s) from ONU
492 ... - check for not removed flows still the same before restart (if available)
493 FOR ${I} IN RANGE 0 ${num_olts}
494 #get olt serial number
495 ${olt_serial_number}= Set Variable ${list_olts}[${I}][sn]
496 #validate olt states
497 ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
498 Enable Device ${olt_device_id}
499 END
500 # bring all onus to active -> OMCI-Flows-Pushed
501 Run Keyword If "${workflow}"=="DT" Perform Sanity Test DT
502 ... ELSE IF "${workflow}"=="TT" Perform Sanity Tests TT
503 ... ELSE Perform Sanity Test
504 # log ONOS flows before remove
505 ${flow}= Execute ONOS CLI Command use single connection
506 ... ${ONOS_SSH_IP} ${ONOS_SSH_PORT} flows -s any ${of_id}
507 Log ${flow}
508 # validate OLT flows before remove
509 ${onu_device_id_list} Create List
510 Build ONU Device Id List ${onu_device_id_list}
511 Log ${onu_device_id_list}
512 FOR ${onu_device_id} IN @{onu_device_id_list}
513 Log ${onu_device_id}
514 ${rc} ${output}= Run and Return Rc and Output
Andrea Campanella28989d12022-01-11 09:49:21 +0100515 ... voltctl -c ${VOLTCTL_CONFIG} device flows ${onu_device_id} -m 32MB -o json
TorstenThiemef7cd2be2021-12-06 14:30:11 +0000516 Should Be Equal As Integers ${rc} 0
517 ${jsondata}= To Json ${output}
518 Log ${jsondata}
519 END
520 # Collect data for remove flow(s)
521 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${hosts.src[0]['olt']}
TorstenThieme00fe8262022-01-19 10:43:07 +0000522 ${onu_sn}= Set Variable ${hosts.src[0]['onu']}
523 ${onu_port_list} Create List
524 FOR ${I} IN RANGE 0 ${num_all_onus}
525 ${src}= Set Variable ${hosts.src[${I}]}
526 Continue For Loop If "${onu_sn}"!="${src['onu']}"
527 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']}
528 ... ${of_id} ${src['uni_id']}
529 ${port_id}= Get Index From List ${onu_port_list} ${onu_port}
530 Continue For Loop If -1 != ${port_id}
531 Append To List ${onu_port_list} ${onu_port}
532 END
533 ${params_for_remove_flow}= Create Dictionary unitag=${unitag_sub} onu_sn=${onu_sn} of_id=${of_id}
534 ... onu_port=${onu_port_list[0]}
TorstenThiemef7cd2be2021-12-06 14:30:11 +0000535 # Collect number of flows for comparing after Reconcile
536 ${olt_flows_list} Create List
537 FOR ${I} IN RANGE 0 ${num_olts}
538 ${olt_of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${list_olts}[${I}][sn]
539 ${flows}= Count flows ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${olt_of_id} added
540 ${olt_flows}= Create Dictionary olt=${olt_of_id} flows=${flows}
541 Append To List ${olt_flows_list} ${olt_flows}
542 END
TorstenThieme00fe8262022-01-19 10:43:07 +0000543 ${flows_onu}= Set Variable 0
544 FOR ${onu_port} IN @{onu_port_list}
545 ${flows_onu_port}= Count flows ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} added ${onu_port}
546 ${flows_onu}= Evaluate ${flows_onu} + ${flows_onu_port}
547 END
TorstenThiemef7cd2be2021-12-06 14:30:11 +0000548 # Restart onu adapter with deleting flows from first onu
549 Reconcile Onu Adapter ${NAMESPACE} ${usekill2restart} ACTIVE flow_delete_params=${params_for_remove_flow}
550 # validate flows in ONOS after remove
551 ${flow}= Execute ONOS CLI Command use single connection
552 ... ${ONOS_SSH_IP} ${ONOS_SSH_PORT} flows -s any ${of_id}
553 Log ${flow}
554 ${expected_flows_onu}= Set Variable If "${workflow}"=="ATT" 1 0
TorstenThieme00fe8262022-01-19 10:43:07 +0000555 FOR ${onu_port} IN @{onu_port_list}
556 Wait Until Keyword Succeeds ${timeout} 2s Validate number of flows ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
557 ... ${expected_flows_onu} ${of_id} any ${onu_port}
558 END
TorstenThiemed6492882021-12-16 08:10:02 +0000559 ${flow}= Execute ONOS CLI Command use single connection
560 ... ${ONOS_SSH_IP} ${ONOS_SSH_PORT} flows -s any ${of_id}
561 Log ${flow}
TorstenThieme00fe8262022-01-19 10:43:07 +0000562 # Beside onu port specific flows additional flows deleted depending on workflow and number of onu ports
563 ${number_ports}= Get Length ${onu_port_list}
564 ${additional_flows_deleted}= Run Keyword If "${workflow}"=="DT" Set Variable ${number_ports}
565 ... ELSE IF "${workflow}"=="TT" Evaluate ${number_ports}*3
566 ... ELSE IF "${workflow}"=="ATT" Set Variable 0
567 ... ELSE Set Variable 0
TorstenThiemef7cd2be2021-12-06 14:30:11 +0000568 FOR ${I} IN RANGE 0 ${num_olts}
TorstenThiemef7cd2be2021-12-06 14:30:11 +0000569 ${expected_flows}= Run Keyword If "${of_id}"=="${olt_flows_list}[${I}][olt]"
570 ... Evaluate ${olt_flows_list}[${I}][flows]-${flows_onu}-${additional_flows_deleted}
571 ... ELSE Set Variable ${olt_flows_list}[${I}][flows]
TorstenThiemed6492882021-12-16 08:10:02 +0000572 Wait Until Keyword Succeeds ${timeout} 2s Validate ONOS Flows per OLT ${list_olts}[${I}][sn]
573 ... ${expected_flows}
TorstenThiemef7cd2be2021-12-06 14:30:11 +0000574 END
TorstenThiemed6492882021-12-16 08:10:02 +0000575 ${flow}= Execute ONOS CLI Command use single connection
576 ... ${ONOS_SSH_IP} ${ONOS_SSH_PORT} flows -s any ${of_id}
577 Log ${flow}
TorstenThiemef7cd2be2021-12-06 14:30:11 +0000578 # validate etcd data
579 ${List_ONU_Serial} Create List
580 Build ONU SN List ${List_ONU_Serial}
581 ${onu_sn_no_flows}= Set Variable ${hosts.src[0]['onu']}
582 FOR ${onu_sn} IN @{List_ONU_Serial}
583 ${must_exist}= Set Variable If "${onu_sn}"=="${onu_sn_no_flows}" False True
TorstenThiemed6492882021-12-16 08:10:02 +0000584 Wait Until Keyword Succeeds ${timeout} 2s Validate Tech Profiles and Flows in ETCD Data Per Onu
585 ... ${onu_sn} ${INFRA_NAMESPACE} ${kvstoreprefix} ${must_exist}
TorstenThiemef7cd2be2021-12-06 14:30:11 +0000586 END
587 ${onu_device_id_no_flows}= Get Device ID From SN ${hosts.src[0]['onu']}
588 FOR ${onu_device_id} IN @{onu_device_id_list}
589 Log ${onu_device_id}
590 ${must_exist}= Set Variable If "${onu_device_id}"=="${onu_device_id_no_flows}" False True
591 Validate OLT Flows Per Onu ${onu_device_id} ${must_exist}
592 END
TorstenThieme00fe8262022-01-19 10:43:07 +0000593
594Do Wrong MDS Counter After Adapter Restart
595 [Documentation] This keyword checks correct handling of a wrong MDS counter after adapter restart
596 ... - perform sanity test include add subscriber
597 ... - restart the ONU adapter preferred via "kubectl delete pod"
598 ... - manipulate MDS counter
599 ... - wait until the restart of the ONU adapter and the reconcile processing are finished
600 ... - check all ONUs come up to previous state
601 FOR ${I} IN RANGE 0 ${num_olts}
602 #get olt serial number
603 ${olt_serial_number}= Set Variable ${list_olts}[${I}][sn]
604 #validate olt states
605 ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
606 Enable Device ${olt_device_id}
607 END
608 Run Keyword If "${workflow}"=="DT" Perform Sanity Test DT
609 ... ELSE IF "${workflow}"=="TT" Perform Sanity Tests TT
610 ... ELSE Perform Sanity Test
611 Reconcile Onu Adapter ${NAMESPACE} ${usekill2restart} ACTIVE wrong_MDS_counter=True
612 Run Keyword If "${workflow}"=="DT" Perform Sanity Test DT ${suppressaddsubscriber}
613 ... ELSE IF "${workflow}"=="TT" Perform Sanity Tests TT ${suppressaddsubscriber}
614 ... ELSE Perform Sanity Test ${suppressaddsubscriber}
615 Disable Onu Device
616 Current State Test All Onus tech-profile-config-delete-success
617 Wait for all ONU Ports in ONOS Disabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${unitag_sub}
618 Enable Onu Device
619 Run Keyword If "${workflow}"=="DT" Perform Sanity Test DT ${suppressaddsubscriber}
620 ... ELSE IF "${workflow}"=="TT" Perform Sanity Tests TT ${suppressaddsubscriber}
621 ... ELSE Perform Sanity Test ${suppressaddsubscriber}