TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 1 | # Copyright 2020 - 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 | |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 15 | *** Settings *** |
TorstenThieme | 109683b | 2020-09-24 12:35:41 +0000 | [diff] [blame] | 16 | Documentation Test states of ONU Go adapter with ATT workflows only (not for DT/TT workflow!) |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 17 | Suite Setup Setup Suite |
| 18 | Suite Teardown Teardown Suite |
| 19 | Test Setup Setup |
| 20 | Test Teardown Teardown |
| 21 | Library Collections |
| 22 | Library String |
| 23 | Library OperatingSystem |
| 24 | Library XML |
| 25 | Library RequestsLibrary |
| 26 | Library ../../libraries/DependencyLibrary.py |
| 27 | Resource ../../libraries/onos.robot |
| 28 | Resource ../../libraries/voltctl.robot |
| 29 | Resource ../../libraries/voltha.robot |
| 30 | Resource ../../libraries/utils.robot |
| 31 | Resource ../../libraries/k8s.robot |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 32 | Resource ../../libraries/onu_utilities.robot |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 33 | Resource ../../libraries/bbsim.robot |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 34 | Resource ../../variables/variables.robot |
| 35 | |
| 36 | *** Variables *** |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 37 | ${NAMESPACE} voltha |
| 38 | ${INFRA_NAMESPACE} default |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 39 | ${timeout} 60s |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 40 | ${of_id} 0 |
| 41 | ${logical_id} 0 |
| 42 | ${has_dataplane} True |
| 43 | ${external_libs} True |
| 44 | ${teardown_device} True |
| 45 | ${scripts} ../../scripts |
| 46 | # Per-test logging on failure is turned off by default; set this variable to enable |
| 47 | ${container_log_dir} ${None} |
TorstenThieme | 3385cdc | 2021-02-04 13:50:50 +0000 | [diff] [blame] | 48 | # KV Store Prefix |
| 49 | # example: -v kvstoreprefix:voltha_voltha |
| 50 | ${kvstoreprefix} voltha_voltha |
TorstenThieme | e0e5bba | 2020-08-05 11:20:13 +0000 | [diff] [blame] | 51 | # state to test variable, can be passed via the command line too, valid values: 1-6 |
| 52 | # 1 -> activating-onu |
| 53 | # 2 -> starting-openomci |
| 54 | # 3 -> discovery-mibsync-complete |
| 55 | # 4 -> initial-mib-downloaded |
| 56 | # 5 -> tech-profile-config-download-success |
| 57 | # 6 -> omci-flows-pushed |
TorstenThieme | 87cd620 | 2020-09-09 10:01:28 +0000 | [diff] [blame] | 58 | # example: -v state2test:5 |
TorstenThieme | 66c91a8 | 2020-10-19 13:37:53 +0000 | [diff] [blame] | 59 | # example: -v state2test:omci-flows-pushed |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 60 | ${state2test} 6 |
TorstenThieme | e0e5bba | 2020-08-05 11:20:13 +0000 | [diff] [blame] | 61 | # test mode variable, can be passed via the command line too, valid values: SingleState, Up2State, SingleStateTime |
TorstenThieme | 87cd620 | 2020-09-09 10:01:28 +0000 | [diff] [blame] | 62 | # example: -v testmode:SingleStateTime |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 63 | ${testmode} SingleState |
TorstenThieme | 87cd620 | 2020-09-09 10:01:28 +0000 | [diff] [blame] | 64 | # used tech profile, can be passed via the command line too, valid values: default (=1T1GEM), 1T4GEM, 1T8GEM |
| 65 | # example: -v techprofile:1T4GEM |
TorstenThieme | e0e5bba | 2020-08-05 11:20:13 +0000 | [diff] [blame] | 66 | ${techprofile} default |
TorstenThieme | e0e5bba | 2020-08-05 11:20:13 +0000 | [diff] [blame] | 67 | # flag debugmode is used, if true timeout calculation various, can be passed via the command line too |
TorstenThieme | 87cd620 | 2020-09-09 10:01:28 +0000 | [diff] [blame] | 68 | # example: -v debugmode:True |
TorstenThieme | 401af43 | 2020-06-11 15:53:53 +0000 | [diff] [blame] | 69 | ${debugmode} False |
TorstenThieme | e0e5bba | 2020-08-05 11:20:13 +0000 | [diff] [blame] | 70 | # logging flag to enable Collect Logs, can be passed via the command line too |
TorstenThieme | 87cd620 | 2020-09-09 10:01:28 +0000 | [diff] [blame] | 71 | # example: -v logging:True |
TorstenThieme | 5e324e4 | 2020-07-27 09:36:16 +0000 | [diff] [blame] | 72 | ${logging} False |
TorstenThieme | 66c91a8 | 2020-10-19 13:37:53 +0000 | [diff] [blame] | 73 | # if True execution will be paused before clean up, only use in case of manual testing, do not use in ci pipeline! |
TorstenThieme | 87cd620 | 2020-09-09 10:01:28 +0000 | [diff] [blame] | 74 | # example: -v pausebeforecleanup:True |
TorstenThieme | b41007d | 2020-06-22 12:14:12 +0000 | [diff] [blame] | 75 | ${pausebeforecleanup} False |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 76 | # if True some outputs to console are done during running tests e.g. long duration flow test |
| 77 | # example: -v print2console:True |
| 78 | ${print2console} False |
TorstenThieme | e0e5bba | 2020-08-05 11:20:13 +0000 | [diff] [blame] | 79 | ${data_dir} ../data |
| 80 | |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 81 | |
| 82 | *** Test Cases *** |
| 83 | ONU State Test |
| 84 | [Documentation] Validates the ONU Go adapter states |
TorstenThieme | 66c91a8 | 2020-10-19 13:37:53 +0000 | [diff] [blame] | 85 | [Tags] sanityOnuGo StateTestOnuGo |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 86 | [Setup] Run Keywords Start Logging ONUStateTest |
| 87 | ... AND Setup Test |
| 88 | Run Keyword If ${has_dataplane} Clean Up Linux |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 89 | FOR ${I} IN RANGE 0 ${num_olts} |
| 90 | #get olt serial number |
| 91 | ${olt_serial_number}= Set Variable ${list_olts}[${I}][sn] |
| 92 | #validate olt states |
| 93 | ${olt_device_id}= Get OLTDeviceID From OLT List ${olt_serial_number} |
| 94 | Enable Device ${olt_device_id} |
| 95 | END |
TorstenThieme | 94e4ae4 | 2020-05-18 13:01:42 +0000 | [diff] [blame] | 96 | ${timeStart} = Get Current Date |
| 97 | Set Global Variable ${timeStart} |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 98 | Run Keyword If "${testmode}"=="SingleState" Do ONU Single State Test |
| 99 | ... ELSE IF "${testmode}"=="Up2State" Do ONU Up To State Test |
TorstenThieme | 94e4ae4 | 2020-05-18 13:01:42 +0000 | [diff] [blame] | 100 | ... ELSE IF "${testmode}"=="SingleStateTime" Do ONU Single State Test Time |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 101 | ... ELSE Fail The testmode (${testmode}) is not valid! |
TorstenThieme | 3494ceb | 2021-07-19 09:47:24 +0000 | [diff] [blame] | 102 | [Teardown] Run Keywords Run Keyword If ${logging} Get Logical Id of OLT |
| 103 | ... AND Run Keyword If ${logging} Collect Logs |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 104 | ... AND Stop Logging ONUStateTest |
| 105 | |
TorstenThieme | e0e5bba | 2020-08-05 11:20:13 +0000 | [diff] [blame] | 106 | Check Loaded Tech Profile |
| 107 | [Documentation] Validates the loaded Tech Profile |
| 108 | ... Assuming that ONU State Test was executed where all the ONUs are reached the expected state! |
| 109 | ... Check will be executed only the reached ONU state is 5 (tech-profile-config-download-success) or higher |
TorstenThieme | 66c91a8 | 2020-10-19 13:37:53 +0000 | [diff] [blame] | 110 | [Tags] functionalOnuGo CheckTechProfileOnuGo |
TorstenThieme | e0e5bba | 2020-08-05 11:20:13 +0000 | [diff] [blame] | 111 | [Setup] Start Logging ONUCheckTechProfile |
TorstenThieme | 66c91a8 | 2020-10-19 13:37:53 +0000 | [diff] [blame] | 112 | Run Keyword If '${onu_state}'=='tech-profile-config-download-success' or '${onu_state}'=='omci-flows-pushed' |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 113 | ... Do Check Tech Profile ${INFRA_NAMESPACE} |
TorstenThieme | 5a205ba | 2020-09-29 08:08:29 +0000 | [diff] [blame] | 114 | ... ELSE Pass Execution ${skip_message} skipped |
TorstenThieme | e0e5bba | 2020-08-05 11:20:13 +0000 | [diff] [blame] | 115 | [Teardown] Run Keywords Run Keyword If ${logging} Collect Logs |
| 116 | ... AND Stop Logging ONUCheckTechProfile |
| 117 | |
TorstenThieme | 401af43 | 2020-06-11 15:53:53 +0000 | [diff] [blame] | 118 | Onu Port Check |
TorstenThieme | 87cd620 | 2020-09-09 10:01:28 +0000 | [diff] [blame] | 119 | [Documentation] Validates that all the UNI ports show up in ONOS |
TorstenThieme | 0095868 | 2020-06-19 11:29:31 +0000 | [diff] [blame] | 120 | ... Assuming that ONU State Test was executed where all the ONUs are reached the expected state! |
TorstenThieme | 66c91a8 | 2020-10-19 13:37:53 +0000 | [diff] [blame] | 121 | [Tags] functionalOnuGo PortTestOnuGo |
TorstenThieme | 401af43 | 2020-06-11 15:53:53 +0000 | [diff] [blame] | 122 | [Setup] Start Logging ONUPortTest |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 123 | Run Keyword If '${onu_state}'=='tech-profile-config-download-success' or '${onu_state}'=='omci-flows-pushed' |
| 124 | ... Do Onu Port Check |
| 125 | ... ELSE Pass Execution ${skip_message} skipped |
TorstenThieme | 5e324e4 | 2020-07-27 09:36:16 +0000 | [diff] [blame] | 126 | [Teardown] Run Keywords Run Keyword If ${logging} Collect Logs |
TorstenThieme | 401af43 | 2020-06-11 15:53:53 +0000 | [diff] [blame] | 127 | ... AND Stop Logging ONUPortTest |
| 128 | |
TorstenThieme | 17756ea | 2020-11-11 14:09:47 +0000 | [diff] [blame] | 129 | Onu Etcd Data Check |
| 130 | [Documentation] Validates ONU data stored in ETCD |
| 131 | ... Assuming that ONU State Test was executed where all the ONUs are reached the expected state! |
| 132 | [Tags] functionalOnuGo EtcdDataOnuGo |
| 133 | [Setup] Start Logging ONUEtcdDataTest |
| 134 | Run Keyword If '${onu_state}'=='tech-profile-config-download-success' or '${onu_state}'=='omci-flows-pushed' |
| 135 | ... Do Onu Etcd Data Check |
| 136 | ... ELSE Pass Execution ${skip_message} skipped |
| 137 | [Teardown] Run Keywords Run Keyword If ${logging} Collect Logs |
| 138 | ... AND Stop Logging ONUEtcdDataTest |
| 139 | |
TorstenThieme | 109683b | 2020-09-24 12:35:41 +0000 | [diff] [blame] | 140 | Onu Flow Check |
| 141 | [Documentation] Validates the onu flows in ONOS and Voltha |
| 142 | ... Assuming that ONU State Test was executed where all the ONUs are reached the expected state! |
mpagenko | c2e7ba5 | 2020-11-12 13:50:57 +0000 | [diff] [blame] | 143 | [Tags] functionalOnuGo FlowTestOnuGo |
TorstenThieme | 109683b | 2020-09-24 12:35:41 +0000 | [diff] [blame] | 144 | [Setup] Start Logging ONUFlowTest |
TorstenThieme | 66c91a8 | 2020-10-19 13:37:53 +0000 | [diff] [blame] | 145 | Run Keyword If '${onu_state}'=='omci-flows-pushed' Do Onu Flow Check |
TorstenThieme | 5a205ba | 2020-09-29 08:08:29 +0000 | [diff] [blame] | 146 | ... ELSE Pass Execution ${skip_message} skipped |
TorstenThieme | 109683b | 2020-09-24 12:35:41 +0000 | [diff] [blame] | 147 | [Teardown] Run Keywords Run Keyword If ${logging} Collect Logs |
| 148 | ... AND Stop Logging ONUFlowTest |
| 149 | |
TorstenThieme | e3841a0 | 2020-09-23 08:20:43 +0000 | [diff] [blame] | 150 | Disable Enable Onu Device |
| 151 | [Documentation] Disables/enables ONU Device and check states |
| 152 | ... Assuming that ONU State Test was executed where all the ONUs are reached the expected state! |
TorstenThieme | 66c91a8 | 2020-10-19 13:37:53 +0000 | [diff] [blame] | 153 | [Tags] functionalOnuGo DisableEnableOnuGo |
TorstenThieme | e3841a0 | 2020-09-23 08:20:43 +0000 | [diff] [blame] | 154 | [Setup] Start Logging DisableEnableONUDevice |
TorstenThieme | 66c91a8 | 2020-10-19 13:37:53 +0000 | [diff] [blame] | 155 | Run Keyword If '${onu_state}'=='tech-profile-config-download-success' or '${onu_state}'=='omci-flows-pushed' |
| 156 | ... Do Disable Enable Onu Test |
TorstenThieme | 5a205ba | 2020-09-29 08:08:29 +0000 | [diff] [blame] | 157 | ... ELSE Pass Execution ${skip_message} skipped |
TorstenThieme | e3841a0 | 2020-09-23 08:20:43 +0000 | [diff] [blame] | 158 | [Teardown] Run Keywords Run Keyword If ${logging} Collect Logs |
| 159 | ... AND Stop Logging DisableEnableONUDevice |
| 160 | |
TorstenThieme | 5ca1dd1 | 2020-10-16 08:42:16 +0000 | [diff] [blame] | 161 | Power Off Power On Onu Device |
| 162 | [Documentation] Power off and Power on of all ONU Devices and check state |
| 163 | ... Assuming that ONU State Test was executed where all the ONUs are reached the expected state! |
TorstenThieme | 66c91a8 | 2020-10-19 13:37:53 +0000 | [diff] [blame] | 164 | [Tags] functionalOnuGo PowerOffPowerOnOnuGo |
TorstenThieme | 5ca1dd1 | 2020-10-16 08:42:16 +0000 | [diff] [blame] | 165 | [Setup] Start Logging PowerOffPowerOnONUDevice |
TorstenThieme | 66c91a8 | 2020-10-19 13:37:53 +0000 | [diff] [blame] | 166 | Run Keyword If '${onu_state}'=='tech-profile-config-download-success' or '${onu_state}'=='omci-flows-pushed' |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 167 | ... Do Power Off Power On Onu Device ${NAMESPACE} |
TorstenThieme | 5ca1dd1 | 2020-10-16 08:42:16 +0000 | [diff] [blame] | 168 | ... ELSE Pass Execution ${skip_message} skipped |
| 169 | [Teardown] Run Keywords Run Keyword If ${logging} Collect Logs |
| 170 | ... AND Stop Logging PowerOffPowerOnONUDevice |
| 171 | |
TorstenThieme | 1fbe808 | 2020-10-21 13:27:59 +0000 | [diff] [blame] | 172 | Soft Reboot Onu Device |
| 173 | [Documentation] Reboots softly all ONU Devices and check state |
| 174 | ... Assuming that ONU State Test was executed where all the ONUs are reached the expected state! |
| 175 | [Tags] functionalOnuGo SoftRebootOnuGo |
| 176 | [Setup] Start Logging SoftRebootONUDevice |
| 177 | Run Keyword If '${onu_state}'=='tech-profile-config-download-success' or '${onu_state}'=='omci-flows-pushed' |
| 178 | ... Do Soft Reboot Onu Device |
| 179 | ... ELSE Pass Execution ${skip_message} skipped |
| 180 | [Teardown] Run Keywords Run Keyword If ${logging} Collect Logs |
| 181 | ... AND Stop Logging SoftRebootONUDevice |
| 182 | |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 183 | *** Keywords *** |
| 184 | Setup Suite |
| 185 | [Documentation] Set up the test suite |
Andrea Campanella | 82add37 | 2021-11-05 12:01:15 +0100 | [diff] [blame] | 186 | Start Logging Setup or Teardown Setup-${SUITE NAME} |
TorstenThieme | 87cd620 | 2020-09-09 10:01:28 +0000 | [diff] [blame] | 187 | ${LogInfo}= Catenate |
| 188 | ... \r\nPassed arguments: |
TorstenThieme | 66c91a8 | 2020-10-19 13:37:53 +0000 | [diff] [blame] | 189 | ... state2test:${state2test}, testmode:${testmode}, techprofile:${techprofile}, |
TorstenThieme | 015d5c0 | 2020-09-11 09:53:34 +0000 | [diff] [blame] | 190 | ... debugmode:${debugmode}, logging:${logging}, pausebeforecleanup:${pausebeforecleanup}, |
TorstenThieme | 4798369 | 2021-06-17 10:43:35 +0000 | [diff] [blame] | 191 | ... print2console:${print2console}, kvstoreprefix:${kvstoreprefix} |
TorstenThieme | 87cd620 | 2020-09-09 10:01:28 +0000 | [diff] [blame] | 192 | Log ${LogInfo} console=yes |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 193 | Common Test Suite Setup |
TorstenThieme | 5a205ba | 2020-09-29 08:08:29 +0000 | [diff] [blame] | 194 | # prepare skip message in yellow for console log |
| 195 | ${skip}= Evaluate "\\033[33mSKIP\\033[0m" |
| 196 | ${skipped}= Evaluate "\\033[33m${SPACE*14} ===> Test case above was skipped! <=== ${SPACE*15}\\033[0m" |
| 197 | ${skip_message} Catenate ${skipped} | ${skip} | |
| 198 | Set Suite Variable ${skip_message} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 199 | ${all_onu_timeout}= Run Keyword If ${num_all_onus}>4 Calculate Timeout ${timeout} |
| 200 | ... ELSE Set Variable ${timeout} |
| 201 | Set Suite Variable ${all_onu_timeout} |
TorstenThieme | 1488d77 | 2020-09-28 10:52:43 +0000 | [diff] [blame] | 202 | ${techprofile}= Set Variable If "${techprofile}"=="1T1GEM" default ${techprofile} |
TorstenThieme | 7385005 | 2020-12-10 12:43:28 +0000 | [diff] [blame] | 203 | Set Suite Variable ${techprofile} |
TorstenThieme | 87cd620 | 2020-09-09 10:01:28 +0000 | [diff] [blame] | 204 | Run Keyword If "${techprofile}"=="default" Log To Console \nTechProfile:default (1T1GEM) |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 205 | ... ELSE IF "${techprofile}"=="1T4GEM" Set Tech Profile 1T4GEM ${INFRA_NAMESPACE} |
| 206 | ... ELSE IF "${techprofile}"=="1T8GEM" Set Tech Profile 1T8GEM ${INFRA_NAMESPACE} |
TorstenThieme | e0e5bba | 2020-08-05 11:20:13 +0000 | [diff] [blame] | 207 | ... ELSE Fail The TechProfile (${techprofile}) is not valid! |
TorstenThieme | 66c91a8 | 2020-10-19 13:37:53 +0000 | [diff] [blame] | 208 | # map the passed onu state to reached and make it visible for test suite |
| 209 | ${admin_state} ${oper_status} ${connect_status} ${onu_state_nb} ${onu_state}= |
| 210 | ... Map State ${state2test} |
| 211 | Set Suite Variable ${admin_state} |
| 212 | Set Suite Variable ${oper_status} |
| 213 | Set Suite Variable ${connect_status} |
| 214 | Set Suite Variable ${onu_state_nb} |
| 215 | Set Suite Variable ${onu_state} |
TorstenThieme | 5ca1dd1 | 2020-10-16 08:42:16 +0000 | [diff] [blame] | 216 | # delete etcd MIB Template Data |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 217 | Delete MIB Template Data ${INFRA_NAMESPACE} |
TorstenThieme | 4507160 | 2021-03-16 12:14:37 +0000 | [diff] [blame] | 218 | # delete etcd onu data |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 219 | Delete ONU Go Adapter ETCD Data namespace=${INFRA_NAMESPACE} validate=True |
Andrea Campanella | 82add37 | 2021-11-05 12:01:15 +0100 | [diff] [blame] | 220 | Run Keyword If ${logging} Collect Logs |
| 221 | Stop Logging Setup or Teardown Setup-${SUITE NAME} |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 222 | |
TorstenThieme | b41007d | 2020-06-22 12:14:12 +0000 | [diff] [blame] | 223 | Teardown Suite |
| 224 | [Documentation] Replaces the Suite Teardown in utils.robot. |
| 225 | ... Cleans up and checks all ONU ports disabled in ONOS. |
| 226 | ... Furthermore gives the possibility to pause the execution. |
Andrea Campanella | 82add37 | 2021-11-05 12:01:15 +0100 | [diff] [blame] | 227 | Start Logging Setup or Teardown Teardown-${SUITE NAME} |
TorstenThieme | b41007d | 2020-06-22 12:14:12 +0000 | [diff] [blame] | 228 | Run Keyword If ${pausebeforecleanup} Import Library Dialogs |
| 229 | Run Keyword If ${pausebeforecleanup} Pause Execution Press OK to continue with clean up! |
TorstenThieme | 87cd620 | 2020-09-09 10:01:28 +0000 | [diff] [blame] | 230 | Run Keyword If ${pausebeforecleanup} Log Teardown will be continued... console=yes |
TorstenThieme | b41007d | 2020-06-22 12:14:12 +0000 | [diff] [blame] | 231 | Run Keyword If ${teardown_device} Delete All Devices and Verify |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 232 | Wait Until Keyword Succeeds ${timeout} 1s Validate Onu Data In Etcd ${INFRA_NAMESPACE} 0 ${kvstoreprefix} |
| 233 | ... without_pm_data=False |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 234 | Wait for Ports in ONOS for all OLTs ${ONOS_SSH_IP} ${ONOS_SSH_PORT} 0 BBSM ${timeout} |
Andrea Campanella | 82add37 | 2021-11-05 12:01:15 +0100 | [diff] [blame] | 235 | Run Keyword If ${logging} Collect Logs |
| 236 | Stop Logging Setup or Teardown Teardown-${SUITE NAME} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 237 | Close All ONOS SSH Connections |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 238 | Remove Tech Profile ${INFRA_NAMESPACE} |
TorstenThieme | b41007d | 2020-06-22 12:14:12 +0000 | [diff] [blame] | 239 | |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 240 | Setup Test |
| 241 | [Documentation] Pre-test Setup |
| 242 | #test for empty device list |
| 243 | Test Empty Device List |
| 244 | Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds 120s 10s Openolt is Up |
Suchitra Vemuri | b7253a5 | 2020-07-14 22:35:17 -0700 | [diff] [blame] | 245 | ... ${olt_ssh_ip} ${olt_user} ${olt_pass} |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 246 | Run Keyword If ${has_dataplane} Sleep 60s |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 247 | # Create a list of olt ids (logical and device_id) |
| 248 | ${olt_ids} Create List |
| 249 | FOR ${I} IN RANGE 0 ${num_olts} |
| 250 | #create/preprovision device |
Andrea Campanella | 3dcce27 | 2021-01-15 16:04:47 +0100 | [diff] [blame] | 251 | ${olt_device_id}= Run Keyword If "${list_olts}[${I}][type]" == "${None}" |
TorstenThieme | 4413664 | 2021-02-12 13:41:17 +0000 | [diff] [blame] | 252 | ... Create Device ${list_olts}[${I}][ip] ${list_olts}[${I}][oltport] |
| 253 | ... ELSE Create Device ${list_olts}[${I}][ip] ${list_olts}[${I}][oltport] ${list_olts}[${I}][type] |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 254 | ${olt_serial_number}= Set Variable ${list_olts}[${I}][sn] |
| 255 | #validate olt states |
| 256 | Wait Until Keyword Succeeds ${timeout} 5s |
Hardik Windlass | 8b44649 | 2021-06-10 06:25:23 +0000 | [diff] [blame] | 257 | ... Validate OLT Device PREPROVISIONED UNKNOWN UNKNOWN ${olt_device_id} by_dev_id=True |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 258 | Sleep 5s |
| 259 | ${logical_id}= Get Logical Device ID From SN ${olt_serial_number} |
| 260 | ${olt} Create Dictionary device_id ${olt_device_id} logical_id ${logical_id} |
| 261 | ... of_id ${of_id} sn ${olt_serial_number} |
| 262 | Append To List ${olt_ids} ${olt} |
| 263 | END |
| 264 | Set Global Variable ${olt_ids} |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 265 | |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 266 | Do ONU Up To State Test |
| 267 | [Documentation] This keyword performs Up2State Test |
| 268 | ... All states up to the passed have to be checked |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 269 | FOR ${I} IN RANGE 0 ${num_all_onus} |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 270 | ${src}= Set Variable ${hosts.src[${I}]} |
| 271 | ${dst}= Set Variable ${hosts.dst[${I}]} |
TorstenThieme | 66c91a8 | 2020-10-19 13:37:53 +0000 | [diff] [blame] | 272 | Run Keyword If ${onu_state_nb}>=1 |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 273 | ... Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${all_onu_timeout} 50ms |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 274 | ... Validate Device ENABLED ACTIVATING REACHABLE |
| 275 | ... ${src['onu']} onu=True onu_reason=activating-onu |
TorstenThieme | 66c91a8 | 2020-10-19 13:37:53 +0000 | [diff] [blame] | 276 | Run Keyword If ${onu_state_nb}>=2 |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 277 | ... Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${all_onu_timeout} 50ms |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 278 | ... Validate Device ENABLED ACTIVATING REACHABLE |
| 279 | ... ${src['onu']} onu=True onu_reason=starting-openomci |
TorstenThieme | 66c91a8 | 2020-10-19 13:37:53 +0000 | [diff] [blame] | 280 | Run Keyword If ${onu_state_nb}>=3 |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 281 | ... Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${all_onu_timeout} 50ms |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 282 | ... Validate Device ENABLED ACTIVATING REACHABLE |
| 283 | ... ${src['onu']} onu=True onu_reason=discovery-mibsync-complete |
TorstenThieme | 66c91a8 | 2020-10-19 13:37:53 +0000 | [diff] [blame] | 284 | Run Keyword If ${onu_state_nb}>=4 |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 285 | ... Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${all_onu_timeout} 50ms |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 286 | ... Validate Device ENABLED ACTIVE REACHABLE |
| 287 | ... ${src['onu']} onu=True onu_reason=initial-mib-downloaded |
TorstenThieme | 66c91a8 | 2020-10-19 13:37:53 +0000 | [diff] [blame] | 288 | Run Keyword If ${onu_state_nb}>=5 |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 289 | ... Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${all_onu_timeout} 50ms |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 290 | ... Validate Device ENABLED ACTIVE REACHABLE |
| 291 | ... ${src['onu']} onu=True onu_reason=tech-profile-config-download-success |
TorstenThieme | 66c91a8 | 2020-10-19 13:37:53 +0000 | [diff] [blame] | 292 | Run Keyword If ${onu_state_nb}>=6 |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 293 | ... Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${all_onu_timeout} 50ms |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 294 | ... Validate Device ENABLED ACTIVE REACHABLE |
| 295 | ... ${src['onu']} onu=True onu_reason=omci-flows-pushed |
| 296 | END |
| 297 | |
| 298 | Do ONU Single State Test |
| 299 | [Documentation] This keyword performs SingleState Test |
| 300 | ... Only the passed state has to be checked |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 301 | FOR ${I} IN RANGE 0 ${num_all_onus} |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 302 | ${src}= Set Variable ${hosts.src[${I}]} |
| 303 | ${dst}= Set Variable ${hosts.dst[${I}]} |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 304 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${all_onu_timeout} 50ms |
TorstenThieme | 015d5c0 | 2020-09-11 09:53:34 +0000 | [diff] [blame] | 305 | ... Validate Device ${admin_state} ${oper_status} ${connect_status} |
| 306 | ... ${src['onu']} onu=True onu_reason=${onu_state} |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 307 | END |
| 308 | |
TorstenThieme | 94e4ae4 | 2020-05-18 13:01:42 +0000 | [diff] [blame] | 309 | Do ONU Single State Test Time |
| 310 | [Documentation] This keyword performs SingleState Test with calculate running time |
| 311 | ... Only the passed state has to be checked and the duration each single onu adapter needed |
| 312 | ... will be calculated and printed out |
TorstenThieme | 17becfc | 2020-10-08 09:46:27 +0000 | [diff] [blame] | 313 | #${ListfinishedONUs} Create List |
| 314 | #Set Global Variable ${ListfinishedONUs} |
TorstenThieme | 94e4ae4 | 2020-05-18 13:01:42 +0000 | [diff] [blame] | 315 | Create File ONU_Startup_Time.txt This file contains the startup times of all ONUs. |
| 316 | ${list_onus} Create List |
TorstenThieme | 401af43 | 2020-06-11 15:53:53 +0000 | [diff] [blame] | 317 | Build ONU SN List ${list_onus} |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 318 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${all_onu_timeout} 50ms |
TorstenThieme | 9949b17 | 2020-06-16 10:00:15 +0000 | [diff] [blame] | 319 | ... Validate ONU Devices MIB State With Duration |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 320 | ... ${onu_state} ${list_onus} ${timeStart} print2console=${print2console} |
TorstenThieme | 401af43 | 2020-06-11 15:53:53 +0000 | [diff] [blame] | 321 | ... output_file=ONU_Startup_Time.txt |
TorstenThieme | 94e4ae4 | 2020-05-18 13:01:42 +0000 | [diff] [blame] | 322 | |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 323 | Do Onu Port Check |
TorstenThieme | 0095868 | 2020-06-19 11:29:31 +0000 | [diff] [blame] | 324 | [Documentation] Check that all the UNI ports show up in ONOS |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 325 | Wait for Ports in ONOS for all OLTs ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${num_all_onus} BBSM ${timeout} |
TorstenThieme | 9949b17 | 2020-06-16 10:00:15 +0000 | [diff] [blame] | 326 | |
TorstenThieme | 17756ea | 2020-11-11 14:09:47 +0000 | [diff] [blame] | 327 | Do Onu Etcd Data Check |
| 328 | [Documentation] Check Onu data stored in etcd |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 329 | Validate Onu Data In Etcd namespace=${INFRA_NAMESPACE} defaultkvstoreprefix=${kvstoreprefix} |
TorstenThieme | 17756ea | 2020-11-11 14:09:47 +0000 | [diff] [blame] | 330 | |
TorstenThieme | 109683b | 2020-09-24 12:35:41 +0000 | [diff] [blame] | 331 | Do Onu Flow Check |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 332 | [Documentation] This keyword iterate all OLTs and performs Do Onu Flow Checks Per OLT |
| 333 | # Check and store vlan rules |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 334 | ${firstvlanrules}= Run Keyword And Continue On Failure Validate Vlan Rules In Etcd ${INFRA_NAMESPACE} |
TorstenThieme | 3385cdc | 2021-02-04 13:50:50 +0000 | [diff] [blame] | 335 | ... defaultkvstoreprefix=${kvstoreprefix} |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 336 | FOR ${J} IN RANGE 0 ${num_olts} |
| 337 | ${olt_serial_number}= Set Variable ${list_olts}[${J}][sn] |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 338 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS |
| 339 | ... ${olt_serial_number} |
TorstenThieme | a7315f1 | 2021-07-23 11:56:34 +0000 | [diff] [blame] | 340 | Do Onu Subscriber Add Per OLT ${of_id} ${olt_serial_number} ${print2console} |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 341 | END |
| 342 | FOR ${J} IN RANGE 0 ${num_olts} |
| 343 | ${olt_serial_number}= Set Variable ${list_olts}[${J}][sn] |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 344 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS |
| 345 | ... ${olt_serial_number} |
| 346 | Set Global Variable ${of_id} |
TorstenThieme | dda3765 | 2021-11-11 16:22:05 +0000 | [diff] [blame] | 347 | ${nni_port}= Wait Until Keyword Succeeds ${timeout} 2s Get NNI Port in ONOS ${of_id} |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 348 | # Verify Default Meter in ONOS (valid only for ATT) |
TorstenThieme | a7315f1 | 2021-07-23 11:56:34 +0000 | [diff] [blame] | 349 | Do Onu Flow Check Per OLT ${of_id} ${nni_port} ${olt_serial_number} ${print2console} |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 350 | END |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 351 | #log flows for verification |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 352 | ${flowsresult}= Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT} flows -s |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 353 | log ${flowsresult} |
| 354 | #check for previous state is kept (normally omci-flows-pushed) |
| 355 | Sleep 10s |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 356 | Run Keyword And Continue On Failure Current State Test All Onus ${state2test} |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 357 | ${secondvlanrules}= Run Keyword And Continue On Failure Validate Vlan Rules In Etcd namespace=${INFRA_NAMESPACE} |
| 358 | ... nbofcookieslice=3 prevvlanrules=${firstvlanrules} defaultkvstoreprefix=${kvstoreprefix} |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 359 | FOR ${J} IN RANGE 0 ${num_olts} |
| 360 | ${olt_serial_number}= Set Variable ${list_olts}[${J}][sn] |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 361 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS |
| 362 | ... ${olt_serial_number} |
TorstenThieme | a7315f1 | 2021-07-23 11:56:34 +0000 | [diff] [blame] | 363 | Do Onu Subscriber Remove Per OLT ${of_id} ${olt_serial_number} ${print2console} |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 364 | END |
| 365 | #check for previous state is kept (normally omci-flows-pushed) |
| 366 | Sleep 10s |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 367 | Run Keyword If ${print2console} Log \r\nStart State Test All Onus. console=yes |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 368 | Run Keyword And Continue On Failure Current State Test All Onus ${state2test} |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 369 | Run Keyword If ${print2console} Log \r\nFinished State Test All Onus. console=yes |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 370 | Run Keyword And Continue On Failure Validate Vlan Rules In Etcd namespace=${INFRA_NAMESPACE} |
| 371 | ... prevvlanrules=${firstvlanrules} |
TorstenThieme | 3385cdc | 2021-02-04 13:50:50 +0000 | [diff] [blame] | 372 | ... setvidequal=True defaultkvstoreprefix=${kvstoreprefix} |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 373 | |
TorstenThieme | e0e5bba | 2020-08-05 11:20:13 +0000 | [diff] [blame] | 374 | Do Check Tech Profile |
| 375 | [Documentation] This keyword checks the loaded TechProfile |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 376 | [Arguments] ${namespace}=default |
Andrea Campanella | 60dde30 | 2020-09-09 18:42:56 +0200 | [diff] [blame] | 377 | ${podname}= Set Variable etcd |
TorstenThieme | e0e5bba | 2020-08-05 11:20:13 +0000 | [diff] [blame] | 378 | ${commandget} Catenate |
TorstenThieme | 2980d8c | 2021-06-24 10:11:48 +0000 | [diff] [blame] | 379 | ... /bin/sh -c 'ETCDCTL_API=3 etcdctl get --prefix service/voltha/technology_profiles/XGS-PON/64' |
Holger Hildebrandt | 2314774 | 2020-11-16 10:13:21 +0000 | [diff] [blame] | 380 | ${result}= Exec Pod In Kube ${namespace} ${podname} ${commandget} |
TorstenThieme | e0e5bba | 2020-08-05 11:20:13 +0000 | [diff] [blame] | 381 | ${num_gem_ports}= Set Variable 1 |
| 382 | ${num_gem_ports}= Set Variable If |
| 383 | ... "${techprofile}"=="default" 1 |
| 384 | ... "${techprofile}"=="1T4GEM" 4 |
| 385 | ... "${techprofile}"=="1T8GEM" 8 |
TorstenThieme | 9362c73 | 2021-06-25 08:25:51 +0000 | [diff] [blame] | 386 | ${length}= Get Length ${result} |
TorstenThieme | e0e5bba | 2020-08-05 11:20:13 +0000 | [diff] [blame] | 387 | @{resultList} Split String ${result} separator=, |
| 388 | ${num_of_count_matches}= Get Match Count ${resultList} "num_gem_ports": ${num_gem_ports} |
| 389 | ... whitespace_insensitive=True |
TorstenThieme | 9362c73 | 2021-06-25 08:25:51 +0000 | [diff] [blame] | 390 | # In case of default tech profile (1T1GEM) no file have to exist, so no entry will be found, but in case of a file is |
| 391 | # available corresponding entry has to be found! |
| 392 | ${num_of_expected_matches}= Set Variable If "${techprofile}"!="default" or ${length}>0 1 0 |
TorstenThieme | a022194 | 2020-12-09 11:35:03 +0000 | [diff] [blame] | 393 | Should Be Equal As Integers ${num_of_expected_matches} ${num_of_count_matches} |
TorstenThieme | 2980d8c | 2021-06-24 10:11:48 +0000 | [diff] [blame] | 394 | ... TechProfile (${TechProfile}) not loaded correctly: found(${num_of_count_matches}) expected(${num_of_expected_matches}) |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 395 | Validate Resource Instances Used Gem Ports ${num_gem_ports} namespace=${namespace} |
| 396 | ... defaultkvstoreprefix=${kvstoreprefix} |
TorstenThieme | 015d5c0 | 2020-09-11 09:53:34 +0000 | [diff] [blame] | 397 | |
| 398 | Do Disable Enable Onu Test |
| 399 | [Documentation] This keyword disables/enables all onus and checks the states. |
TorstenThieme | 1fbe808 | 2020-10-21 13:27:59 +0000 | [diff] [blame] | 400 | [Arguments] ${state2check}=${state2test} ${checkstatebeforedisable}=True |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 401 | ... ${state2checkafterdisable}=tech-profile-config-delete-success |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 402 | Run Keyword If ${checkstatebeforedisable} Current State Test All Onus ${state2check} |
| 403 | Disable Onu Device |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 404 | ${alternative_onu_reason}= Set Variable If |
| 405 | ... '${state2checkafterdisable}'=='tech-profile-config-delete-success' omci-flows-deleted |
| 406 | ... '${state2checkafterdisable}'=='omci-admin-lock' tech-profile-config-delete-success ${EMPTY} |
TorstenThieme | c3c2323 | 2021-01-13 13:06:31 +0000 | [diff] [blame] | 407 | ${alternativeonustates}= Create List ${alternative_onu_reason} |
| 408 | Current State Test All Onus ${state2checkafterdisable} alternativeonustate=${alternativeonustates} |
TorstenThieme | 17becfc | 2020-10-08 09:46:27 +0000 | [diff] [blame] | 409 | Log Ports |
| 410 | #check no port is enabled in ONOS |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 411 | Wait for Ports in ONOS for all OLTs ${ONOS_SSH_IP} ${ONOS_SSH_PORT} 0 BBSM |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 412 | Enable Onu Device |
| 413 | Current State Test All Onus ${state2check} |
TorstenThieme | 17becfc | 2020-10-08 09:46:27 +0000 | [diff] [blame] | 414 | Log Ports onlyenabled=True |
| 415 | #check that all the UNI ports show up in ONOS again |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 416 | Wait for Ports in ONOS for all OLTs ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${num_all_onus} BBSM |
TorstenThieme | 015d5c0 | 2020-09-11 09:53:34 +0000 | [diff] [blame] | 417 | |
TorstenThieme | 5ca1dd1 | 2020-10-16 08:42:16 +0000 | [diff] [blame] | 418 | Do Power Off Power On Onu Device |
| 419 | [Documentation] This keyword power off/on all onus and checks the states. |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 420 | [Arguments] ${namespace}=voltha |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 421 | Power Off ONU Device ${namespace} |
TorstenThieme | 5ca1dd1 | 2020-10-16 08:42:16 +0000 | [diff] [blame] | 422 | Sleep 5s |
Andrea Campanella | a9b59b4 | 2021-09-21 16:13:17 +0000 | [diff] [blame] | 423 | ${alternativeonustates}= Create List omci-flows-deleted |
| 424 | Current State Test All Onus tech-profile-config-delete-success |
TorstenThieme | c3c2323 | 2021-01-13 13:06:31 +0000 | [diff] [blame] | 425 | ... ENABLED DISCOVERED UNREACHABLE alternativeonustate=${alternativeonustates} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 426 | Power On ONU Device ${namespace} |
| 427 | Current State Test All Onus ${state2test} |
TorstenThieme | 5ca1dd1 | 2020-10-16 08:42:16 +0000 | [diff] [blame] | 428 | |
TorstenThieme | 1fbe808 | 2020-10-21 13:27:59 +0000 | [diff] [blame] | 429 | Do Soft Reboot Onu Device |
| 430 | [Documentation] This keyword reboots softly all onus and checks the states. |
TorstenThieme | f78a9d8 | 2021-03-05 13:42:09 +0000 | [diff] [blame] | 431 | ${device_list}= Set Variable ${EMPTY} |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 432 | FOR ${I} IN RANGE 0 ${num_all_onus} |
TorstenThieme | 1fbe808 | 2020-10-21 13:27:59 +0000 | [diff] [blame] | 433 | ${src}= Set Variable ${hosts.src[${I}]} |
| 434 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
TorstenThieme | f78a9d8 | 2021-03-05 13:42:09 +0000 | [diff] [blame] | 435 | ${device_list}= Catenate ${device_list} ${onu_device_id} |
TorstenThieme | 1fbe808 | 2020-10-21 13:27:59 +0000 | [diff] [blame] | 436 | END |
TorstenThieme | f78a9d8 | 2021-03-05 13:42:09 +0000 | [diff] [blame] | 437 | Reboot ONU ${device_list} False |
TorstenThieme | 3d8dd39 | 2021-07-29 11:17:50 +0000 | [diff] [blame] | 438 | ${alternativeonustates}= Create List stopping-openomci rebooting |
TorstenThieme | 6cc4376 | 2021-03-03 10:20:16 +0000 | [diff] [blame] | 439 | Current State Test All Onus omci-flows-deleted |
Matteo Scandolo | c14525a | 2021-02-02 08:34:43 -0800 | [diff] [blame] | 440 | ... ENABLED DISCOVERED UNREACHABLE alternativeonustate=${alternativeonustates} |
TorstenThieme | 7385005 | 2020-12-10 12:43:28 +0000 | [diff] [blame] | 441 | Sleep 5s |
TorstenThieme | 6cc4376 | 2021-03-03 10:20:16 +0000 | [diff] [blame] | 442 | Current State Test All Onus omci-flows-pushed |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 443 | Do Onu Port Check |