Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 1 | # 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 *** |
| 17 | Documentation Test various end-to-end scenarios |
| 18 | Suite Setup Common Test Suite Setup |
| 19 | Test Setup Setup |
| 20 | Test Teardown Teardown |
| 21 | #Suite Teardown Teardown Suite |
| 22 | Library Collections |
| 23 | Library String |
| 24 | Library OperatingSystem |
| 25 | Library XML |
| 26 | Library RequestsLibrary |
| 27 | Library ../../libraries/DependencyLibrary.py |
| 28 | Resource ../../libraries/onos.robot |
| 29 | Resource ../../libraries/voltctl.robot |
| 30 | Resource ../../libraries/voltha.robot |
| 31 | Resource ../../libraries/utils.robot |
| 32 | Resource ../../libraries/k8s.robot |
| 33 | Resource ../../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 Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 47 | ${timeout} 120s |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 48 | ${of_id} 0 |
| 49 | ${logical_id} 0 |
Suchitra Vemuri | 2fa9bba | 2020-01-22 17:38:48 -0800 | [diff] [blame] | 50 | ${has_dataplane} True |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 51 | ${teardown_device} False |
| 52 | ${scripts} ../../scripts |
| 53 | |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 54 | # Per-test logging on failure is turned off by default; set this variable to enable |
| 55 | ${container_log_dir} ${None} |
| 56 | |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 57 | *** Test Cases *** |
| 58 | Adding the same OLT before and after enabling the device |
| 59 | [Documentation] Create OLT, Create the same OLT again and Check for the Error message |
Suchitra Vemuri | 9a6dd6d | 2020-02-28 17:46:26 -0800 | [diff] [blame] | 60 | ... VOL-2405 VOL-2406 |
| 61 | [Tags] AddSameOLT functional released |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 62 | [Setup] Run Keywords Announce Message START TEST AddSameOLT |
| 63 | ... AND Start Logging AddSameOLT |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 64 | [Teardown] Run Keywords Collect Logs |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 65 | ... AND Stop Logging AddSameOLT |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 66 | ... AND Announce Message END TEST AddSameOLT |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 67 | # Add OLT device |
Suchitra Vemuri | e9c79bf | 2020-02-26 23:11:39 -0800 | [diff] [blame] | 68 | #setup |
Andy Bavier | c1904dc | 2020-03-20 11:39:15 -0700 | [diff] [blame] | 69 | Delete All Devices and Verify |
Suchitra Vemuri | 9a6dd6d | 2020-02-28 17:46:26 -0800 | [diff] [blame] | 70 | Run Keyword and Ignore Error Collect Logs |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 71 | ${olt_device_id}= Create Device ${olt_ip} ${OLT_PORT} |
| 72 | Set Suite Variable ${olt_device_id} |
Suchitra Vemuri | 1d0d022 | 2020-02-12 17:17:19 -0800 | [diff] [blame] | 73 | ${timeout} Set Variable 180s |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 74 | Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device PREPROVISIONED UNKNOWN UNKNOWN |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 75 | ... ${olt_device_id} |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 76 | ${rc} ${output}= Run and Return Rc and Output |
| 77 | ... ${VOLTCTL_CONFIG}; voltctl device create -t openolt -H ${olt_ip}:${OLT_PORT} |
| 78 | Should Not Be Equal As Integers ${rc} 0 |
| 79 | Should Contain ${output} Device is already pre-provisioned |
| 80 | #Enable the created OLT device |
| 81 | Enable Device ${olt_device_id} |
| 82 | Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device ENABLED ACTIVE REACHABLE |
| 83 | ... ${olt_serial_number} |
| 84 | ${rc} ${output}= Run and Return Rc and Output |
| 85 | ... ${VOLTCTL_CONFIG}; voltctl device create -t openolt -H ${olt_ip}:${OLT_PORT} |
| 86 | Should Not Be Equal As Integers ${rc} 0 |
| 87 | Log ${output} |
| 88 | Should Contain ${output} Device is already pre-provisioned |
| 89 | Log "This OLT is added already and enabled" |
Gayathri.Selvan | 3dfe6c2 | 2020-01-27 13:08:55 +0000 | [diff] [blame] | 90 | |
Gayathri.Selvan | 967f5a5 | 2020-02-12 06:58:38 +0000 | [diff] [blame] | 91 | Test Disable or Enable different device id which is not in the device list |
| 92 | [Documentation] Disable or Enable a device id which is not listed in the voltctl device list |
Gayathri.Selvan | 3dfe6c2 | 2020-01-27 13:08:55 +0000 | [diff] [blame] | 93 | ... command and ensure that error message is shown. |
Suchitra Vemuri | a7dae32 | 2020-02-19 22:38:18 -0800 | [diff] [blame] | 94 | ... VOL-2412-2413 |
| 95 | [Tags] functional DisableEnableInvalidDevice released |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 96 | [Setup] Run Keywords Announce Message START TEST DisableInvalidDevice |
| 97 | ... AND Start Logging DisableInvalidDevice |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 98 | [Teardown] Run Keywords Collect Logs |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 99 | ... AND Stop Logging DisableInvalidDevice |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 100 | ... AND Announce Message END TEST DisableInvalidDevice |
Suchitra Vemuri | 9a6dd6d | 2020-02-28 17:46:26 -0800 | [diff] [blame] | 101 | Run Keyword and Ignore Error Collect Logs |
Gayathri.Selvan | 3dfe6c2 | 2020-01-27 13:08:55 +0000 | [diff] [blame] | 102 | ${rc} ${output}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl device list -o json |
| 103 | Should Be Equal As Integers ${rc} 0 |
| 104 | ${jsondata}= To Json ${output} |
| 105 | Log ${jsondata} |
| 106 | ${length}= Get Length ${jsondata} |
| 107 | @{ids}= Create List |
| 108 | FOR ${INDEX} IN RANGE 0 ${length} |
| 109 | ${value}= Get From List ${jsondata} ${INDEX} |
| 110 | ${device_id}= Get From Dictionary ${value} id |
| 111 | Append To List ${ids} ${device_id} |
| 112 | END |
| 113 | #Create a new fake device id |
| 114 | ${fakeDeviceId} Replace String Using Regexp ${device_id} \\d\\d xx count=1 |
| 115 | Log ${fakeDeviceId} |
| 116 | #Ensure that the new id created is not in the device id list |
| 117 | List Should Not Contain Value ${ids} ${fakeDeviceId} |
| 118 | #Disable fake device id |
| 119 | ${rc} ${output}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl device disable ${fakeDeviceId} |
Suchitra Vemuri | a7e8ad2 | 2020-02-11 18:02:40 -0800 | [diff] [blame] | 120 | Should Contain ${output} Error while disabling '${fakeDeviceId}' |
Gayathri.Selvan | 967f5a5 | 2020-02-12 06:58:38 +0000 | [diff] [blame] | 121 | #Disable device for VOL-2413 |
| 122 | Disable Device ${device_id} |
| 123 | #Enable fake device id |
| 124 | ${rc} ${output}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl device enable ${fakeDeviceId} |
| 125 | Should Contain ${output} Error while enabling '${fakeDeviceId}' |
suraj gour | baee2c6 | 2020-02-03 10:21:32 +0000 | [diff] [blame] | 126 | |
| 127 | Check deletion of OLT/ONU before disabling |
| 128 | [Documentation] Try deleting OL/ONU before disabling and check error message |
| 129 | ... Assuming devices are already created, up and running fine; test1 or sanity was |
| 130 | ... executed where all the ONUs are authenticated/DHCP/pingable |
Suchitra Vemuri | 9a6dd6d | 2020-02-28 17:46:26 -0800 | [diff] [blame] | 131 | ... VOL-2411 |
| 132 | [Tags] functional DeleteBeforeDisableCheck notready |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 133 | [Setup] Run Keywords Announce Message START TEST DeleteBeforeDisableCheck |
| 134 | ... AND Start Logging DeleteBeforeDisableCheck |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 135 | [Teardown] Run Keywords Collect Logs |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 136 | ... AND Stop Logging DeleteBeforeDisableCheck |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 137 | ... AND Announce Message END TEST DeleteBeforeDisableCheck |
suraj gour | baee2c6 | 2020-02-03 10:21:32 +0000 | [diff] [blame] | 138 | #validate olt states |
Suchitra Vemuri | 9a6dd6d | 2020-02-28 17:46:26 -0800 | [diff] [blame] | 139 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 140 | Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test |
suraj gour | baee2c6 | 2020-02-03 10:21:32 +0000 | [diff] [blame] | 141 | Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device ENABLED ACTIVE REACHABLE |
| 142 | ... ${olt_serial_number} |
| 143 | ${rc} ${output}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl device delete ${olt_device_id} |
| 144 | Log ${output} |
| 145 | Should Contain ${output} expected-admin-state:DISABLED |
| 146 | Wait Until Keyword Succeeds ${timeout} 5s |
| 147 | ... Validate OLT Device ENABLED ACTIVE REACHABLE ${olt_serial_number} |
| 148 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number} |
| 149 | Set Global Variable ${of_id} |
| 150 | FOR ${I} IN RANGE 0 ${num_onus} |
| 151 | ${src}= Set Variable ${hosts.src[${I}]} |
| 152 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 153 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 154 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device |
| 155 | ... ENABLED ACTIVE REACHABLE |
| 156 | ... ${src['onu']} onu=True onu_reason=omci-flows-pushed |
| 157 | ${rc} ${output}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl device delete ${onu_device_id} |
| 158 | Log ${output} |
| 159 | Should Contain ${output} expected-admin-state:DISABLED |
| 160 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device |
| 161 | ... ENABLED ACTIVE REACHABLE |
| 162 | ... ${src['onu']} onu=True onu_reason=omci-flows-pushed |
| 163 | END |
suraj gour | b316041 | 2020-02-04 06:11:31 +0000 | [diff] [blame] | 164 | |
| 165 | Check disabling of pre-provisioned OLT before enabling |
| 166 | [Documentation] Create OLT, disable same OLT, check error message and validates ONU |
Suchitra Vemuri | 9a6dd6d | 2020-02-28 17:46:26 -0800 | [diff] [blame] | 167 | ... VOL-2414 |
| 168 | [Tags] functional DisablePreprovisionedOLTCheck |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 169 | [Setup] Run Keywords Announce Message START TEST DisablePreprovisionedOLTCheck |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 170 | ... AND Start Logging DisablePreprovisionedOLTCheck |
Andy Bavier | de53a1f | 2020-03-25 14:53:56 -0700 | [diff] [blame] | 171 | ... AND Delete All Devices and Verify |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 172 | [Teardown] Run Keywords Collect Logs |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 173 | ... AND Stop Logging DisablePreprovisionedOLTCheck |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 174 | ... AND Announce Message END TEST DisablePreprovisionedOLTCheck |
Andy Bavier | de53a1f | 2020-03-25 14:53:56 -0700 | [diff] [blame] | 175 | Sleep 180s |
Suchitra Vemuri | 9a6dd6d | 2020-02-28 17:46:26 -0800 | [diff] [blame] | 176 | Run Keyword and Ignore Error Collect Logs |
suraj gour | b316041 | 2020-02-04 06:11:31 +0000 | [diff] [blame] | 177 | #create/preprovision device |
| 178 | ${olt_device_id}= Create Device ${olt_ip} ${OLT_PORT} |
| 179 | Set Suite Variable ${olt_device_id} |
| 180 | #validate olt states |
| 181 | Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device PREPROVISIONED UNKNOWN UNKNOWN |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 182 | ... ${olt_device_id} |
suraj gour | b316041 | 2020-02-04 06:11:31 +0000 | [diff] [blame] | 183 | #Try disabling pre-provisioned OLT |
| 184 | ${rc} ${output}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl device disable ${olt_device_id} |
Andy Bavier | de53a1f | 2020-03-25 14:53:56 -0700 | [diff] [blame] | 185 | Should Not Be Equal As Integers ${rc} 0 |
suraj gour | b316041 | 2020-02-04 06:11:31 +0000 | [diff] [blame] | 186 | Log ${output} |
| 187 | Should Contain ${output} invalid-admin-state:PREPROVISIONED |
| 188 | #Enable OLT |
| 189 | Enable Device ${olt_device_id} |
| 190 | Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device ENABLED ACTIVE REACHABLE |
| 191 | ... ${olt_serial_number} |
| 192 | ${logical_id}= Get Logical Device ID From SN ${olt_serial_number} |
| 193 | Set Suite Variable ${logical_id} |
| 194 | FOR ${I} IN RANGE 0 ${num_onus} |
| 195 | ${src}= Set Variable ${hosts.src[${I}]} |
| 196 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 197 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device |
| 198 | ... ENABLED ACTIVE REACHABLE |
| 199 | ... ${src['onu']} onu=True onu_reason=omci-flows-pushed |
| 200 | END |
Hema | 526eceb | 2020-02-04 13:11:40 +0530 | [diff] [blame] | 201 | |
| 202 | Disable and Delete the logical device directly |
| 203 | [Documentation] Disable and delete the logical device directly is not possible |
| 204 | ... since it is allowed only through OLT device deletion. |
Suchitra Vemuri | 5f66f42 | 2020-03-02 16:43:49 -0800 | [diff] [blame] | 205 | ... VOL-2418 |
| 206 | [Tags] functional DisableDelete_LogicalDevice |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 207 | [Setup] Run Keywords Announce Message START TEST DisableDelete_LogicalDevice |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 208 | ... AND Start Logging DisableDelete_LogicalDevice |
Andy Bavier | de53a1f | 2020-03-25 14:53:56 -0700 | [diff] [blame] | 209 | ... AND Delete All Devices and Verify |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 210 | [Teardown] Run Keywords Collect Logs |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 211 | ... AND Stop Logging DisableDelete_LogicalDevice |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 212 | ... AND Announce Message END TEST DisableDelete_LogicalDevice |
Hema | 526eceb | 2020-02-04 13:11:40 +0530 | [diff] [blame] | 213 | Run Keyword If ${has_dataplane} Sleep 180s |
| 214 | #create/preprovision OLT device |
| 215 | ${olt_device_id}= Create Device ${olt_ip} ${OLT_PORT} |
| 216 | Set Suite Variable ${olt_device_id} |
| 217 | #validate olt states |
| 218 | Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device PREPROVISIONED UNKNOWN UNKNOWN |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 219 | ... ${olt_device_id} |
Hema | 526eceb | 2020-02-04 13:11:40 +0530 | [diff] [blame] | 220 | #Enable the created OLT device |
| 221 | Enable Device ${olt_device_id} |
| 222 | Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device ENABLED ACTIVE REACHABLE |
| 223 | ... ${olt_serial_number} |
| 224 | #Check whether logical devices are also created |
| 225 | ${rc} ${output}= Run and Return Rc and Output |
| 226 | ... ${VOLTCTL_CONFIG}; voltctl logicaldevice list |
| 227 | Should Be Equal As Integers ${rc} 0 |
| 228 | Log ${output} |
| 229 | ${logical_id}= Get Logical Device ID From SN ${olt_serial_number} |
| 230 | Should Not Be Empty ${logical_id} |
| 231 | ${rc} ${output}= Run and Return Rc and Output |
| 232 | ... ${VOLTCTL_CONFIG}; voltctl logicaldevice disable ${logical_id} |
Andy Bavier | de53a1f | 2020-03-25 14:53:56 -0700 | [diff] [blame] | 233 | Should Not Be Equal As Integers ${rc} 0 |
Hema | 526eceb | 2020-02-04 13:11:40 +0530 | [diff] [blame] | 234 | Log ${output} |
| 235 | Should Contain '${output}' Unknown command |
| 236 | ${rc} ${output1}= Run and Return Rc and Output |
| 237 | ... ${VOLTCTL_CONFIG}; voltctl logicaldevice delete ${logical_id} |
Andy Bavier | de53a1f | 2020-03-25 14:53:56 -0700 | [diff] [blame] | 238 | Should Not Be Equal As Integers ${rc} 0 |
Hema | 526eceb | 2020-02-04 13:11:40 +0530 | [diff] [blame] | 239 | Log ${output1} |
| 240 | Should Contain '${output1}' Unknown command |
suraj gour | a416622 | 2020-02-03 12:09:11 +0000 | [diff] [blame] | 241 | |
| 242 | Check logical device creation and deletion |
| 243 | [Documentation] Deletes all devices, checks logical device, creates devices again and checks |
| 244 | ... logical device, flows, ports |
Suchitra Vemuri | 5f66f42 | 2020-03-02 16:43:49 -0800 | [diff] [blame] | 245 | ... VOL-2416 VOL-2417 |
| 246 | [Tags] functional LogicalDeviceCheck |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 247 | [Setup] Run Keywords Announce Message START TEST LogicalDeviceCheck |
| 248 | ... AND Start Logging LogicalDeviceCheck |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 249 | [Teardown] Run Keywords Collect Logs |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 250 | ... AND Stop Logging LogicalDeviceCheck |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 251 | ... AND Announce Message END TEST LogicalDeviceCheck |
Andy Bavier | de53a1f | 2020-03-25 14:53:56 -0700 | [diff] [blame] | 252 | Delete All Devices and Verify |
suraj gour | a416622 | 2020-02-03 12:09:11 +0000 | [diff] [blame] | 253 | ${logical_id}= Get Logical Device ID From SN ${olt_serial_number} |
| 254 | Should Be Empty ${logical_id} |
| 255 | Run Keyword If ${has_dataplane} Sleep 180s |
| 256 | ${olt_device_id}= Create Device ${olt_ip} ${OLT_PORT} |
| 257 | Set Suite Variable ${olt_device_id} |
| 258 | Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device PREPROVISIONED UNKNOWN UNKNOWN |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 259 | ... ${olt_device_id} |
suraj gour | a416622 | 2020-02-03 12:09:11 +0000 | [diff] [blame] | 260 | Enable Device ${olt_device_id} |
| 261 | Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device ENABLED ACTIVE REACHABLE |
| 262 | ... ${olt_serial_number} |
| 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 |
| 266 | ... ${VOLTCTL_CONFIG}; voltctl logicaldevice list |
| 267 | Should Be Equal As Integers ${rc} 0 |
| 268 | Log ${output} |
| 269 | Should Contain ${output} ${olt_device_id} |
| 270 | Set Suite Variable ${logical_id} |
| 271 | Wait Until Keyword Succeeds ${timeout} 5s Validate Logical Device Ports ${logical_id} |
| 272 | Wait Until Keyword Succeeds ${timeout} 5s Validate Logical Device Flows ${logical_id} |
| 273 | Run Keyword and Ignore Error Collect Logs |
Suchitra Vemuri | e9c79bf | 2020-02-26 23:11:39 -0800 | [diff] [blame] | 274 | |
| 275 | *** Keywords *** |
| 276 | Setup Suite |
| 277 | [Documentation] Set up the test suite |
| 278 | Common Test Suite Setup |
| 279 | |