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 | |
| 55 | *** Test Cases *** |
| 56 | Adding the same OLT before and after enabling the device |
| 57 | [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] | 58 | [Tags] VOL-2405 VOL-2406 AddSameOLT functional |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 59 | [Setup] None |
| 60 | [Teardown] None |
Suchitra Vemuri | bd7fcd2 | 2020-01-22 19:08:32 -0800 | [diff] [blame] | 61 | Run Keyword If ${has_dataplane} Delete Device and Verify |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 62 | ${olt_device_id}= Create Device ${olt_ip} ${OLT_PORT} |
| 63 | Set Suite Variable ${olt_device_id} |
| 64 | Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device PREPROVISIONED UNKNOWN UNKNOWN |
| 65 | ... ${EMPTY} ${olt_device_id} |
| 66 | ${rc} ${output}= Run and Return Rc and Output |
| 67 | ... ${VOLTCTL_CONFIG}; voltctl device create -t openolt -H ${olt_ip}:${OLT_PORT} |
| 68 | Should Not Be Equal As Integers ${rc} 0 |
| 69 | Should Contain ${output} Device is already pre-provisioned |
| 70 | #Enable the created OLT device |
| 71 | Enable Device ${olt_device_id} |
| 72 | Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device ENABLED ACTIVE REACHABLE |
| 73 | ... ${olt_serial_number} |
| 74 | ${rc} ${output}= Run and Return Rc and Output |
| 75 | ... ${VOLTCTL_CONFIG}; voltctl device create -t openolt -H ${olt_ip}:${OLT_PORT} |
| 76 | Should Not Be Equal As Integers ${rc} 0 |
| 77 | Log ${output} |
| 78 | Should Contain ${output} Device is already pre-provisioned |
| 79 | Log "This OLT is added already and enabled" |
Gayathri.Selvan | 3dfe6c2 | 2020-01-27 13:08:55 +0000 | [diff] [blame] | 80 | |
| 81 | Test Disable different device id which is not in the device list |
| 82 | [Documentation] Disable a device id which is not listed in the voltctl device list |
| 83 | ... command and ensure that error message is shown. |
Suchitra Vemuri | 925db9d | 2020-01-27 15:41:26 -0800 | [diff] [blame^] | 84 | [Tags] functional DisableInvalidDevice VOL-2412 |
Gayathri.Selvan | 3dfe6c2 | 2020-01-27 13:08:55 +0000 | [diff] [blame] | 85 | [Setup] None |
| 86 | [Teardown] None |
| 87 | ${rc} ${output}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl device list -o json |
| 88 | Should Be Equal As Integers ${rc} 0 |
| 89 | ${jsondata}= To Json ${output} |
| 90 | Log ${jsondata} |
| 91 | ${length}= Get Length ${jsondata} |
| 92 | @{ids}= Create List |
| 93 | FOR ${INDEX} IN RANGE 0 ${length} |
| 94 | ${value}= Get From List ${jsondata} ${INDEX} |
| 95 | ${device_id}= Get From Dictionary ${value} id |
| 96 | Append To List ${ids} ${device_id} |
| 97 | END |
| 98 | #Create a new fake device id |
| 99 | ${fakeDeviceId} Replace String Using Regexp ${device_id} \\d\\d xx count=1 |
| 100 | Log ${fakeDeviceId} |
| 101 | #Ensure that the new id created is not in the device id list |
| 102 | List Should Not Contain Value ${ids} ${fakeDeviceId} |
| 103 | #Disable fake device id |
| 104 | ${rc} ${output}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl device disable ${fakeDeviceId} |
Suchitra Vemuri | 925db9d | 2020-01-27 15:41:26 -0800 | [diff] [blame^] | 105 | Should Contain ${output} Error while disabling '${fakeDeviceId}': rpc error: code = NotFound desc |