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