Hardik Windlass | 17bd114 | 2021-03-12 08:15:25 +0000 | [diff] [blame] | 1 | # Copyright 2021 - 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 Tests ONU Software Upgrade |
| 18 | Suite Setup Setup Suite |
| 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 |
Hardik Windlass | c310c7c | 2021-03-25 13:16:59 +0000 | [diff] [blame] | 33 | Resource ../../libraries/bbsim.robot |
Hardik Windlass | 17bd114 | 2021-03-12 08:15:25 +0000 | [diff] [blame] | 34 | Resource ../../variables/variables.robot |
| 35 | |
| 36 | *** Variables *** |
| 37 | ${POD_NAME} flex-ocp-cord |
| 38 | ${KUBERNETES_CONF} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.conf |
| 39 | ${KUBERNETES_CONFIGS_DIR} ~/pod-configs/kubernetes-configs |
| 40 | #${KUBERNETES_CONFIGS_DIR} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.conf |
| 41 | ${KUBERNETES_YAML} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.yml |
| 42 | ${HELM_CHARTS_DIR} ~/helm-charts |
| 43 | ${VOLTHA_POD_NUM} 8 |
| 44 | ${NAMESPACE} voltha |
| 45 | # For below variable value, using deployment name as using grep for |
| 46 | # parsing radius pod name, we can also use full radius pod name |
| 47 | ${RESTART_POD_NAME} radius |
| 48 | ${timeout} 60s |
| 49 | ${of_id} 0 |
| 50 | ${logical_id} 0 |
| 51 | ${has_dataplane} True |
| 52 | ${teardown_device} False |
| 53 | ${scripts} ../../scripts |
| 54 | |
| 55 | # Per-test logging on failure is turned off by default; set this variable to enable |
| 56 | ${container_log_dir} ${None} |
| 57 | |
| 58 | ${suppressaddsubscriber} True |
| 59 | |
| 60 | # ONU Image to test for Upgrade needs to be passed in the following format: |
Hardik Windlass | ba1bd27 | 2021-06-22 08:29:33 +0000 | [diff] [blame] | 61 | ${image_version} ${EMPTY} |
| 62 | # Example value: BBSM_IMG_00002 |
| 63 | ${image_url} ${EMPTY} |
Hardik Windlass | 17bd114 | 2021-03-12 08:15:25 +0000 | [diff] [blame] | 64 | # Example value: http://bbsim0:50074/images/software-image.img |
Hardik Windlass | ba1bd27 | 2021-06-22 08:29:33 +0000 | [diff] [blame] | 65 | ${image_vendor} ${EMPTY} |
| 66 | # Example value: BBSM |
| 67 | ${image_activate_on_success} ${EMPTY} |
| 68 | # Example value: false |
| 69 | ${image_commit_on_success} ${EMPTY} |
| 70 | # Example value: false |
| 71 | ${image_crc} ${EMPTY} |
Hardik Windlass | 17bd114 | 2021-03-12 08:15:25 +0000 | [diff] [blame] | 72 | # Example value: 0 |
Hardik Windlass | 17bd114 | 2021-03-12 08:15:25 +0000 | [diff] [blame] | 73 | |
| 74 | *** Test Cases *** |
| 75 | Test ONU Upgrade |
| 76 | [Documentation] Validates the ONU Upgrade doesn't affect the system functionality |
| 77 | ... Performs the sanity and verifies all the ONUs are authenticated/DHCP/pingable |
| 78 | ... Requirement: Pass image details in following parameters in the robot command |
| 79 | ... onu_image_name, onu_image_url, onu_image_version, onu_image_crc, onu_image_local_dir |
Hardik Windlass | c310c7c | 2021-03-25 13:16:59 +0000 | [diff] [blame] | 80 | ... Note: The TC expects the image url and other parameters to be common for all ONUs on all BBSim |
Hardik Windlass | 17bd114 | 2021-03-12 08:15:25 +0000 | [diff] [blame] | 81 | ... Check [VOL-3903] for more details |
| 82 | [Tags] functional ONUUpgrade |
| 83 | [Setup] Start Logging ONUUpgrade |
| 84 | [Teardown] Run Keywords Collect Logs |
| 85 | ... AND Stop Logging ONUUpgrade |
| 86 | ... AND Delete All Devices and Verify |
| 87 | # Add OLT device |
| 88 | Setup |
| 89 | # Performing Sanity Test to make sure subscribers are all DHCP and pingable |
| 90 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 91 | Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test |
Hardik Windlass | c310c7c | 2021-03-25 13:16:59 +0000 | [diff] [blame] | 92 | FOR ${J} IN RANGE 0 ${num_olts} |
| 93 | ${olt_serial_number}= Set Variable ${list_olts}[${J}][sn] |
| 94 | ${bbsim_rel}= Catenate SEPARATOR= bbsim ${J} |
| 95 | ${bbsim_pod}= Get Pod Name By Label ${NAMESPACE} release ${bbsim_rel} |
| 96 | Test ONU Upgrade Per OLT ${bbsim_pod} ${olt_serial_number} |
| 97 | List ONUs ${NAMESPACE} ${bbsim_pod} |
| 98 | END |
| 99 | # Additional Verification |
| 100 | Wait Until Keyword Succeeds ${timeout} 2s Delete All Devices and Verify |
| 101 | Setup |
| 102 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 103 | Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test |
| 104 | |
| 105 | *** Keywords *** |
| 106 | Test ONU Upgrade Per OLT |
| 107 | [Documentation] This keyword performs the ONU Upgrade test on single OLT |
| 108 | [Arguments] ${bbsim_pod} ${olt_serial_number} |
Hardik Windlass | 17bd114 | 2021-03-12 08:15:25 +0000 | [diff] [blame] | 109 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 110 | ${src}= Set Variable ${hosts.src[${I}]} |
| 111 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Hardik Windlass | c310c7c | 2021-03-25 13:16:59 +0000 | [diff] [blame] | 112 | Continue For Loop If "${olt_serial_number}"!="${src['olt']}" |
Hardik Windlass | 17bd114 | 2021-03-12 08:15:25 +0000 | [diff] [blame] | 113 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
Hardik Windlass | ba1bd27 | 2021-06-22 08:29:33 +0000 | [diff] [blame] | 114 | # Download Image |
| 115 | Download ONU Device Image ${image_version} ${image_url} ${image_vendor} |
| 116 | ... ${image_activate_on_success} ${image_commit_on_success} |
| 117 | ... ${image_crc} ${onu_device_id} |
| 118 | ${imageState}= Run Keyword If '${image_activate_on_success}'=='true' Set Variable IMAGE_ACTIVE |
| 119 | ... ELSE IF '${image_activate_on_success}'=='true' and '${image_commit_on_success}'=='true' |
| 120 | ... Set Variable IMAGE_COMMITTED |
| 121 | ... ELSE Set Variable IMAGE_INACTIVE |
| 122 | ${activated}= Set Variable If '${image_activate_on_success}'=='true' True False |
| 123 | ${committed}= Set Variable If '${image_activate_on_success}'=='true' and '${image_commit_on_success}'=='true' |
| 124 | ... True False |
| 125 | Wait Until Keyword Succeeds ${timeout} 2s Verify ONU Device Image Status ${image_version} |
| 126 | ... ${onu_device_id} DOWNLOAD_SUCCEEDED NO_ERROR ${imageState} |
| 127 | Wait Until Keyword Succeeds ${timeout} 2s Verify ONU Device Image List ${onu_device_id} |
| 128 | ... ${image_version} ${committed} ${activated} True |
| 129 | # Activate Image |
| 130 | ${imageState}= Set Variable If '${image_commit_on_success}'=='true' IMAGE_COMMITTED IMAGE_ACTIVE |
| 131 | ${committed}= Set Variable If '${image_commit_on_success}'=='true' True False |
| 132 | Run Keyword If '${image_activate_on_success}'=='false' Run Keywords |
| 133 | ... Activate ONU Device Image ${image_version} ${image_commit_on_success} ${onu_device_id} |
| 134 | ... AND Wait Until Keyword Succeeds ${timeout} 2s Verify ONU Device Image Status ${image_version} |
| 135 | ... ${onu_device_id} DOWNLOAD_SUCCEEDED NO_ERROR ${imageState} |
| 136 | ... AND Wait Until Keyword Succeeds ${timeout} 2s Verify ONU Device Image List ${onu_device_id} |
| 137 | ... ${image_version} ${committed} True True |
| 138 | # Commit Image |
| 139 | Run Keyword If '${image_commit_on_success}'=='false' Run Keywords |
| 140 | ... Commit ONU Device Image ${image_version} ${onu_device_id} |
| 141 | ... AND Wait Until Keyword Succeeds ${timeout} 2s Verify ONU Device Image Status ${image_version} |
| 142 | ... ${onu_device_id} DOWNLOAD_SUCCEEDED NO_ERROR IMAGE_COMMITTED |
| 143 | ... AND Wait Until Keyword Succeeds ${timeout} 2s Verify ONU Device Image List ${onu_device_id} |
| 144 | ... ${image_version} True True True |
Hardik Windlass | c310c7c | 2021-03-25 13:16:59 +0000 | [diff] [blame] | 145 | Wait Until Keyword Succeeds ${timeout} 2s Verify ONU Device Image On BBSim ${NAMESPACE} ${bbsim_pod} |
| 146 | ... ${src['onu']} software_image_committed |
Hardik Windlass | 17bd114 | 2021-03-12 08:15:25 +0000 | [diff] [blame] | 147 | Wait Until Keyword Succeeds ${timeout} 5s Perform Sanity Test ${suppressaddsubscriber} |
| 148 | END |
Hardik Windlass | 17bd114 | 2021-03-12 08:15:25 +0000 | [diff] [blame] | 149 | |
Hardik Windlass | 17bd114 | 2021-03-12 08:15:25 +0000 | [diff] [blame] | 150 | Setup Suite |
| 151 | [Documentation] Set up the test suite |
| 152 | Common Test Suite Setup |
| 153 | |
| 154 | Teardown Suite |
| 155 | [Documentation] Tear down steps for the suite |
| 156 | Run Keyword If ${has_dataplane} Clean Up Linux |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 157 | Close All ONOS SSH Connections |