TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 1 | # Copyright 2020 - present Open Networking Foundation |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 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. |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 14 | |
| 15 | *** Settings *** |
| 16 | Documentation Library for various openonu-go-adpter utilities |
TorstenThieme | 7c397d7 | 2021-07-14 11:51:09 +0000 | [diff] [blame] | 17 | Library grpc_robot.VolthaTools WITH NAME volthatools |
TorstenThieme | 00fe826 | 2022-01-19 10:43:07 +0000 | [diff] [blame] | 18 | Resource ./bbsim.robot |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 19 | |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 20 | |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 21 | *** Keywords *** |
TorstenThieme | 373adfe | 2021-12-16 13:03:04 +0000 | [diff] [blame] | 22 | Printout ONU Serial Number and Device Id |
| 23 | [Documentation] Printouts the ONU serial number and corresponding device id. |
| 24 | [Arguments] ${onu_sn}=${EMPTY} ${print2console}=False |
| 25 | ${output}= Set Variable \r\n |
| 26 | ${onu_sn_list} Create List |
| 27 | Run Keyword If "${onu_sn}"=="${EMPTY}" Build ONU SN List ${onu_sn_list} |
| 28 | ... ELSE Append To List ${onu_sn_list} ${onu_sn} |
| 29 | FOR ${sn} IN @{onu_sn_list} |
| 30 | ${device_id}= Get Device ID From SN ${sn} |
| 31 | ${output}= Catenate ${output} ONU Serial Number: ${sn} ONU Device ID: ${device_id}\r\n |
| 32 | END |
| 33 | Log ${output} |
| 34 | Run Keyword If ${print2console} Log ${output} console=yes |
| 35 | |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 36 | Calculate Timeout |
| 37 | [Documentation] Calculates the timeout regarding num-onus in case of more than 4 onus |
| 38 | [Arguments] ${basetimeout}=60s |
| 39 | ${new_timeout} Fetch From Left ${basetimeout} s |
| 40 | ${new_timeout}= evaluate ${new_timeout}+((${num_all_onus}-4)*10) |
| 41 | ${new_timeout}= Set Variable If (not ${debugmode}) and (${new_timeout}>300) |
| 42 | ... 300 ${new_timeout} |
| 43 | ${new_timeout}= Catenate SEPARATOR= ${new_timeout} s |
| 44 | [Return] ${new_timeout} |
| 45 | |
TorstenThieme | 3494ceb | 2021-07-19 09:47:24 +0000 | [diff] [blame] | 46 | Get Logical Id of OLT |
| 47 | [Documentation] Fills the logical id of OLT(s) if missing |
| 48 | FOR ${I} IN RANGE 0 ${num_olts} |
| 49 | # exit loop if logical id already known |
| 50 | Exit For Loop IF "${olt_ids}[${I}][logical_id]" != "${EMPTY}" |
| 51 | #read current device values |
| 52 | ${olt}= Get From List ${olt_ids} ${I} |
| 53 | ${olt_serial_number}= Get From Dictionary ${olt} sn |
| 54 | # read logical id and store it |
| 55 | ${logical_id}= Get Logical Device ID From SN ${olt_serial_number} |
| 56 | Set To Dictionary ${olt} logical_id ${logical_id} |
| 57 | Set List Value ${olt_ids} ${I} ${olt} |
| 58 | END |
| 59 | Set Global Variable ${olt_ids} |
| 60 | |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 61 | Power On ONU Device |
| 62 | [Documentation] This keyword turns on the power for all onus. |
| 63 | [Arguments] ${namespace} |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 64 | FOR ${J} IN RANGE 0 ${num_olts} |
| 65 | ${olt_serial_number}= Set Variable ${list_olts}[${J}][sn] |
| 66 | ${bbsim}= Catenate SEPARATOR= bbsim ${J} |
| 67 | ${bbsim_pod}= Get Pod Name By Label ${namespace} release ${bbsim} |
| 68 | Power On ONU Device per OLT ${namespace} ${olt_serial_number} ${bbsim_pod} |
| 69 | END |
| 70 | |
| 71 | Power On ONU Device per OLT |
| 72 | [Documentation] This keyword turns on the power for all onus. |
| 73 | [Arguments] ${namespace} ${olt_serial_number} ${bbsim_pod} |
TorstenThieme | 00fe826 | 2022-01-19 10:43:07 +0000 | [diff] [blame] | 74 | @{onu_list}= Create List |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 75 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 76 | ${src}= Set Variable ${hosts.src[${I}]} |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 77 | Continue For Loop If "${olt_serial_number}"!="${src['olt']}" |
TorstenThieme | 00fe826 | 2022-01-19 10:43:07 +0000 | [diff] [blame] | 78 | ${sn}= Set Variable ${src['onu']} |
| 79 | # make sure all actions are done only once per onu |
| 80 | ${onu_id}= Get Index From List ${onu_list} ${sn} |
| 81 | Continue For Loop If -1 != ${onu_id} |
| 82 | Append To List ${onu_list} ${sn} |
| 83 | Power On ONU ${namespace} ${bbsim_pod} ${sn} |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 84 | END |
| 85 | |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 86 | Power Off ONU Device |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 87 | [Documentation] This keyword turns off the power for all onus per olt. |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 88 | [Arguments] ${namespace} |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 89 | FOR ${J} IN RANGE 0 ${num_olts} |
| 90 | ${olt_serial_number}= Set Variable ${list_olts}[${J}][sn] |
| 91 | ${bbsim}= Catenate SEPARATOR= bbsim ${J} |
| 92 | ${bbsim_pod}= Get Pod Name By Label ${namespace} release ${bbsim} |
| 93 | Power Off ONU Device per OLT ${namespace} ${olt_serial_number} ${bbsim_pod} |
| 94 | END |
| 95 | |
| 96 | Power Off ONU Device per OLT |
| 97 | [Documentation] This keyword turns off the power for all onus per olt. |
| 98 | [Arguments] ${namespace} ${olt_serial_number} ${bbsim_pod} |
TorstenThieme | 00fe826 | 2022-01-19 10:43:07 +0000 | [diff] [blame] | 99 | @{onu_list}= Create List |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 100 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 101 | ${src}= Set Variable ${hosts.src[${I}]} |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 102 | Continue For Loop If "${olt_serial_number}"!="${src['olt']}" |
TorstenThieme | 00fe826 | 2022-01-19 10:43:07 +0000 | [diff] [blame] | 103 | ${sn}= Set Variable ${src['onu']} |
| 104 | # make sure all actions are done only once per onu |
| 105 | ${onu_id}= Get Index From List ${onu_list} ${sn} |
| 106 | Continue For Loop If -1 != ${onu_id} |
| 107 | Append To List ${onu_list} ${sn} |
| 108 | Power Off ONU ${namespace} ${bbsim_pod} ${sn} |
| 109 | END |
| 110 | |
| 111 | Set Wrong MDS Counter All ONUs |
| 112 | [Documentation] This keyword sets wrong MDS counter for all onus. |
| 113 | [Arguments] ${namespace} |
| 114 | FOR ${J} IN RANGE 0 ${num_olts} |
| 115 | ${olt_serial_number}= Set Variable ${list_olts}[${J}][sn] |
| 116 | ${bbsim}= Catenate SEPARATOR= bbsim ${J} |
| 117 | ${bbsim_pod}= Get Pod Name By Label ${namespace} release ${bbsim} |
| 118 | Set Wrong MDS Counter per OLT ${namespace} ${olt_serial_number} ${bbsim_pod} |
| 119 | END |
| 120 | |
| 121 | Set Wrong MDS Counter per OLT |
| 122 | [Documentation] This keyword sets wrong MDS counter for all onus per olt. |
| 123 | [Arguments] ${namespace} ${olt_serial_number} ${bbsim_pod} |
| 124 | @{onu_list}= Create List |
| 125 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 126 | ${src}= Set Variable ${hosts.src[${I}]} |
| 127 | Continue For Loop If "${olt_serial_number}"!="${src['olt']}" |
| 128 | ${sn}= Set Variable ${src['onu']} |
| 129 | # make sure all actions are done only once per onu |
| 130 | ${onu_id}= Get Index From List ${onu_list} ${sn} |
| 131 | Continue For Loop If -1 != ${onu_id} |
| 132 | Append To List ${onu_list} ${sn} |
| 133 | Set Wrong MDS Counter ONU ${namespace} ${bbsim_pod} ${sn} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 134 | END |
| 135 | |
| 136 | Current State Test |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 137 | [Documentation] This keyword checks the passed state of the given onu. |
| 138 | [Arguments] ${state} ${onu} ${reqadminstate}=${EMPTY} ${reqoperstatus}=${EMPTY} |
| 139 | ... ${reqconnectstatus}=${EMPTY} |
| 140 | ${admin_state} ${oper_status} ${connect_status} ${onu_state_nb} ${onu_state}= Map State ${state} |
| 141 | ${admin_state}= Set Variable If '${reqadminstate}'!='${EMPTY}' ${reqadminstate} ${admin_state} |
| 142 | ${oper_status}= Set Variable If '${reqoperstatus}'!='${EMPTY}' ${reqoperstatus} ${oper_status} |
| 143 | ${connect_status}= Set Variable If '${reqconnectstatus}'!='${EMPTY}' ${reqconnectstatus} |
| 144 | ... ${connect_status} |
| 145 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 50ms |
| 146 | ... Validate Device ${admin_state} ${oper_status} ${connect_status} |
| 147 | ... ${onu} onu=True onu_reason=${onu_state} |
| 148 | |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 149 | Current State Test All Onus |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 150 | [Documentation] This keyword checks the passed state of all onus. |
| 151 | ... Hint: ${timeStart} will be not evaluated here! |
| 152 | [Arguments] ${state} ${reqadminstate}=${EMPTY} ${reqoperstatus}=${EMPTY} ${reqconnectstatus}=${EMPTY} |
TorstenThieme | 53450ff | 2021-05-11 09:44:33 +0000 | [diff] [blame] | 153 | ... ${alternativeonustate}=${EMPTY} ${timeout}=${timeout} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 154 | ${timeStart}= Get Current Date |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 155 | ${list_onus} Create List |
| 156 | Build ONU SN List ${list_onus} |
| 157 | ${admin_state} ${oper_status} ${connect_status} ${onu_state_nb} ${onu_state}= Map State ${state} |
| 158 | ${admin_state}= Set Variable If '${reqadminstate}'!='${EMPTY}' ${reqadminstate} ${admin_state} |
| 159 | ${oper_status}= Set Variable If '${reqoperstatus}'!='${EMPTY}' ${reqoperstatus} ${oper_status} |
| 160 | ${connect_status}= Set Variable If '${reqconnectstatus}'!='${EMPTY}' ${reqconnectstatus} |
| 161 | ... ${connect_status} |
| 162 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 50ms |
| 163 | ... Validate ONU Devices With Duration |
| 164 | ... ${admin_state} ${oper_status} ${connect_status} |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 165 | ... ${onu_state} ${list_onus} ${timeStart} alternate_reason=${alternativeonustate} |
TorstenThieme | 53450ff | 2021-05-11 09:44:33 +0000 | [diff] [blame] | 166 | # teardown is used as 'return' for result of Validate ONU Devices With Duration (used for ONUNegativeStateTests) |
| 167 | [Teardown] Run Keyword If "${KEYWORD STATUS}"=="FAIL" Set Suite Variable ${StateTestAllONUs} False |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 168 | |
TorstenThieme | 96fe9ee | 2021-10-21 10:24:08 +0000 | [diff] [blame] | 169 | Reconcile Onu Adapter |
| 170 | [Documentation] Restarts the openonu adapter and waits for reconciling is finished and expected oper-state is reached |
TorstenThieme | 712b296 | 2021-11-17 14:16:15 +0000 | [diff] [blame] | 171 | [Arguments] ${namespace} ${usekill2restart} ${oper_status} ${olt_to_be_deleted_sn}=${EMPTY} |
TorstenThieme | 00fe826 | 2022-01-19 10:43:07 +0000 | [diff] [blame] | 172 | ... ${flow_delete_params}=&{EMPTY} ${wrong_MDS_counter}=False |
TorstenThieme | 7e9f125 | 2022-01-05 13:43:59 +0000 | [diff] [blame] | 173 | # get last ready timestamp of openonu adapter |
| 174 | ${previous_ready_ts}= Get Pod Ready Timestamp by Label ${namespace} app adapter-open-onu |
TorstenThieme | 96fe9ee | 2021-10-21 10:24:08 +0000 | [diff] [blame] | 175 | # restart OpenONU adapter |
| 176 | Run Keyword If ${usekill2restart} Kill And Check Onu Adaptor ${namespace} |
| 177 | ... ELSE Restart And Check Onu Adaptor ${namespace} |
TorstenThieme | 7e9f125 | 2022-01-05 13:43:59 +0000 | [diff] [blame] | 178 | #check ready timestamp of openonu adapter, should be younger than the previous ready timestamp |
TorstenThieme | 96fe9ee | 2021-10-21 10:24:08 +0000 | [diff] [blame] | 179 | ${openonu_ready_ts}= Get Pod Ready Timestamp by Label ${namespace} app adapter-open-onu |
TorstenThieme | 7e9f125 | 2022-01-05 13:43:59 +0000 | [diff] [blame] | 180 | ${restart_duration}= Subtract Date From Date ${openonu_ready_ts} ${previous_ready_ts} |
TorstenThieme | 96fe9ee | 2021-10-21 10:24:08 +0000 | [diff] [blame] | 181 | Should Be True ${restart_duration}>0 |
TorstenThieme | 712b296 | 2021-11-17 14:16:15 +0000 | [diff] [blame] | 182 | # delete the olt passed, if available (special feature) |
| 183 | ${olt_to_be_deleted_device_id}= Run Keyword IF "${olt_to_be_deleted_sn}"!="${EMPTY}" |
| 184 | ... Get OLTDeviceID From OLT List ${olt_to_be_deleted_sn} |
TorstenThieme | f7cd2be | 2021-12-06 14:30:11 +0000 | [diff] [blame] | 185 | Run Keyword If "${olt_to_be_deleted_sn}"!="${EMPTY}" Delete Device ${olt_to_be_deleted_device_id} |
| 186 | # remove flows if params passed for it (special feature II) |
TorstenThieme | 00fe826 | 2022-01-19 10:43:07 +0000 | [diff] [blame] | 187 | Run Keyword If ${flow_delete_params}!=&{EMPTY} Remove Flows Conditional ${flow_delete_params['unitag']} |
| 188 | ... ${flow_delete_params['onu_sn']} ${flow_delete_params['of_id']} ${flow_delete_params['onu_port']} |
| 189 | # Set wrong MDS counter (for all ONUs) if required (special feature III) |
| 190 | Run Keyword If ${wrong_MDS_counter} Set Wrong MDS Counter All ONUs ${namespace} |
Matteo Scandolo | 741d4fd | 2021-09-23 17:08:34 -0700 | [diff] [blame] | 191 | # wait for the reconcile to complete |
TorstenThieme | 96fe9ee | 2021-10-21 10:24:08 +0000 | [diff] [blame] | 192 | # - we check that communication to openonu-adapter is established again |
| 193 | # - we check that all ONUs leave reconcile state by validate a simple voltctl request will not responds with error |
| 194 | Wait Until Keyword Succeeds ${timeout} 1s Validate Last ONU Communication |
TorstenThieme | 712b296 | 2021-11-17 14:16:15 +0000 | [diff] [blame] | 195 | Wait Until Keyword Succeeds ${timeout} 1s Validate All Onus Accessible ${olt_to_be_deleted_sn} |
| 196 | # - then we wait that all ONU move to the next state, except ONU belonging to deleted OLT (special feature) |
TorstenThieme | 96fe9ee | 2021-10-21 10:24:08 +0000 | [diff] [blame] | 197 | ${list_onus} Create List |
TorstenThieme | 712b296 | 2021-11-17 14:16:15 +0000 | [diff] [blame] | 198 | FOR ${J} IN RANGE 0 ${num_olts} |
| 199 | ${olt_serial_number}= Set Variable ${list_olts}[${J}][sn] |
| 200 | Continue For Loop If "${olt_to_be_deleted_sn}"=="${olt_serial_number}" |
| 201 | Build ONU SN List ${list_onus} ${olt_serial_number} |
| 202 | END |
| 203 | Log ${list_onus} |
TorstenThieme | 96fe9ee | 2021-10-21 10:24:08 +0000 | [diff] [blame] | 204 | Run Keyword And Ignore Error Wait Until Keyword Succeeds ${timeout} |
| 205 | ... 1s Check all ONU OperStatus ${list_onus} ${oper_status} |
| 206 | |
TorstenThieme | e512b1d | 2021-11-12 10:52:29 +0000 | [diff] [blame] | 207 | Validate All Onus Accessible |
| 208 | [Documentation] This keyword checks all onus accessible (again) with help of a simple voltctl request. |
| 209 | ... As long we've got an rc!=0 keyword will fail -> onu is not accessible. |
TorstenThieme | 96fe9ee | 2021-10-21 10:24:08 +0000 | [diff] [blame] | 210 | ... As get request Onu image list is used, any other get command could be used for this check. |
TorstenThieme | 712b296 | 2021-11-17 14:16:15 +0000 | [diff] [blame] | 211 | ... Will not check ONUs of passed deleted OLT (special feature) |
| 212 | [Arguments] ${deleted_olt}=${EMPTY} |
Matteo Scandolo | 741d4fd | 2021-09-23 17:08:34 -0700 | [diff] [blame] | 213 | ${onu_list} Create List |
| 214 | FOR ${I} IN RANGE 0 ${num_all_onus} |
TorstenThieme | 96fe9ee | 2021-10-21 10:24:08 +0000 | [diff] [blame] | 215 | ${src}= Set Variable ${hosts.src[${I}]} |
TorstenThieme | 712b296 | 2021-11-17 14:16:15 +0000 | [diff] [blame] | 216 | ${olt_serial_number}= Set Variable ${src['olt']} |
| 217 | Continue For Loop If "${deleted_olt}"=="${olt_serial_number}" |
TorstenThieme | 96fe9ee | 2021-10-21 10:24:08 +0000 | [diff] [blame] | 218 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 219 | ${onu_id}= Get Index From List ${onu_list} ${onu_device_id} |
Matteo Scandolo | 741d4fd | 2021-09-23 17:08:34 -0700 | [diff] [blame] | 220 | Continue For Loop If -1 != ${onu_id} |
TorstenThieme | 96fe9ee | 2021-10-21 10:24:08 +0000 | [diff] [blame] | 221 | Append To List ${onu_list} ${onu_device_id} |
| 222 | ${rc} ${output}= Get Onu Image List ${onu_device_id} |
TorstenThieme | 712b296 | 2021-11-17 14:16:15 +0000 | [diff] [blame] | 223 | Should Be True ${rc}==0 Onu ${src['onu']} (${onu_device_id}) still not accessible. |
Matteo Scandolo | 741d4fd | 2021-09-23 17:08:34 -0700 | [diff] [blame] | 224 | END |
| 225 | |
TorstenThieme | 00fe826 | 2022-01-19 10:43:07 +0000 | [diff] [blame] | 226 | Remove Flows Conditional |
| 227 | [Documentation] This keyword removes the flows (subscriber) conditional depending on unitag. |
| 228 | ... In case of unitagsub==False (normal case) single subscriber remove will be executed. |
| 229 | ... In case of multi uni each uni id will be deleted. |
| 230 | [Arguments] ${unitagsub} ${onu_sn} ${of_id} ${onu_port} |
| 231 | # first handle 'normal' case without uni ports |
| 232 | Run Keyword If ${unitagsub}==False Wait Until Keyword Succeeds ${timeout} 2s |
| 233 | ... Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
| 234 | ... volt-remove-subscriber-access ${of_id} ${onu_port} |
| 235 | Return From Keyword If ${unitagsub}==False |
| 236 | # handle multi uni case |
| 237 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 238 | ${src}= Set Variable ${hosts.src[${I}]} |
| 239 | Continue For Loop If "${onu_sn}"!="${src['onu']}" |
| 240 | ${add_sub_cmd}= Catenate volt-remove-subscriber-unitag --tpId ${src['tp_id']} --sTag ${src['s_tag']} |
| 241 | ... --cTag ${src['c_tag']} ${src['onu']}-${src['uni_id']} |
| 242 | Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command use single connection |
| 243 | ... ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${add_sub_cmd} |
| 244 | END |
| 245 | |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 246 | Log Ports |
| 247 | [Documentation] This keyword logs all port data available in ONOS of first port per ONU |
| 248 | [Arguments] ${onlyenabled}=False |
| 249 | ${cmd} Set Variable If ${onlyenabled} ports -e ports |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 250 | ${onu_ports}= Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${cmd} |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 251 | ${lines} = Get Lines Matching Regexp ${onu_ports} .*portName=BBSM[0-9]{8}-1 |
| 252 | Log ${lines} |
| 253 | |
| 254 | Kill Adaptor |
| 255 | [Documentation] This keyword kills the passed adaptor. |
| 256 | [Arguments] ${namespace} ${name} |
| 257 | ${cmd} Catenate |
Matteo Scandolo | 6b52412 | 2021-10-22 14:34:29 -0700 | [diff] [blame] | 258 | ... kubectl exec -it -n ${namespace} $(kubectl get pods -n ${namespace} | grep ${name} | awk 'NR==1{print $1}') |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 259 | ... -- /bin/sh -c "kill 1" |
| 260 | ${rc} ${output}= Run and Return Rc and Output ${cmd} |
| 261 | Log ${output} |
| 262 | |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 263 | Kill And Check Onu Adaptor |
| 264 | [Documentation] This keyword kills ONU Adaptor and waits for it to come up again |
| 265 | ... Following steps will be executed: |
| 266 | ... - kill openonu adaptor |
| 267 | ... - check openonu adaptor is ready again |
| 268 | [Arguments] ${namespace} |
| 269 | ${list_openonu_apps} Create List adapter-open-onu |
| 270 | ${adaptorname}= Set Variable open-onu |
| 271 | Kill Adaptor ${namespace} ${adaptorname} |
| 272 | Sleep 5s |
| 273 | Wait For Pods Ready ${namespace} ${list_openonu_apps} |
| 274 | |
| 275 | Restart And Check Onu Adaptor |
| 276 | [Documentation] This keyword restarts ONU Adaptor and waits for it to come up again |
| 277 | ... Following steps will be executed: |
| 278 | ... - restart openonu adaptor |
| 279 | ... - check openonu adaptor is ready again |
| 280 | [Arguments] ${namespace} |
| 281 | ${list_openonu_apps} Create List adapter-open-onu |
Matteo Scandolo | 6f24ea9 | 2021-04-29 11:55:50 -0700 | [diff] [blame] | 282 | ${openonu_label_key} Set Variable app |
| 283 | ${openonu_label_value} Set Variable adapter-open-onu |
| 284 | Restart Pod By Label ${namespace} ${openonu_label_key} ${openonu_label_value} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 285 | Sleep 5s |
| 286 | Wait For Pods Ready ${namespace} ${list_openonu_apps} |
| 287 | |
| 288 | Disable Onu Device |
| 289 | [Documentation] This keyword disables all onus. |
TorstenThieme | 70bc526 | 2021-01-19 12:12:55 +0000 | [diff] [blame] | 290 | ${onu_list} Create List |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 291 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 292 | ${src}= Set Variable ${hosts.src[${I}]} |
| 293 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
TorstenThieme | 70bc526 | 2021-01-19 12:12:55 +0000 | [diff] [blame] | 294 | ${onu_id}= Get Index From List ${onu_list} ${onu_device_id} |
| 295 | Continue For Loop If -1 != ${onu_id} |
| 296 | Append To List ${onu_list} ${onu_device_id} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 297 | Disable Device ${onu_device_id} |
| 298 | Wait Until Keyword Succeeds 20s 2s Test Devices Disabled in VOLTHA Id=${onu_device_id} |
| 299 | END |
| 300 | |
| 301 | Enable Onu Device |
| 302 | [Documentation] This keyword enables all onus. |
TorstenThieme | 70bc526 | 2021-01-19 12:12:55 +0000 | [diff] [blame] | 303 | ${onu_list} Create List |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 304 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 305 | ${src}= Set Variable ${hosts.src[${I}]} |
| 306 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
TorstenThieme | 70bc526 | 2021-01-19 12:12:55 +0000 | [diff] [blame] | 307 | ${onu_id}= Get Index From List ${onu_list} ${onu_device_id} |
| 308 | Continue For Loop If -1 != ${onu_id} |
| 309 | Append To List ${onu_list} ${onu_device_id} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 310 | Enable Device ${onu_device_id} |
| 311 | END |
| 312 | |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 313 | Verify MIB Template Data Available |
| 314 | [Documentation] This keyword verifies MIB Template Data stored in etcd |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 315 | [Arguments] ${namespace}=default |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 316 | ${podname}= Set Variable etcd |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 317 | ${commandget} Catenate |
Matteo Scandolo | 341b937 | 2020-12-09 14:15:06 -0800 | [diff] [blame] | 318 | ... /bin/sh -c 'ETCDCTL_API=3 etcdctl get --prefix service/voltha/omci_mibs/go_templates/' |
Holger Hildebrandt | 2314774 | 2020-11-16 10:13:21 +0000 | [diff] [blame] | 319 | ${result}= Exec Pod In Kube ${namespace} ${podname} ${commandget} |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 320 | Should Not Be Empty ${result} No MIB Template Data stored in etcd! |
| 321 | |
| 322 | Delete MIB Template Data |
| 323 | [Documentation] This keyword deletes MIB Template Data stored in etcd |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 324 | [Arguments] ${namespace}=default |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 325 | ${podname}= Set Variable etcd |
| 326 | ${commanddel} Catenate |
Matteo Scandolo | 341b937 | 2020-12-09 14:15:06 -0800 | [diff] [blame] | 327 | ... /bin/sh -c 'ETCDCTL_API=3 etcdctl del --prefix service/voltha/omci_mibs/go_templates/' |
Holger Hildebrandt | 2314774 | 2020-11-16 10:13:21 +0000 | [diff] [blame] | 328 | ${result}= Exec Pod In Kube ${namespace} ${podname} ${commanddel} |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 329 | Sleep 3s |
| 330 | ${commandget} Catenate |
Matteo Scandolo | 341b937 | 2020-12-09 14:15:06 -0800 | [diff] [blame] | 331 | ... /bin/sh -c 'ETCDCTL_API=3 etcdctl get --prefix service/voltha/omci_mibs/go_templates/' |
Holger Hildebrandt | 2314774 | 2020-11-16 10:13:21 +0000 | [diff] [blame] | 332 | ${result}= Exec Pod In Kube ${namespace} ${podname} ${commandget} |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 333 | Should Be Empty ${result} Could not delete MIB Template Data stored in etcd! |
| 334 | |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 335 | Set Tech Profile |
| 336 | [Documentation] This keyword sets the passed TechProfile for the test |
TorstenThieme | 00fe826 | 2022-01-19 10:43:07 +0000 | [diff] [blame] | 337 | [Arguments] ${TechProfile} ${namespace}=default ${tp_id}=64 |
| 338 | Log To Console \nSet TechProfile:${TechProfile} tp_id:${tp_id} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 339 | ${podname}= Set Variable etcd |
Andrea Campanella | 0aa21d6 | 2021-07-22 10:44:32 +0200 | [diff] [blame] | 340 | ${label}= Set Variable app.kubernetes.io/name=${podname} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 341 | ${src}= Set Variable ${data_dir}/TechProfile-${TechProfile}.json |
| 342 | ${dest}= Set Variable /tmp/flexpod.json |
| 343 | ${command} Catenate |
TorstenThieme | 00fe826 | 2022-01-19 10:43:07 +0000 | [diff] [blame] | 344 | ... /bin/sh -c 'cat ${dest} | ETCDCTL_API=3 etcdctl put service/voltha/technology_profiles/XGS-PON/${tp_id}' |
Andrea Campanella | 0aa21d6 | 2021-07-22 10:44:32 +0200 | [diff] [blame] | 345 | Copy File To Pod ${namespace} ${label} ${src} ${dest} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 346 | Exec Pod In Kube ${namespace} ${podname} ${command} |
| 347 | ${commandget} Catenate |
TorstenThieme | 00fe826 | 2022-01-19 10:43:07 +0000 | [diff] [blame] | 348 | ... /bin/sh -c 'ETCDCTL_API=3 etcdctl get --prefix service/voltha/technology_profiles/XGS-PON/${tp_id}' |
Andrea Campanella | 0aa21d6 | 2021-07-22 10:44:32 +0200 | [diff] [blame] | 349 | ${result}= Exec Pod In Kube ${namespace} ${podname} ${commandget} |
| 350 | Should Not Be Empty ${result} No Tech Profile stored in etcd! |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 351 | |
| 352 | Remove Tech Profile |
| 353 | [Documentation] This keyword removes TechProfile |
TorstenThieme | 00fe826 | 2022-01-19 10:43:07 +0000 | [diff] [blame] | 354 | [Arguments] ${namespace}=default ${tp_id}=64 |
| 355 | Run Keyword If "${TechProfile}"!="${EMPTY}" Log To Console \nRemove TechProfile:${TechProfile} tp_id:${tp_id} |
| 356 | ... ELSE Log To Console \nRemove Tech Profile template at tp_id:${tp_id} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 357 | ${podname}= Set Variable etcd |
| 358 | ${command} Catenate |
TorstenThieme | 00fe826 | 2022-01-19 10:43:07 +0000 | [diff] [blame] | 359 | ... /bin/sh -c 'ETCDCTL_API=3 etcdctl del --prefix service/voltha/technology_profiles/XGS-PON/${tp_id}' |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 360 | Exec Pod In Kube ${namespace} ${podname} ${command} |
| 361 | ${commandget} Catenate |
TorstenThieme | 00fe826 | 2022-01-19 10:43:07 +0000 | [diff] [blame] | 362 | ... /bin/sh -c 'ETCDCTL_API=3 etcdctl get --prefix service/voltha/technology_profiles/XGS-PON/${tp_id}' |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 363 | Exec Pod In Kube ${namespace} ${podname} ${commandget} |
| 364 | |
TorstenThieme | a7315f1 | 2021-07-23 11:56:34 +0000 | [diff] [blame] | 365 | Do Onu Subscriber Add Per OLT |
| 366 | [Documentation] Add Subscriber per OLT |
| 367 | [Arguments] ${of_id} ${olt_serial_number} ${print2console}=False |
| 368 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 369 | ${src}= Set Variable ${hosts.src[${I}]} |
| 370 | Continue For Loop If "${olt_serial_number}"!="${src['olt']}" |
| 371 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 372 | ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 373 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
| 374 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2 |
| 375 | ... Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
| 376 | ... volt-add-subscriber-access ${of_id} ${onu_port} |
| 377 | Run Keyword If ${print2console} Log \r\n[${I}] volt-add-subscriber-access ${of_id} ${onu_port}. |
| 378 | ... console=yes |
| 379 | END |
| 380 | |
| 381 | Do Onu Flow Check Per OLT |
| 382 | [Documentation] Checks all ONU flows show up in ONOS and Voltha |
| 383 | [Arguments] ${of_id} ${nni_port} ${olt_serial_number} ${print2console}=False |
| 384 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 385 | ${src}= Set Variable ${hosts.src[${I}]} |
| 386 | Continue For Loop If "${olt_serial_number}"!="${src['olt']}" |
| 387 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 388 | ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 389 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
| 390 | # Verify subscriber access flows are added for the ONU port |
| 391 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 392 | ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 393 | ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']} |
| 394 | ${logoutput} Catenate \r\n[${I}] Verify Subscriber Access Flows Added For |
| 395 | ... ONU ${of_id} ${onu_port} ${src['c_tag']} ${src['s_tag']}. |
| 396 | Run Keyword If ${print2console} Log ${logoutput} console=yes |
| 397 | END |
| 398 | |
| 399 | Do Onu Subscriber Remove Per OLT |
| 400 | [Documentation] Removes per OLT subscribers in ONOS and Voltha |
| 401 | [Arguments] ${of_id} ${olt_serial_number} ${print2console}=False |
| 402 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 403 | ${src}= Set Variable ${hosts.src[${I}]} |
| 404 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 405 | Continue For Loop If "${olt_serial_number}"!="${src['olt']}" |
| 406 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 407 | ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 408 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
| 409 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2 |
| 410 | ... Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
| 411 | ... volt-remove-subscriber-access ${of_id} ${onu_port} |
| 412 | Run Keyword If ${print2console} Log \r\n[${I}] volt-remove-subscriber-access ${of_id} ${onu_port}. |
| 413 | ... console=yes |
| 414 | END |
| 415 | |
TorstenThieme | 7c397d7 | 2021-07-14 11:51:09 +0000 | [diff] [blame] | 416 | Validate Resource Instances Used Gem Ports |
| 417 | [Documentation] This keyword validates resource instances data stored in etcd. |
| 418 | ... It checks checks the number of gemport-ids which has matched with used Tech Profile |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 419 | [Arguments] ${nbofgemports} ${namespace}=default ${defaultkvstoreprefix}=voltha_voltha |
TorstenThieme | 7c397d7 | 2021-07-14 11:51:09 +0000 | [diff] [blame] | 420 | ${kvstoreprefix}= Get Kv Store Prefix ${defaultkvstoreprefix} |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 421 | ${etcddata}= Get ONU Go Adapter ETCD Data namespace=${namespace} defaultkvstoreprefix=${kvstoreprefix} |
TorstenThieme | 7c397d7 | 2021-07-14 11:51:09 +0000 | [diff] [blame] | 422 | #prepare result for json convert |
| 423 | ${result}= Prepare ONU Go Adapter ETCD Data For Json ${etcddata} |
| 424 | ${jsondata}= To Json ${result} |
| 425 | ${length}= Get Length ${jsondata} |
| 426 | log ${jsondata} |
| 427 | FOR ${INDEX} IN RANGE 0 ${length} |
| 428 | ${value}= Get From List ${jsondata} ${INDEX} |
| 429 | # TODO: The TP ID is hardcoded to 64 below. It is fine when testing single-tcont workflow. |
| 430 | # When testing multi-tcont this may need some adjustment. |
| 431 | Exit For Loop If not ('uni_config' in $value) |
| 432 | ${tp_path}= Get From Dictionary ${value['uni_config'][0]['PersTpPathMap']} 64 |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 433 | ${resourcedata}= Get Resource Instances ETCD Data ${tp_path} namespace=${namespace} |
| 434 | ... defaultkvstoreprefix=${kvstoreprefix} |
TorstenThieme | 7c397d7 | 2021-07-14 11:51:09 +0000 | [diff] [blame] | 435 | log ${resourcedata} |
| 436 | ${decoderesult}= volthatools.Tech Profile Decode Resource Instance ${resourcedata} return_default=true |
| 437 | log ${decoderesult} |
| 438 | ${gemportids}= Get From Dictionary ${decoderesult} gemport_ids |
| 439 | ${length}= Get Length ${gemportids} |
| 440 | Should Be Equal As Integers ${nbofgemports} ${length} |
| 441 | ... msg=Number of gem ports (${length}) does not match with techprofile ${techprofile}/${nbofgemports} |
| 442 | END |
| 443 | |
| 444 | Get Resource Instances ETCD Data |
| 445 | [Documentation] This keyword delivers Resource Instances Data stored in etcd |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 446 | [Arguments] ${tppath} ${namespace}=default ${defaultkvstoreprefix}=voltha_voltha |
TorstenThieme | 7c397d7 | 2021-07-14 11:51:09 +0000 | [diff] [blame] | 447 | ${podname}= Set Variable etcd |
| 448 | ${kvstoreprefix}= Get Kv Store Prefix ${defaultkvstoreprefix} |
| 449 | ${commandget}= Catenate |
| 450 | ... /bin/sh -c 'ETCDCTL_API=3 etcdctl get --prefix service/${kvstoreprefix}/resource_instances/${tppath} |
| 451 | ... --print-value-only --hex' |
| 452 | ${result}= Exec Pod In Kube ${namespace} ${podname} ${commandget} |
| 453 | log ${result} |
| 454 | [Return] ${result} |
| 455 | |
TorstenThieme | f7cd2be | 2021-12-06 14:30:11 +0000 | [diff] [blame] | 456 | Validate Tech Profiles and Flows in ETCD Data Per Onu |
| 457 | [Documentation] This keyword validates tech profiles and flows data stored in etcd per onu. |
| 458 | ... It checks checks presence/absence of tech profiles and flows depending on must_exist. |
| 459 | ... The values/content of tech profiles and flows will be not validated! |
| 460 | [Arguments] ${onu_sn} ${namespace}=default ${defaultkvstoreprefix}=voltha_voltha ${must_exist}=True |
TorstenThieme | 569ef45 | 2022-02-07 14:00:26 +0000 | [diff] [blame^] | 461 | ... ${check_tcont_map_empty}=False ${check_default_flow_att}=True |
TorstenThieme | f7cd2be | 2021-12-06 14:30:11 +0000 | [diff] [blame] | 462 | ${kvstoreprefix}= Get Kv Store Prefix ${defaultkvstoreprefix} |
| 463 | ${etcddata}= Get ONU Go Adapter ETCD Data namespace=${namespace} defaultkvstoreprefix=${kvstoreprefix} |
| 464 | #prepare result for json convert |
| 465 | ${result}= Prepare ONU Go Adapter ETCD Data For Json ${etcddata} |
| 466 | ${jsondata}= To Json ${result} |
| 467 | ${length}= Get Length ${jsondata} |
| 468 | log ${jsondata} |
| 469 | ${matched}= Set Variable False |
| 470 | FOR ${INDEX} IN RANGE 0 ${length} |
| 471 | ${value}= Get From List ${jsondata} ${INDEX} |
| 472 | ${uni_config}= Get From Dictionary ${value} uni_config |
| 473 | ${uni_config}= Set Variable ${uni_config[0]} |
| 474 | ${sn}= Get From Dictionary ${value} serial_number |
TorstenThieme | 00fe826 | 2022-01-19 10:43:07 +0000 | [diff] [blame] | 475 | ${tcont_map}= Get From Dictionary ${value} tcont_map |
TorstenThieme | f7cd2be | 2021-12-06 14:30:11 +0000 | [diff] [blame] | 476 | ${matched}= Set Variable If '${sn}'=='${onu_sn}' True False |
| 477 | Exit For Loop If ${matched} |
| 478 | END |
| 479 | Should Be True ${matched} No ETCD data found for ONU ${onu_sn} |
| 480 | Log ${uni_config} |
| 481 | ${tp_path}= Get From Dictionary ${uni_config} PersTpPathMap |
| 482 | Log ${tp_path} |
| 483 | ${flow_params}= Get From Dictionary ${uni_config} flow_params |
| 484 | Log ${flow_params} |
| 485 | # in case of ATT for ONU with removed flows there is default flow established |
| 486 | ${length}= Get Length ${flow_params} |
| 487 | ${cookieslice}= Run Keyword If ${length}>0 Run Keyword If 'cookie_slice' in ${flow_params[0]} |
| 488 | ... Get From Dictionary ${flow_params[0]} cookie_slice |
| 489 | ${setvid}= Run Keyword If ${length}>0 Run Keyword If 'set_vid' in ${flow_params[0]['vlan_rule_params']} |
| 490 | ... Get From Dictionary ${flow_params[0]['vlan_rule_params']} set_vid |
| 491 | ${cookie_slice_length}= Run Keyword If ${length}>0 Run Keyword If 'cookie_slice' in ${flow_params[0]} |
| 492 | ... Get Length ${cookieslice} |
TorstenThieme | 569ef45 | 2022-02-07 14:00:26 +0000 | [diff] [blame^] | 493 | Run Keyword If "${workflow}"=="ATT" and not ${must_exist} and ${check_default_flow_att} Run Keywords |
TorstenThieme | f7cd2be | 2021-12-06 14:30:11 +0000 | [diff] [blame] | 494 | ... Should Be Equal As Numbers ${setvid} 4091 AND |
| 495 | ... Should Be Equal As Numbers ${cookie_slice_length} 1 AND |
| 496 | ... Should Not Be Empty ${tp_path} AND |
| 497 | ... Return From Keyword |
| 498 | ${tp_path_length}= Get Length ${tp_path} |
| 499 | # validate tp_path is not Empty for case must_exist, case not must_exist will be validated implicitly with FOR loop |
| 500 | Run Keyword If ${must_exist} Should Not Be Empty ${tp_path} |
| 501 | ${tp_path_keys}= Run Keyword If ${tp_path_length}==0 Create List |
| 502 | ... ELSE Get Dictionary Keys ${tp_path} |
| 503 | ${tp_path_values}= Run Keyword If ${tp_path_length}==0 Create List |
| 504 | ... ELSE Get Dictionary Values ${tp_path} |
| 505 | ${tp_path_empty}= Set Variable True |
| 506 | Log ${tp_path_values} |
| 507 | Log ${tp_path_keys} |
TorstenThieme | f7cd2be | 2021-12-06 14:30:11 +0000 | [diff] [blame] | 508 | # In case of not empty tp_path each value will be checked depending on must_exist |
| 509 | FOR ${key} IN @{tp_path_keys} |
TorstenThieme | f7cd2be | 2021-12-06 14:30:11 +0000 | [diff] [blame] | 510 | ${value}= Get From Dictionary ${tp_path} ${key} |
| 511 | Run Keyword If ${must_exist} Should Not Be Empty ${value} |
| 512 | ... ELSE Should Be Empty ${value} |
TorstenThieme | f7cd2be | 2021-12-06 14:30:11 +0000 | [diff] [blame] | 513 | END |
| 514 | Run Keyword If ${must_exist} Should Not Be Empty ${flow_params} |
| 515 | ... ELSE Should Be Empty ${flow_params} |
TorstenThieme | 00fe826 | 2022-01-19 10:43:07 +0000 | [diff] [blame] | 516 | Run Keyword If ${check_tcont_map_empty} Log ${tcont_map} |
| 517 | Run Keyword If ${check_tcont_map_empty} Should Be Empty ${tcont_map} |
TorstenThieme | 7c397d7 | 2021-07-14 11:51:09 +0000 | [diff] [blame] | 518 | |
TorstenThieme | 17756ea | 2020-11-11 14:09:47 +0000 | [diff] [blame] | 519 | Validate Onu Data In Etcd |
| 520 | [Documentation] This keyword validates openonu-go-adapter Data stored in etcd. |
| 521 | ... It checks unique of serial_number and combination of pon, onu and uni in tp_path. |
| 522 | ... Furthermore it evaluates the values of onu_id and uni_id with values read from tp_path. |
| 523 | ... Number of etcd entries has to match with the passed number. |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 524 | [Arguments] ${namespace}=default ${nbofetcddata}=${num_all_onus} ${defaultkvstoreprefix}=voltha_voltha |
TorstenThieme | fa29a89 | 2021-03-11 14:11:29 +0000 | [diff] [blame] | 525 | ... ${without_prefix}=True ${without_pm_data}=True |
TorstenThieme | 3385cdc | 2021-02-04 13:50:50 +0000 | [diff] [blame] | 526 | ${kvstoreprefix}= Get Kv Store Prefix ${defaultkvstoreprefix} |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 527 | ${etcddata}= Get ONU Go Adapter ETCD Data ${namespace} ${kvstoreprefix} ${without_prefix} ${without_pm_data} |
TorstenThieme | 17756ea | 2020-11-11 14:09:47 +0000 | [diff] [blame] | 528 | #prepare result for json convert |
| 529 | ${result}= Prepare ONU Go Adapter ETCD Data For Json ${etcddata} |
| 530 | ${jsondata}= To Json ${result} |
| 531 | ${length}= Get Length ${jsondata} |
| 532 | log ${jsondata} |
| 533 | Run Keyword And Continue On Failure Should Be Equal As Integers ${length} ${nbofetcddata} |
| 534 | ... msg=Number etcd data (${length}) does not match required (${nbofetcddata})! |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 535 | ${oltpononuuniidlist}= Create List |
TorstenThieme | 17756ea | 2020-11-11 14:09:47 +0000 | [diff] [blame] | 536 | ${serialnumberlist}= Create List |
| 537 | FOR ${INDEX} IN RANGE 0 ${length} |
| 538 | ${value}= Get From List ${jsondata} ${INDEX} |
Girish Gowdra | 97f8d06 | 2020-11-17 15:48:23 -0800 | [diff] [blame] | 539 | # TODO: The TP ID is hardcoded to 64 below. It is fine when testing single-tcont workflow. |
| 540 | # When testing multi-tcont this may need some adjustment. |
TorstenThieme | 4507160 | 2021-03-16 12:14:37 +0000 | [diff] [blame] | 541 | Exit For Loop If not ('uni_config' in $value) |
Girish Gowdra | 97f8d06 | 2020-11-17 15:48:23 -0800 | [diff] [blame] | 542 | ${tp_path}= Get From Dictionary ${value['uni_config'][0]['PersTpPathMap']} 64 |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 543 | ${oltpononuuniid}= Read Pon Onu Uni String ${tp_path} |
| 544 | ${list_id}= Get Index From List ${oltpononuuniidlist} ${oltpononuuniid} |
TorstenThieme | 17756ea | 2020-11-11 14:09:47 +0000 | [diff] [blame] | 545 | Should Be Equal As Integers ${list_id} -1 |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 546 | ... msg=Combination of Pon, Onu and Uni (${oltpononuuniid}) exist multiple in etcd data! |
| 547 | Append To List ${oltpononuuniidlist} ${oltpononuuniid} |
TorstenThieme | 17756ea | 2020-11-11 14:09:47 +0000 | [diff] [blame] | 548 | Validate Onu Id ${value} |
| 549 | Validate Uni Id ${value} |
| 550 | ${serial_number}= Get From Dictionary ${value} serial_number |
| 551 | ${list_id}= Get Index From List ${serialnumberlist} ${serial_number} |
| 552 | Should Be Equal As Integers ${list_id} -1 |
| 553 | ... msg=Serial number (${serial_number}) exists multiple in etcd data! |
| 554 | Append To List ${serialnumberlist} ${serial_number} |
| 555 | END |
| 556 | |
TorstenThieme | 712b296 | 2021-11-17 14:16:15 +0000 | [diff] [blame] | 557 | Validate Onu Data In Etcd Removed |
| 558 | [Documentation] This keyword validates openonu-go-adapter Data stored in etcd are removed. |
| 559 | ... In case of a device is passed, only this will be checked. |
| 560 | [Arguments] ${namespace}=default ${device_id}=${EMPTY} ${defaultkvstoreprefix}=voltha_voltha |
| 561 | ... ${without_pm_data}=True |
| 562 | ${kvstoreprefix}= Get Kv Store Prefix ${defaultkvstoreprefix} |
| 563 | ${etcddata}= Get ONU Go Adapter ETCD Data ${namespace} ${kvstoreprefix} False ${without_pm_data} |
| 564 | ... ${device_id} True |
| 565 | Log ${etcddata} |
| 566 | Should Be Empty ${etcddata} Stale Openonu Data in Etcd (KV store) ${device_id} |
| 567 | |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 568 | Validate Vlan Rules In Etcd |
| 569 | [Documentation] This keyword validates Vlan rules of openonu-go-adapter Data stored in etcd. |
| 570 | ... It checks the given number of cookie_slice, match_vid (=4096) and set_vid. |
| 571 | ... Furthermore it returns a list of all set_vid. |
| 572 | ... In case of a passed dictionary containing set_vids these will be checked for to |
| 573 | ... current set-vid depending on setvidequal (True=equal, False=not equal). |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 574 | [Arguments] ${namespace}=default ${nbofcookieslice}=1 ${reqmatchvid}=4096 ${prevvlanrules}=${NONE} |
| 575 | ... ${setvidequal}=False ${defaultkvstoreprefix}=voltha_voltha ${without_prefix}=True ${without_pm_data}=True |
TorstenThieme | 3385cdc | 2021-02-04 13:50:50 +0000 | [diff] [blame] | 576 | ${kvstoreprefix}= Get Kv Store Prefix ${defaultkvstoreprefix} |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 577 | ${etcddata}= Get ONU Go Adapter ETCD Data ${namespace} ${kvstoreprefix} ${without_prefix} ${without_pm_data} |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 578 | #prepare result for json convert |
| 579 | ${result}= Prepare ONU Go Adapter ETCD Data For Json ${etcddata} |
| 580 | ${jsondata}= To Json ${result} |
| 581 | ${length}= Get Length ${jsondata} |
| 582 | log ${jsondata} |
| 583 | ${vlan_rules}= Create Dictionary |
| 584 | FOR ${INDEX} IN RANGE 0 ${length} |
| 585 | ${value}= Get From List ${jsondata} ${INDEX} |
Girish Gowdra | 295c169 | 2020-11-19 10:51:53 -0800 | [diff] [blame] | 586 | # TODO: The TP ID is hardcoded to 64 below. It is fine when testing single-tcont workflow. |
| 587 | # When testing multi-tcont this may need some adjustment. |
| 588 | ${tp_path}= Get From Dictionary ${value['uni_config'][0]['PersTpPathMap']} 64 |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 589 | ${oltpononuuniid}= Read Pon Onu Uni String ${tp_path} |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 590 | ${cookieslice}= Get From Dictionary ${value['uni_config'][0]['flow_params'][0]} cookie_slice |
| 591 | #@{cookieslicelist}= Split String ${cookieslice} , |
| 592 | ${foundcookieslices}= Get Length ${cookieslice} |
| 593 | Should Be Equal As Integers ${foundcookieslices} ${nbofcookieslice} |
| 594 | ${matchvid}= Get From Dictionary ${value['uni_config'][0]['flow_params'][0]['vlan_rule_params']} |
| 595 | ... match_vid |
| 596 | Should Be Equal As Integers ${matchvid} ${reqmatchvid} |
| 597 | ${setvid}= Get From Dictionary ${value['uni_config'][0]['flow_params'][0]['vlan_rule_params']} |
| 598 | ... set_vid |
| 599 | ${evalresult}= Evaluate 2 <= ${setvid} <= 4095 |
| 600 | Should Be True ${evalresult} msg=set_vid out of range (${setvid})! |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 601 | Set To Dictionary ${vlan_rules} ${oltpononuuniid} ${setvid} |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 602 | ${oldsetvidvalid} Set Variable If ${prevvlanrules} is ${NONE} False True |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 603 | ${prevsetvid}= Set Variable If ${oldsetvidvalid} ${prevvlanrules['${oltpononuuniid}']} |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 604 | Run Keyword If ${oldsetvidvalid} and ${setvidequal} |
| 605 | ... Should Be Equal As Integers ${prevsetvid} ${setvid} |
| 606 | ... ELSE IF ${oldsetvidvalid} and not ${setvidequal} |
| 607 | ... Should Not Be Equal As Integers ${prevsetvid} ${setvid} |
| 608 | END |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 609 | log Many ${vlan_rules} |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 610 | [Return] ${vlan_rules} |
| 611 | |
| 612 | Get ONU Go Adapter ETCD Data |
| 613 | [Documentation] This keyword delivers openonu-go-adapter Data stored in etcd |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 614 | [Arguments] ${namespace}=default ${defaultkvstoreprefix}=voltha_voltha ${without_prefix}=True |
TorstenThieme | 712b296 | 2021-11-17 14:16:15 +0000 | [diff] [blame] | 615 | ... ${without_pm_data}=True ${device_id}=${Empty} ${keys_only}=False |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 616 | ${podname}= Set Variable etcd |
TorstenThieme | 3385cdc | 2021-02-04 13:50:50 +0000 | [diff] [blame] | 617 | ${kvstoreprefix}= Get Kv Store Prefix ${defaultkvstoreprefix} |
TorstenThieme | 3af1231 | 2021-03-10 16:15:24 +0000 | [diff] [blame] | 618 | ${commandget}= Catenate |
| 619 | ... /bin/sh -c 'ETCDCTL_API=3 etcdctl get --prefix service/${kvstoreprefix}/openonu' |
TorstenThieme | 712b296 | 2021-11-17 14:16:15 +0000 | [diff] [blame] | 620 | ${commandget}= Run Keyword If ${keys_only} Catenate ${commandget} --keys-only |
| 621 | ... ELSE Set Variable ${commandget} |
TorstenThieme | 3af1231 | 2021-03-10 16:15:24 +0000 | [diff] [blame] | 622 | ${commandget}= Run Keyword If ${without_prefix} Catenate ${commandget} |
| 623 | ... | grep -v service/${kvstoreprefix}/openonu |
TorstenThieme | fa29a89 | 2021-03-11 14:11:29 +0000 | [diff] [blame] | 624 | ... ELSE Set Variable ${commandget} |
TorstenThieme | 3af1231 | 2021-03-10 16:15:24 +0000 | [diff] [blame] | 625 | ${commandget}= Run Keyword If ${without_pm_data} Catenate ${commandget} | grep -v instances_active |
TorstenThieme | fa29a89 | 2021-03-11 14:11:29 +0000 | [diff] [blame] | 626 | ... ELSE Set Variable ${commandget} |
TorstenThieme | 712b296 | 2021-11-17 14:16:15 +0000 | [diff] [blame] | 627 | ${commandget}= Run Keyword If "${device_id}"!="${Empty}" Catenate ${commandget} | grep ${device_id} |
| 628 | ... ELSE Set Variable ${commandget} |
Holger Hildebrandt | 2314774 | 2020-11-16 10:13:21 +0000 | [diff] [blame] | 629 | ${result}= Exec Pod In Kube ${namespace} ${podname} ${commandget} |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 630 | log ${result} |
| 631 | [Return] ${result} |
| 632 | |
| 633 | Prepare ONU Go Adapter ETCD Data For Json |
| 634 | [Documentation] This keyword prepares openonu-go-adapter Data stored in etcd for converting |
| 635 | ... to json |
| 636 | [Arguments] ${etcddata} |
| 637 | #prepare result for json convert |
| 638 | ${prepresult}= Replace String ${etcddata} \n , |
| 639 | ${prepresult}= Strip String ${prepresult} mode=right characters=, |
| 640 | ${prepresult}= Set Variable [${prepresult}] |
| 641 | log ${prepresult} |
| 642 | [Return] ${prepresult} |
| 643 | |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 644 | Read Pon Onu Uni String |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 645 | [Documentation] This keyword builds a four digit string using Olt, Pon, Onu and Uni value of given tp-path taken |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 646 | ... taken from etcd data of onu go adapter |
| 647 | [Arguments] ${tp_path} |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 648 | ${tppathlines}= Replace String ${tp_path} / \n |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 649 | ${olt}= Get Value Of Tp Path Element ${tppathlines} olt |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 650 | ${pon}= Get Value Of Tp Path Element ${tppathlines} pon |
| 651 | ${onu}= Get Value Of Tp Path Element ${tppathlines} onu |
| 652 | ${uni}= Get Value Of Tp Path Element ${tppathlines} uni |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 653 | ${valuesid}= Set Variable ${olt}/${pon}/${onu}/${uni} |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 654 | log ${valuesid} |
| 655 | [Return] ${valuesid} |
| 656 | |
| 657 | Get Value Of Tp Path Element |
TorstenThieme | 17756ea | 2020-11-11 14:09:47 +0000 | [diff] [blame] | 658 | [Documentation] This keyword delivers numeric value of given tp path element. |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 659 | [Arguments] ${tp_path_lines} ${element} |
| 660 | ${value}= Get Lines Containing String ${tp_path_lines} ${element}-\{ |
| 661 | ${value}= Remove String ${value} ${element}-\{ |
| 662 | ${value}= Remove String ${value} \} |
| 663 | log ${value} |
| 664 | [Return] ${value} |
| 665 | |
TorstenThieme | 17756ea | 2020-11-11 14:09:47 +0000 | [diff] [blame] | 666 | Validate Onu Id |
| 667 | [Documentation] This keyword validates ONU Id of passed etcd data. |
| 668 | [Arguments] ${value} |
Girish Gowdra | 295c169 | 2020-11-19 10:51:53 -0800 | [diff] [blame] | 669 | # TODO: The TP ID is hardcoded to 64 below. It is fine when testing single-tcont workflow. |
| 670 | # When testing multi-tcont this may need some adjustment. |
| 671 | ${tp_path}= Get From Dictionary ${value['uni_config'][0]['PersTpPathMap']} 64 |
TorstenThieme | 17756ea | 2020-11-11 14:09:47 +0000 | [diff] [blame] | 672 | ${tppathlines}= Replace String ${tp_path} / \n |
| 673 | ${onu}= Get Value Of Tp Path Element ${tppathlines} onu |
| 674 | ${onu_id}= Get From Dictionary ${value} onu_id |
| 675 | Should Be Equal As Integers ${onu} ${onu_id} |
| 676 | ... msg=Onu-Id (${onu_id}) does not match onu (${onu}) from tp_path in etcd data! |
| 677 | Should Be True ${onu_id}>=1 |
| 678 | |
| 679 | Validate Uni Id |
| 680 | [Documentation] This keyword validates UNI Id of passed etcd data. |
| 681 | [Arguments] ${value} |
Girish Gowdra | 295c169 | 2020-11-19 10:51:53 -0800 | [diff] [blame] | 682 | # TODO: The TP ID is hardcoded to 64 below. It is fine when testing single-tcont workflow. |
| 683 | # When testing multi-tcont this may need some adjustment. |
| 684 | ${tp_path}= Get From Dictionary ${value['uni_config'][0]['PersTpPathMap']} 64 |
TorstenThieme | 17756ea | 2020-11-11 14:09:47 +0000 | [diff] [blame] | 685 | ${tppathlines}= Replace String ${tp_path} / \n |
| 686 | ${uni}= Get Value Of Tp Path Element ${tppathlines} uni |
| 687 | ${uni_id}= Get From Dictionary ${value['uni_config'][0]} uni_id |
| 688 | Should Be Equal As Integers ${uni} ${uni_id} |
| 689 | ... msg=Uni-Id (${uni_id}) does not match onu (${uni}) from tp_path in etcd data! |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 690 | |
TorstenThieme | 4507160 | 2021-03-16 12:14:37 +0000 | [diff] [blame] | 691 | Delete ONU Go Adapter ETCD Data |
| 692 | [Documentation] This keyword deletes openonu-go-adapter Data stored in etcd |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 693 | [Arguments] ${namespace}=default ${defaultkvstoreprefix}=voltha_voltha ${validate}=False |
TorstenThieme | 4507160 | 2021-03-16 12:14:37 +0000 | [diff] [blame] | 694 | ${podname}= Set Variable etcd |
| 695 | ${kvstoreprefix}= Get Kv Store Prefix ${defaultkvstoreprefix} |
| 696 | ${commandget}= Catenate |
| 697 | ... /bin/sh -c 'ETCDCTL_API=3 etcdctl del --prefix service/${kvstoreprefix}/openonu' |
| 698 | ${result}= Exec Pod In Kube ${namespace} ${podname} ${commandget} |
| 699 | log ${result} |
| 700 | Run Keyword If ${validate} Wait Until Keyword Succeeds ${timeout} 1s |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 701 | ... Validate Onu Data In Etcd namespace=${namespace} nbofetcddata=0 without_pm_data=False |
TorstenThieme | 4507160 | 2021-03-16 12:14:37 +0000 | [diff] [blame] | 702 | [Return] ${result} |
| 703 | |
TorstenThieme | d649288 | 2021-12-16 08:10:02 +0000 | [diff] [blame] | 704 | Validate ONOS Flows per OLT |
| 705 | [Documentation] This keyword validates onos flows per olt |
| 706 | [Arguments] ${olt_sn} ${expected_flows} |
| 707 | ${olt_of_id} Validate OLT Device in ONOS ${olt_sn} |
| 708 | ${flows}= Count flows ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${olt_of_id} added |
| 709 | Log Found added ${flows} of ${expected_flows} expected flows on device ${olt_sn} |
| 710 | Should Be Equal As Integers ${expected_flows} ${flows} |
| 711 | |
TorstenThieme | f7cd2be | 2021-12-06 14:30:11 +0000 | [diff] [blame] | 712 | Validate OLT Flows Per Onu |
| 713 | [Documentation] This keyword validates olt flows per onu |
| 714 | ... It checks checks presence/absence of olt flows depending on must_exist. |
| 715 | ... The values/content of olt flows will be not validated! |
| 716 | [Arguments] ${onu_device_id} ${must_exist} |
| 717 | ${rc} ${output}= Run and Return Rc and Output |
Andrea Campanella | 28989d1 | 2022-01-11 09:49:21 +0100 | [diff] [blame] | 718 | ... voltctl -c ${VOLTCTL_CONFIG} device flows ${onu_device_id} -m 32MB -o json |
TorstenThieme | f7cd2be | 2021-12-06 14:30:11 +0000 | [diff] [blame] | 719 | Should Be Equal As Integers ${rc} 0 |
| 720 | ${jsondata}= To Json ${output} |
| 721 | Log ${jsondata} |
| 722 | # in case of ATT for ONU with removed flows there is default flow established |
| 723 | ${length}= Get Length ${jsondata} |
| 724 | ${value}= Run Keyword If ${length}>0 Get From List ${jsondata} 0 |
| 725 | ${setvid}= Run Keyword If ${length}>0 Run Keyword If 'setvlanid' in ${value} |
| 726 | ... Get From Dictionary ${value} setvlanid |
| 727 | Run Keyword If "${workflow}"=="ATT" and not ${must_exist} Run Keywords |
| 728 | ... Should Be Equal As Numbers ${setvid} 4091 AND |
| 729 | ... Should Be Equal As Numbers ${length} 1 AND |
| 730 | ... Return From Keyword |
| 731 | Run Keyword If ${must_exist} Should Not Be Empty ${jsondata} |
| 732 | ... ELSE Should Be Empty ${jsondata} |
| 733 | |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 734 | Wait for Ports in ONOS for all OLTs |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 735 | [Documentation] Waits untill a certain number of ports are enabled in all OLTs |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 736 | [Arguments] ${host} ${port} ${count} ${filter} ${max_wait_time}=10m ${determine_number}=False |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 737 | FOR ${J} IN RANGE 0 ${num_olts} |
| 738 | ${olt_serial_number}= Set Variable ${list_olts}[${J}][sn] |
| 739 | ${onu_count}= Set Variable ${list_olts}[${J}][onucount] |
| 740 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS |
| 741 | ... ${olt_serial_number} |
| 742 | Set Global Variable ${of_id} |
TorstenThieme | ff9c914 | 2021-04-08 07:21:34 +0000 | [diff] [blame] | 743 | ${count2check}= Set Variable If ${count}==${num_all_onus} ${onu_count} ${count} |
| 744 | # if flag determine_number is set to True, always determine the number of real ONUs (overwrite previous value) |
| 745 | ${count2check}= Run Keyword If ${determine_number} Determine Number Of ONU ${olt_serial_number} |
| 746 | ... ELSE Set Variable ${count2check} |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 747 | Wait for Ports in ONOS ${host} ${port} ${count2check} ${of_id} BBSM ${max_wait_time} |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 748 | END |
| 749 | |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 750 | Wait for all ONU Ports in ONOS Disabled |
| 751 | [Documentation] Waits untill a all ONU ports are disabled in all ONOS |
TorstenThieme | 00fe826 | 2022-01-19 10:43:07 +0000 | [diff] [blame] | 752 | [Arguments] ${host} ${port} ${unitag}=False |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 753 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 754 | ${src}= Set Variable ${hosts.src[${I}]} |
| 755 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS |
| 756 | ... ${src['olt']} |
TorstenThieme | 00fe826 | 2022-01-19 10:43:07 +0000 | [diff] [blame] | 757 | ${onu_uni_id}= Set Variable If ${unitag} ${src['uni_id']} 1 |
| 758 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} ${of_id} |
| 759 | ... ${onu_uni_id} |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 760 | Wait Until Keyword Succeeds ${timeout} 2s Assert ONU Port Is Disabled ${host} ${port} ${of_id} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 761 | ... ${onu_port} |
| 762 | END |
| 763 | |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 764 | Map State |
| 765 | [Documentation] This keyword converts the passed numeric value or name of a onu state to its state values. |
| 766 | [Arguments] ${state} |
| 767 | # create state lists with corresponding return values |
| 768 | # ADMIN-STATE OPER-STATUS CONNECT-STATUS ONU-STATE (number/name) |
| 769 | ${state1} Create List ENABLED ACTIVATING REACHABLE 1 activating-onu |
| 770 | ${state2} Create List ENABLED ACTIVATING REACHABLE 2 starting-openomci |
| 771 | ${state3} Create List ENABLED ACTIVATING REACHABLE 3 discovery-mibsync-complete |
| 772 | ${state4} Create List ENABLED ACTIVE REACHABLE 4 initial-mib-downloaded |
| 773 | ${state5} Create List ENABLED ACTIVE REACHABLE 5 tech-profile-config-download-success |
| 774 | ${state6} Create List ENABLED ACTIVE REACHABLE 6 omci-flows-pushed |
| 775 | ${state7} Create List DISABLED UNKNOWN REACHABLE 7 omci-admin-lock |
| 776 | ${state8} Create List ENABLED ACTIVE REACHABLE 8 onu-reenabled |
| 777 | ${state9} Create List ENABLED DISCOVERED UNREACHABLE 9 stopping-openomci |
| 778 | ${state10} Create List ENABLED DISCOVERED REACHABLE 10 rebooting |
| 779 | ${state11} Create List ENABLED DISCOVERED REACHABLE 11 omci-flows-deleted |
| 780 | ${state12} Create List DISABLED UNKNOWN REACHABLE 12 tech-profile-config-delete-success |
| 781 | ${admin_state} ${oper_status} ${connect_status} ${onu_state_nb} ${onu_state}= Set Variable If |
| 782 | ... '${state}'=='1' or '${state}'=='activating-onu' ${state1} |
| 783 | ... '${state}'=='2' or '${state}'=='starting-openomci' ${state2} |
| 784 | ... '${state}'=='3' or '${state}'=='discovery-mibsync-complete' ${state3} |
| 785 | ... '${state}'=='4' or '${state}'=='initial-mib-downloaded' ${state4} |
| 786 | ... '${state}'=='5' or '${state}'=='tech-profile-config-download-success' ${state5} |
| 787 | ... '${state}'=='6' or '${state}'=='omci-flows-pushed' ${state6} |
| 788 | ... '${state}'=='7' or '${state}'=='omci-admin-lock' ${state7} |
| 789 | ... '${state}'=='8' or '${state}'=='onu-reenabled' ${state8} |
| 790 | ... '${state}'=='9' or '${state}'=='stopping-openomci' ${state9} |
| 791 | ... '${state}'=='10' or '${state}'=='rebooting' ${state10} |
| 792 | ... '${state}'=='11' or '${state}'=='omci-flows-deleted' ${state11} |
| 793 | ... '${state}'=='12' or '${state}'=='tech-profile-config-delete-success' ${state12} |
| 794 | [Return] ${admin_state} ${oper_status} ${connect_status} ${onu_state_nb} ${onu_state} |