blob: d41a7d6823e0aa84253775b38a01c2a6634c296d [file] [log] [blame]
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +00001# Copyright 2017 - 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# FIXME Can we use the same test against BBSim and Hardware?
15
16*** Settings ***
17Documentation Test various end-to-end scenarios
18Suite Setup Common Test Suite Setup
19Test Setup Setup
20Test Teardown Teardown
Suchitra Vemuri32dea012020-07-08 16:40:06 -070021Suite Teardown Teardown Suite
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +000022Library Collections
23Library String
24Library OperatingSystem
25Library XML
26Library RequestsLibrary
27Library ../../libraries/DependencyLibrary.py
28Resource ../../libraries/onos.robot
29Resource ../../libraries/voltctl.robot
30Resource ../../libraries/voltha.robot
31Resource ../../libraries/utils.robot
32Resource ../../libraries/k8s.robot
33Resource ../../variables/variables.robot
34
35*** Variables ***
36${POD_NAME} flex-ocp-cord
37${KUBERNETES_CONF} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.conf
38${KUBERNETES_CONFIGS_DIR} ~/pod-configs/kubernetes-configs
39#${KUBERNETES_CONFIGS_DIR} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.conf
40${KUBERNETES_YAML} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.yml
41${HELM_CHARTS_DIR} ~/helm-charts
42${VOLTHA_POD_NUM} 8
43${NAMESPACE} voltha
44# For below variable value, using deployment name as using grep for
45# parsing radius pod name, we can also use full radius pod name
46${RESTART_POD_NAME} radius
Suchitra Vemuri21fa8c72021-03-08 16:34:25 -080047${timeout} 540s
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +000048${of_id} 0
49${logical_id} 0
Suchitra Vemuri2fa9bba2020-01-22 17:38:48 -080050${has_dataplane} True
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +000051${teardown_device} False
52${scripts} ../../scripts
Hardik Windlasscbcca312020-04-20 21:46:11 +053053${workflow} ATT
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +000054
Andy Bavierabeba262020-02-07 16:22:16 -070055# Per-test logging on failure is turned off by default; set this variable to enable
56${container_log_dir} ${None}
57
Gayathri.Selvanee4a91b2020-01-17 06:49:53 +000058*** Test Cases ***
59Adding the same OLT before and after enabling the device
60 [Documentation] Create OLT, Create the same OLT again and Check for the Error message
Suchitra Vemuri9a6dd6d2020-02-28 17:46:26 -080061 ... VOL-2405 VOL-2406
62 [Tags] AddSameOLT functional released
Andy Baviere187eda2020-04-20 15:00:02 -070063 [Setup] Start Logging AddSameOLT
Andy Bavier4a8450e2020-02-04 08:58:37 -070064 [Teardown] Run Keywords Collect Logs
Andy Bavierabeba262020-02-07 16:22:16 -070065 ... AND Stop Logging AddSameOLT
Suchitra Vemurif7a033c2020-02-26 17:22:41 -080066 # Add OLT device
Suchitra Vemurie9c79bf2020-02-26 23:11:39 -080067 #setup
Andy Bavierc1904dc2020-03-20 11:39:15 -070068 Delete All Devices and Verify
Suchitra Vemuri736d35f2020-08-06 16:28:35 -070069 # Wait for the OLT to be reachable
Suchitra Vemuria6879aa2020-11-03 11:03:11 -080070 FOR ${I} IN RANGE 0 ${olt_count}
71 ${olt_user}= Get From Dictionary ${list_olts}[${I}] user
72 ${olt_pass}= Get From Dictionary ${list_olts}[${I}] pass
73 ${olt_ssh_ip}= Get From Dictionary ${list_olts}[${I}] sship
74 ${olt_ip}= Get From Dictionary ${list_olts}[${I}] ip
Suchitra Vemuri09f878d2021-02-10 18:19:04 -080075 ${olt_port}= Get From Dictionary ${list_olts}[${I}] oltport
Suchitra Vemuria6879aa2020-11-03 11:03:11 -080076 ${olt_serial_number}= Get From Dictionary ${list_olts}[${I}] sn
77 #${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
78 Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds 120s 10s
79 ... Check Remote System Reachability True ${olt_ssh_ip}
Andrea Campanella3dcce272021-01-15 16:04:47 +010080 ${olt_device_id}= Run Keyword If "${list_olts}[${I}][type]" == "${None}"
Suchitra Vemuri09f878d2021-02-10 18:19:04 -080081 ... Create Device ${olt_ip} ${olt_port}
82 ... ELSE Create Device ${olt_ip} ${olt_port} ${list_olts}[${I}][type]
Suchitra Vemuria6879aa2020-11-03 11:03:11 -080083 Set Suite Variable ${olt_device_id}
84 Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device PREPROVISIONED UNKNOWN UNKNOWN
Hardik Windlass8b446492021-06-10 06:25:23 +000085 ... ${olt_device_id} by_dev_id=True
Suchitra Vemuria6879aa2020-11-03 11:03:11 -080086 ${rc} ${output}= Run and Return Rc and Output
Suchitra Vemuri09f878d2021-02-10 18:19:04 -080087 ... voltctl -c ${VOLTCTL_CONFIG} device create -t openolt -H ${olt_ip}:${olt_port}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -080088 Should Not Be Equal As Integers ${rc} 0
89 Should Contain ${output} device is already pre-provisioned ignore_case=True
90 #Enable the created OLT device
91 Enable Device ${olt_device_id}
92 Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device ENABLED ACTIVE REACHABLE
93 ... ${olt_serial_number}
94 ${rc} ${output}= Run and Return Rc and Output
Suchitra Vemuri09f878d2021-02-10 18:19:04 -080095 ... voltctl -c ${VOLTCTL_CONFIG} device create -t openolt -H ${olt_ip}:${olt_port}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -080096 Should Not Be Equal As Integers ${rc} 0
97 Log ${output}
98 Should Contain ${output} device is already pre-provisioned ignore_case=True
99 Log "This OLT is added already and enabled"
100 END
Gayathri.Selvan3dfe6c22020-01-27 13:08:55 +0000101
Gayathri.Selvan967f5a52020-02-12 06:58:38 +0000102Test Disable or Enable different device id which is not in the device list
103 [Documentation] Disable or Enable a device id which is not listed in the voltctl device list
Gayathri.Selvan3dfe6c22020-01-27 13:08:55 +0000104 ... command and ensure that error message is shown.
Suchitra Vemuria7dae322020-02-19 22:38:18 -0800105 ... VOL-2412-2413
106 [Tags] functional DisableEnableInvalidDevice released
Andy Baviere187eda2020-04-20 15:00:02 -0700107 [Setup] Start Logging DisableInvalidDevice
Andy Bavier4a8450e2020-02-04 08:58:37 -0700108 [Teardown] Run Keywords Collect Logs
Andy Bavierabeba262020-02-07 16:22:16 -0700109 ... AND Stop Logging DisableInvalidDevice
Matteo Scandolo5899be12020-11-11 15:38:07 -0800110 ${rc} ${output}= Run and Return Rc and Output voltctl -c ${VOLTCTL_CONFIG} device list -o json
Gayathri.Selvan3dfe6c22020-01-27 13:08:55 +0000111 Should Be Equal As Integers ${rc} 0
112 ${jsondata}= To Json ${output}
113 Log ${jsondata}
114 ${length}= Get Length ${jsondata}
115 @{ids}= Create List
116 FOR ${INDEX} IN RANGE 0 ${length}
117 ${value}= Get From List ${jsondata} ${INDEX}
118 ${device_id}= Get From Dictionary ${value} id
119 Append To List ${ids} ${device_id}
120 END
121 #Create a new fake device id
122 ${fakeDeviceId} Replace String Using Regexp ${device_id} \\d\\d xx count=1
123 Log ${fakeDeviceId}
124 #Ensure that the new id created is not in the device id list
125 List Should Not Contain Value ${ids} ${fakeDeviceId}
126 #Disable fake device id
Matteo Scandolo5899be12020-11-11 15:38:07 -0800127 ${rc} ${output}= Run and Return Rc and Output voltctl -c ${VOLTCTL_CONFIG} device disable ${fakeDeviceId}
Suchitra Vemuria7e8ad22020-02-11 18:02:40 -0800128 Should Contain ${output} Error while disabling '${fakeDeviceId}'
Gayathri.Selvan967f5a52020-02-12 06:58:38 +0000129 #Disable device for VOL-2413
130 Disable Device ${device_id}
131 #Enable fake device id
Matteo Scandolo5899be12020-11-11 15:38:07 -0800132 ${rc} ${output}= Run and Return Rc and Output voltctl -c ${VOLTCTL_CONFIG} device enable ${fakeDeviceId}
Gayathri.Selvan967f5a52020-02-12 06:58:38 +0000133 Should Contain ${output} Error while enabling '${fakeDeviceId}'
suraj gourbaee2c62020-02-03 10:21:32 +0000134
135Check deletion of OLT/ONU before disabling
136 [Documentation] Try deleting OL/ONU before disabling and check error message
137 ... Assuming devices are already created, up and running fine; test1 or sanity was
138 ... executed where all the ONUs are authenticated/DHCP/pingable
Suchitra Vemuri9a6dd6d2020-02-28 17:46:26 -0800139 ... VOL-2411
Hardik Windlasscbcca312020-04-20 21:46:11 +0530140 #TODO: If this TC gets updated in future, To add support for DT workflow as well (refer JIRA: VOL-2945)
Suchitra Vemuri9a6dd6d2020-02-28 17:46:26 -0800141 [Tags] functional DeleteBeforeDisableCheck notready
Andy Baviere187eda2020-04-20 15:00:02 -0700142 [Setup] Start Logging DeleteBeforeDisableCheck
Andy Bavier4a8450e2020-02-04 08:58:37 -0700143 [Teardown] Run Keywords Collect Logs
Andy Bavierabeba262020-02-07 16:22:16 -0700144 ... AND Stop Logging DeleteBeforeDisableCheck
suraj gourbaee2c62020-02-03 10:21:32 +0000145 #validate olt states
Suchitra Vemuri9a6dd6d2020-02-28 17:46:26 -0800146 Run Keyword If ${has_dataplane} Clean Up Linux
147 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800148 FOR ${I} IN RANGE 0 ${olt_count}
149 ${olt_user}= Get From Dictionary ${list_olts}[${I}] user
150 ${olt_pass}= Get From Dictionary ${list_olts}[${I}] pass
151 ${olt_ssh_ip}= Get From Dictionary ${list_olts}[${I}] sship
152 ${olt_ip}= Get From Dictionary ${list_olts}[${I}] ip
153 ${olt_serial_number}= Get From Dictionary ${list_olts}[${I}] sn
154 #${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
155 Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device ENABLED ACTIVE REACHABLE
156 ... REACHABLE ${olt_serial_number}
Matteo Scandolo5899be12020-11-11 15:38:07 -0800157 ${rc} ${output}= Run and Return Rc and Output voltctl -c ${VOLTCTL_CONFIG} device delete ${olt_device_id}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800158 Log ${output}
159 Should Contain ${output} expected-admin-state:DISABLED
160 Wait Until Keyword Succeeds ${timeout} 5s
161 ... Validate OLT Device ENABLED ACTIVE REACHABLE ${olt_serial_number}
162 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS
163 ... ${olt_serial_number}
164 Set Global Variable ${of_id}
165 END
166 FOR ${I} IN RANGE 0 ${num_all_onus}
suraj gourbaee2c62020-02-03 10:21:32 +0000167 ${src}= Set Variable ${hosts.src[${I}]}
168 ${dst}= Set Variable ${hosts.dst[${I}]}
169 ${onu_device_id}= Get Device ID From SN ${src['onu']}
170 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
171 ... ENABLED ACTIVE REACHABLE
172 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
Matteo Scandolo5899be12020-11-11 15:38:07 -0800173 ${rc} ${output}= Run and Return Rc and Output voltctl -c ${VOLTCTL_CONFIG} device delete ${onu_device_id}
suraj gourbaee2c62020-02-03 10:21:32 +0000174 Log ${output}
175 Should Contain ${output} expected-admin-state:DISABLED
176 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
177 ... ENABLED ACTIVE REACHABLE
178 ... ${src['onu']} onu=True onu_reason=omci-flows-pushed
179 END
suraj gourb3160412020-02-04 06:11:31 +0000180
181Check disabling of pre-provisioned OLT before enabling
182 [Documentation] Create OLT, disable same OLT, check error message and validates ONU
Suchitra Vemuri9a6dd6d2020-02-28 17:46:26 -0800183 ... VOL-2414
184 [Tags] functional DisablePreprovisionedOLTCheck
Andy Baviere187eda2020-04-20 15:00:02 -0700185 [Setup] Run Keywords Start Logging DisablePreprovisionedOLTCheck
Andy Bavierde53a1f2020-03-25 14:53:56 -0700186 ... AND Delete All Devices and Verify
Andy Bavier4a8450e2020-02-04 08:58:37 -0700187 [Teardown] Run Keywords Collect Logs
Andy Bavierabeba262020-02-07 16:22:16 -0700188 ... AND Stop Logging DisablePreprovisionedOLTCheck
Andy Bavierde53a1f2020-03-25 14:53:56 -0700189 Sleep 180s
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800190 FOR ${I} IN RANGE 0 ${olt_count}
191 ${olt_user}= Get From Dictionary ${list_olts}[${I}] user
192 ${olt_pass}= Get From Dictionary ${list_olts}[${I}] pass
193 ${olt_ssh_ip}= Get From Dictionary ${list_olts}[${I}] sship
194 ${olt_ip}= Get From Dictionary ${list_olts}[${I}] ip
Suchitra Vemuri09f878d2021-02-10 18:19:04 -0800195 ${olt_port}= Get From Dictionary ${list_olts}[${I}] oltport
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800196 ${olt_serial_number}= Get From Dictionary ${list_olts}[${I}] sn
197 #${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
198 #create/preprovision device
Andrea Campanella3dcce272021-01-15 16:04:47 +0100199 ${olt_device_id}= Run Keyword If "${list_olts}[${I}][type]" == "${None}"
Suchitra Vemuri09f878d2021-02-10 18:19:04 -0800200 ... Create Device ${olt_ip} ${olt_port}
201 ... ELSE Create Device ${olt_ip} ${olt_port} ${list_olts}[${I}][type]
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800202 Set Suite Variable ${olt_device_id}
203 #validate olt states
204 Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device PREPROVISIONED UNKNOWN
Hardik Windlass8b446492021-06-10 06:25:23 +0000205 ... UNKNOWN ${olt_device_id} by_dev_id=True
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800206 #Try disabling pre-provisioned OLT
207 ${rc} ${output}= Run and Return Rc and Output
Matteo Scandolo5899be12020-11-11 15:38:07 -0800208 ... voltctl -c ${VOLTCTL_CONFIG} device disable ${olt_device_id}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800209 Should Not Be Equal As Integers ${rc} 0
210 Log ${output}
211 Should Contain ${output} invalid-admin-state:PREPROVISIONED
212 #Enable OLT
213 Enable Device ${olt_device_id}
214 Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device ENABLED ACTIVE REACHABLE
215 ... ${olt_serial_number}
216 ${logical_id}= Get Logical Device ID From SN ${olt_serial_number}
217 Set Suite Variable ${logical_id}
218 END
Hardik Windlasscbcca312020-04-20 21:46:11 +0530219 ${onu_reason}= Set Variable If '${workflow}' == 'DT' initial-mib-downloaded omci-flows-pushed
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800220 FOR ${I} IN RANGE 0 ${num_all_onus}
suraj gourb3160412020-02-04 06:11:31 +0000221 ${src}= Set Variable ${hosts.src[${I}]}
222 ${dst}= Set Variable ${hosts.dst[${I}]}
223 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device
224 ... ENABLED ACTIVE REACHABLE
Hardik Windlasscbcca312020-04-20 21:46:11 +0530225 ... ${src['onu']} onu=True onu_reason=${onu_reason}
suraj gourb3160412020-02-04 06:11:31 +0000226 END
Hema526eceb2020-02-04 13:11:40 +0530227
228Disable and Delete the logical device directly
229 [Documentation] Disable and delete the logical device directly is not possible
230 ... since it is allowed only through OLT device deletion.
Suchitra Vemuri5f66f422020-03-02 16:43:49 -0800231 ... VOL-2418
232 [Tags] functional DisableDelete_LogicalDevice
Andy Baviere187eda2020-04-20 15:00:02 -0700233 [Setup] Run Keywords Start Logging DisableDelete_LogicalDevice
Andy Bavierde53a1f2020-03-25 14:53:56 -0700234 ... AND Delete All Devices and Verify
Andy Bavier4a8450e2020-02-04 08:58:37 -0700235 [Teardown] Run Keywords Collect Logs
Andy Bavierabeba262020-02-07 16:22:16 -0700236 ... AND Stop Logging DisableDelete_LogicalDevice
Hema526eceb2020-02-04 13:11:40 +0530237 Run Keyword If ${has_dataplane} Sleep 180s
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800238 FOR ${I} IN RANGE 0 ${olt_count}
239 ${olt_user}= Get From Dictionary ${list_olts}[${I}] user
240 ${olt_pass}= Get From Dictionary ${list_olts}[${I}] pass
241 ${olt_ssh_ip}= Get From Dictionary ${list_olts}[${I}] sship
242 ${olt_ip}= Get From Dictionary ${list_olts}[${I}] ip
Suchitra Vemuri09f878d2021-02-10 18:19:04 -0800243 ${olt_port}= Get From Dictionary ${list_olts}[${I}] oltport
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800244 ${olt_serial_number}= Get From Dictionary ${list_olts}[${I}] sn
245 #${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
246 #create/preprovision OLT device
Andrea Campanella3dcce272021-01-15 16:04:47 +0100247 ${olt_device_id}= Run Keyword If "${list_olts}[${I}][type]" == "${None}"
Suchitra Vemuri09f878d2021-02-10 18:19:04 -0800248 ... Create Device ${olt_ip} ${olt_port}
249 ... ELSE Create Device ${olt_ip} ${olt_port} ${list_olts}[${I}][type]
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800250 Set Suite Variable ${olt_device_id}
251 #validate olt states
252 Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device PREPROVISIONED UNKNOWN
Hardik Windlass8b446492021-06-10 06:25:23 +0000253 ... UNKNOWN ${olt_device_id} by_dev_id=True
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800254 #Enable the created OLT device
255 Enable Device ${olt_device_id}
256 Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device ENABLED ACTIVE
257 ... REACHABLE ${olt_serial_number}
258 #Check whether logical devices are also created
259 ${rc} ${output}= Run and Return Rc and Output
Matteo Scandolo5899be12020-11-11 15:38:07 -0800260 ... voltctl -c ${VOLTCTL_CONFIG} logicaldevice list
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800261 Should Be Equal As Integers ${rc} 0
262 Log ${output}
263 ${logical_id}= Get Logical Device ID From SN ${olt_serial_number}
264 Should Not Be Empty ${logical_id}
265 ${rc} ${output}= Run and Return Rc and Output
Matteo Scandolo5899be12020-11-11 15:38:07 -0800266 ... voltctl -c ${VOLTCTL_CONFIG} logicaldevice disable ${logical_id}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800267 Should Not Be Equal As Integers ${rc} 0
268 Log ${output}
269 Should Contain '${output}' Unknown command
270 ${rc} ${output1}= Run and Return Rc and Output
Matteo Scandolo5899be12020-11-11 15:38:07 -0800271 ... voltctl -c ${VOLTCTL_CONFIG} logicaldevice delete ${logical_id}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800272 Should Not Be Equal As Integers ${rc} 0
273 Log ${output1}
274 Should Contain '${output1}' Unknown command
275 END
suraj goura4166222020-02-03 12:09:11 +0000276
277Check logical device creation and deletion
278 [Documentation] Deletes all devices, checks logical device, creates devices again and checks
279 ... logical device, flows, ports
Suchitra Vemuri5f66f422020-03-02 16:43:49 -0800280 ... VOL-2416 VOL-2417
281 [Tags] functional LogicalDeviceCheck
Andy Baviere187eda2020-04-20 15:00:02 -0700282 [Setup] Start Logging LogicalDeviceCheck
Andy Bavier4a8450e2020-02-04 08:58:37 -0700283 [Teardown] Run Keywords Collect Logs
Andy Bavierabeba262020-02-07 16:22:16 -0700284 ... AND Stop Logging LogicalDeviceCheck
Andy Bavierde53a1f2020-03-25 14:53:56 -0700285 Delete All Devices and Verify
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800286 FOR ${I} IN RANGE 0 ${olt_count}
287 ${olt_user}= Get From Dictionary ${list_olts}[${I}] user
288 ${olt_pass}= Get From Dictionary ${list_olts}[${I}] pass
289 ${olt_ssh_ip}= Get From Dictionary ${list_olts}[${I}] sship
290 ${olt_ip}= Get From Dictionary ${list_olts}[${I}] ip
Suchitra Vemuri09f878d2021-02-10 18:19:04 -0800291 ${olt_port}= Get From Dictionary ${list_olts}[${I}] oltport
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800292 ${olt_serial_number}= Get From Dictionary ${list_olts}[${I}] sn
293 #${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number}
294 ${logical_id}= Get Logical Device ID From SN ${olt_serial_number}
295 Should Be Empty ${logical_id}
296 Run Keyword If ${has_dataplane} Sleep 180s
297 ... ELSE Sleep 10s
Andrea Campanella3dcce272021-01-15 16:04:47 +0100298 ${olt_device_id}= Run Keyword If "${list_olts}[${I}][type]" == "${None}"
Suchitra Vemuri09f878d2021-02-10 18:19:04 -0800299 ... Create Device ${olt_ip} ${olt_port}
300 ... ELSE Create Device ${olt_ip} ${olt_port} ${list_olts}[${I}][type]
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800301 Set Suite Variable ${olt_device_id}
302 Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device PREPROVISIONED UNKNOWN
Hardik Windlass8b446492021-06-10 06:25:23 +0000303 ... UNKNOWN ${olt_device_id} by_dev_id=True
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800304 Enable Device ${olt_device_id}
305 Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device ENABLED ACTIVE REACHABLE
306 ... ${olt_serial_number}
307 ${logical_id}= Get Logical Device ID From SN ${olt_serial_number}
308 Should Not Be Empty ${logical_id}
309 ${rc} ${output}= Run and Return Rc and Output
Matteo Scandolo5899be12020-11-11 15:38:07 -0800310 ... voltctl -c ${VOLTCTL_CONFIG} logicaldevice list
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800311 Should Be Equal As Integers ${rc} 0
312 Log ${output}
313 Should Contain ${output} ${olt_device_id}
314 Set Suite Variable ${logical_id}
315 Wait Until Keyword Succeeds ${timeout} 5s Validate Logical Device Ports ${logical_id}
316 Wait Until Keyword Succeeds ${timeout} 5s Validate Logical Device Flows ${logical_id}
Suchitra Vemuria6879aa2020-11-03 11:03:11 -0800317 END
Suchitra Vemurie9c79bf2020-02-26 23:11:39 -0800318
319*** Keywords ***
320Setup Suite
321 [Documentation] Set up the test suite
322 Common Test Suite Setup
323
Suchitra Vemuri32dea012020-07-08 16:40:06 -0700324Teardown Suite
325 [Documentation] Teardown suite
326 Run Keyword If ${has_dataplane} Clean Up Linux
Suchitra Vemuri1d8e8172020-06-17 17:43:56 -0700327 #Restore all ONUs
328# Run Keyword If ${has_dataplane} RestoreONUs ${num_onus}
TorstenThieme4e2168e2021-06-22 14:01:47 +0000329 Close All ONOS SSH Connections