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 | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 18 | |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 19 | |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 20 | *** Keywords *** |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 21 | Calculate Timeout |
| 22 | [Documentation] Calculates the timeout regarding num-onus in case of more than 4 onus |
| 23 | [Arguments] ${basetimeout}=60s |
| 24 | ${new_timeout} Fetch From Left ${basetimeout} s |
| 25 | ${new_timeout}= evaluate ${new_timeout}+((${num_all_onus}-4)*10) |
| 26 | ${new_timeout}= Set Variable If (not ${debugmode}) and (${new_timeout}>300) |
| 27 | ... 300 ${new_timeout} |
| 28 | ${new_timeout}= Catenate SEPARATOR= ${new_timeout} s |
| 29 | [Return] ${new_timeout} |
| 30 | |
TorstenThieme | 3494ceb | 2021-07-19 09:47:24 +0000 | [diff] [blame] | 31 | Get Logical Id of OLT |
| 32 | [Documentation] Fills the logical id of OLT(s) if missing |
| 33 | FOR ${I} IN RANGE 0 ${num_olts} |
| 34 | # exit loop if logical id already known |
| 35 | Exit For Loop IF "${olt_ids}[${I}][logical_id]" != "${EMPTY}" |
| 36 | #read current device values |
| 37 | ${olt}= Get From List ${olt_ids} ${I} |
| 38 | ${olt_serial_number}= Get From Dictionary ${olt} sn |
| 39 | # read logical id and store it |
| 40 | ${logical_id}= Get Logical Device ID From SN ${olt_serial_number} |
| 41 | Set To Dictionary ${olt} logical_id ${logical_id} |
| 42 | Set List Value ${olt_ids} ${I} ${olt} |
| 43 | END |
| 44 | Set Global Variable ${olt_ids} |
| 45 | |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 46 | Power On ONU Device |
| 47 | [Documentation] This keyword turns on the power for all onus. |
| 48 | [Arguments] ${namespace} |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 49 | FOR ${J} IN RANGE 0 ${num_olts} |
| 50 | ${olt_serial_number}= Set Variable ${list_olts}[${J}][sn] |
| 51 | ${bbsim}= Catenate SEPARATOR= bbsim ${J} |
| 52 | ${bbsim_pod}= Get Pod Name By Label ${namespace} release ${bbsim} |
| 53 | Power On ONU Device per OLT ${namespace} ${olt_serial_number} ${bbsim_pod} |
| 54 | END |
| 55 | |
| 56 | Power On ONU Device per OLT |
| 57 | [Documentation] This keyword turns on the power for all onus. |
| 58 | [Arguments] ${namespace} ${olt_serial_number} ${bbsim_pod} |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 59 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 60 | ${src}= Set Variable ${hosts.src[${I}]} |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 61 | Continue For Loop If "${olt_serial_number}"!="${src['olt']}" |
| 62 | Power On ONU ${namespace} ${bbsim_pod} ${src['onu']} |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 63 | END |
| 64 | |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 65 | Power Off ONU Device |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 66 | [Documentation] This keyword turns off the power for all onus per olt. |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 67 | [Arguments] ${namespace} |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 68 | FOR ${J} IN RANGE 0 ${num_olts} |
| 69 | ${olt_serial_number}= Set Variable ${list_olts}[${J}][sn] |
| 70 | ${bbsim}= Catenate SEPARATOR= bbsim ${J} |
| 71 | ${bbsim_pod}= Get Pod Name By Label ${namespace} release ${bbsim} |
| 72 | Power Off ONU Device per OLT ${namespace} ${olt_serial_number} ${bbsim_pod} |
| 73 | END |
| 74 | |
| 75 | Power Off ONU Device per OLT |
| 76 | [Documentation] This keyword turns off the power for all onus per olt. |
| 77 | [Arguments] ${namespace} ${olt_serial_number} ${bbsim_pod} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 78 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 79 | ${src}= Set Variable ${hosts.src[${I}]} |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 80 | Continue For Loop If "${olt_serial_number}"!="${src['olt']}" |
| 81 | Power Off ONU ${namespace} ${bbsim_pod} ${src['onu']} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 82 | END |
| 83 | |
| 84 | Current State Test |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 85 | [Documentation] This keyword checks the passed state of the given onu. |
| 86 | [Arguments] ${state} ${onu} ${reqadminstate}=${EMPTY} ${reqoperstatus}=${EMPTY} |
| 87 | ... ${reqconnectstatus}=${EMPTY} |
| 88 | ${admin_state} ${oper_status} ${connect_status} ${onu_state_nb} ${onu_state}= Map State ${state} |
| 89 | ${admin_state}= Set Variable If '${reqadminstate}'!='${EMPTY}' ${reqadminstate} ${admin_state} |
| 90 | ${oper_status}= Set Variable If '${reqoperstatus}'!='${EMPTY}' ${reqoperstatus} ${oper_status} |
| 91 | ${connect_status}= Set Variable If '${reqconnectstatus}'!='${EMPTY}' ${reqconnectstatus} |
| 92 | ... ${connect_status} |
| 93 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 50ms |
| 94 | ... Validate Device ${admin_state} ${oper_status} ${connect_status} |
| 95 | ... ${onu} onu=True onu_reason=${onu_state} |
| 96 | |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 97 | Current State Test All Onus |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 98 | [Documentation] This keyword checks the passed state of all onus. |
| 99 | ... Hint: ${timeStart} will be not evaluated here! |
| 100 | [Arguments] ${state} ${reqadminstate}=${EMPTY} ${reqoperstatus}=${EMPTY} ${reqconnectstatus}=${EMPTY} |
TorstenThieme | 53450ff | 2021-05-11 09:44:33 +0000 | [diff] [blame] | 101 | ... ${alternativeonustate}=${EMPTY} ${timeout}=${timeout} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 102 | ${timeStart}= Get Current Date |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 103 | ${list_onus} Create List |
| 104 | Build ONU SN List ${list_onus} |
| 105 | ${admin_state} ${oper_status} ${connect_status} ${onu_state_nb} ${onu_state}= Map State ${state} |
| 106 | ${admin_state}= Set Variable If '${reqadminstate}'!='${EMPTY}' ${reqadminstate} ${admin_state} |
| 107 | ${oper_status}= Set Variable If '${reqoperstatus}'!='${EMPTY}' ${reqoperstatus} ${oper_status} |
| 108 | ${connect_status}= Set Variable If '${reqconnectstatus}'!='${EMPTY}' ${reqconnectstatus} |
| 109 | ... ${connect_status} |
| 110 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 50ms |
| 111 | ... Validate ONU Devices With Duration |
| 112 | ... ${admin_state} ${oper_status} ${connect_status} |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 113 | ... ${onu_state} ${list_onus} ${timeStart} alternate_reason=${alternativeonustate} |
TorstenThieme | 53450ff | 2021-05-11 09:44:33 +0000 | [diff] [blame] | 114 | # teardown is used as 'return' for result of Validate ONU Devices With Duration (used for ONUNegativeStateTests) |
| 115 | [Teardown] Run Keyword If "${KEYWORD STATUS}"=="FAIL" Set Suite Variable ${StateTestAllONUs} False |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 116 | |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 117 | Log Ports |
| 118 | [Documentation] This keyword logs all port data available in ONOS of first port per ONU |
| 119 | [Arguments] ${onlyenabled}=False |
| 120 | ${cmd} Set Variable If ${onlyenabled} ports -e ports |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 121 | ${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] | 122 | ${lines} = Get Lines Matching Regexp ${onu_ports} .*portName=BBSM[0-9]{8}-1 |
| 123 | Log ${lines} |
| 124 | |
| 125 | Kill Adaptor |
| 126 | [Documentation] This keyword kills the passed adaptor. |
| 127 | [Arguments] ${namespace} ${name} |
| 128 | ${cmd} Catenate |
| 129 | ... kubectl exec -it -n voltha $(kubectl get pods -n ${namespace} | grep ${name} | awk 'NR==1{print $1}') |
| 130 | ... -- /bin/sh -c "kill 1" |
| 131 | ${rc} ${output}= Run and Return Rc and Output ${cmd} |
| 132 | Log ${output} |
| 133 | |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 134 | Kill And Check Onu Adaptor |
| 135 | [Documentation] This keyword kills ONU Adaptor and waits for it to come up again |
| 136 | ... Following steps will be executed: |
| 137 | ... - kill openonu adaptor |
| 138 | ... - check openonu adaptor is ready again |
| 139 | [Arguments] ${namespace} |
| 140 | ${list_openonu_apps} Create List adapter-open-onu |
| 141 | ${adaptorname}= Set Variable open-onu |
| 142 | Kill Adaptor ${namespace} ${adaptorname} |
| 143 | Sleep 5s |
| 144 | Wait For Pods Ready ${namespace} ${list_openonu_apps} |
| 145 | |
| 146 | Restart And Check Onu Adaptor |
| 147 | [Documentation] This keyword restarts ONU Adaptor and waits for it to come up again |
| 148 | ... Following steps will be executed: |
| 149 | ... - restart openonu adaptor |
| 150 | ... - check openonu adaptor is ready again |
| 151 | [Arguments] ${namespace} |
| 152 | ${list_openonu_apps} Create List adapter-open-onu |
Matteo Scandolo | 6f24ea9 | 2021-04-29 11:55:50 -0700 | [diff] [blame] | 153 | ${openonu_label_key} Set Variable app |
| 154 | ${openonu_label_value} Set Variable adapter-open-onu |
| 155 | Restart Pod By Label ${namespace} ${openonu_label_key} ${openonu_label_value} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 156 | Sleep 5s |
| 157 | Wait For Pods Ready ${namespace} ${list_openonu_apps} |
| 158 | |
| 159 | Disable Onu Device |
| 160 | [Documentation] This keyword disables all onus. |
TorstenThieme | 70bc526 | 2021-01-19 12:12:55 +0000 | [diff] [blame] | 161 | ${onu_list} Create List |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 162 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 163 | ${src}= Set Variable ${hosts.src[${I}]} |
| 164 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
TorstenThieme | 70bc526 | 2021-01-19 12:12:55 +0000 | [diff] [blame] | 165 | ${onu_id}= Get Index From List ${onu_list} ${onu_device_id} |
| 166 | Continue For Loop If -1 != ${onu_id} |
| 167 | Append To List ${onu_list} ${onu_device_id} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 168 | Disable Device ${onu_device_id} |
| 169 | Wait Until Keyword Succeeds 20s 2s Test Devices Disabled in VOLTHA Id=${onu_device_id} |
| 170 | END |
| 171 | |
| 172 | Enable Onu Device |
| 173 | [Documentation] This keyword enables all onus. |
TorstenThieme | 70bc526 | 2021-01-19 12:12:55 +0000 | [diff] [blame] | 174 | ${onu_list} Create List |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 175 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 176 | ${src}= Set Variable ${hosts.src[${I}]} |
| 177 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
TorstenThieme | 70bc526 | 2021-01-19 12:12:55 +0000 | [diff] [blame] | 178 | ${onu_id}= Get Index From List ${onu_list} ${onu_device_id} |
| 179 | Continue For Loop If -1 != ${onu_id} |
| 180 | Append To List ${onu_list} ${onu_device_id} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 181 | Enable Device ${onu_device_id} |
| 182 | END |
| 183 | |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 184 | Verify MIB Template Data Available |
| 185 | [Documentation] This keyword verifies MIB Template Data stored in etcd |
| 186 | ${namespace}= Set Variable default |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 187 | ${podname}= Set Variable etcd |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 188 | ${commandget} Catenate |
Matteo Scandolo | 341b937 | 2020-12-09 14:15:06 -0800 | [diff] [blame] | 189 | ... /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] | 190 | ${result}= Exec Pod In Kube ${namespace} ${podname} ${commandget} |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 191 | Should Not Be Empty ${result} No MIB Template Data stored in etcd! |
| 192 | |
| 193 | Delete MIB Template Data |
| 194 | [Documentation] This keyword deletes MIB Template Data stored in etcd |
| 195 | ${namespace}= Set Variable default |
| 196 | ${podname}= Set Variable etcd |
| 197 | ${commanddel} Catenate |
Matteo Scandolo | 341b937 | 2020-12-09 14:15:06 -0800 | [diff] [blame] | 198 | ... /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] | 199 | ${result}= Exec Pod In Kube ${namespace} ${podname} ${commanddel} |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 200 | Sleep 3s |
| 201 | ${commandget} Catenate |
Matteo Scandolo | 341b937 | 2020-12-09 14:15:06 -0800 | [diff] [blame] | 202 | ... /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] | 203 | ${result}= Exec Pod In Kube ${namespace} ${podname} ${commandget} |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 204 | Should Be Empty ${result} Could not delete MIB Template Data stored in etcd! |
| 205 | |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 206 | Set Tech Profile |
| 207 | [Documentation] This keyword sets the passed TechProfile for the test |
| 208 | [Arguments] ${TechProfile} |
| 209 | Log To Console \nTechProfile:${TechProfile} |
| 210 | ${namespace}= Set Variable default |
| 211 | ${podname}= Set Variable etcd |
Andrea Campanella | 0aa21d6 | 2021-07-22 10:44:32 +0200 | [diff] [blame] | 212 | ${label}= Set Variable app.kubernetes.io/name=${podname} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 213 | ${src}= Set Variable ${data_dir}/TechProfile-${TechProfile}.json |
| 214 | ${dest}= Set Variable /tmp/flexpod.json |
| 215 | ${command} Catenate |
| 216 | ... /bin/sh -c 'cat ${dest} | ETCDCTL_API=3 etcdctl put service/voltha/technology_profiles/XGS-PON/64' |
Andrea Campanella | 0aa21d6 | 2021-07-22 10:44:32 +0200 | [diff] [blame] | 217 | Copy File To Pod ${namespace} ${label} ${src} ${dest} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 218 | Exec Pod In Kube ${namespace} ${podname} ${command} |
| 219 | ${commandget} Catenate |
| 220 | ... /bin/sh -c 'ETCDCTL_API=3 etcdctl get --prefix service/voltha/technology_profiles/XGS-PON/64' |
Andrea Campanella | 0aa21d6 | 2021-07-22 10:44:32 +0200 | [diff] [blame] | 221 | ${result}= Exec Pod In Kube ${namespace} ${podname} ${commandget} |
| 222 | Should Not Be Empty ${result} No Tech Profile stored in etcd! |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 223 | |
| 224 | Remove Tech Profile |
| 225 | [Documentation] This keyword removes TechProfile |
| 226 | Log To Console \nTechProfile:${TechProfile} |
| 227 | ${namespace}= Set Variable default |
| 228 | ${podname}= Set Variable etcd |
| 229 | ${command} Catenate |
| 230 | ... /bin/sh -c 'ETCDCTL_API=3 etcdctl del --prefix service/voltha/technology_profiles/XGS-PON/64' |
| 231 | Exec Pod In Kube ${namespace} ${podname} ${command} |
| 232 | ${commandget} Catenate |
| 233 | ... /bin/sh -c 'ETCDCTL_API=3 etcdctl get --prefix service/voltha/technology_profiles/XGS-PON/64' |
| 234 | Exec Pod In Kube ${namespace} ${podname} ${commandget} |
| 235 | |
TorstenThieme | a7315f1 | 2021-07-23 11:56:34 +0000 | [diff] [blame] | 236 | Do Onu Subscriber Add Per OLT |
| 237 | [Documentation] Add Subscriber per OLT |
| 238 | [Arguments] ${of_id} ${olt_serial_number} ${print2console}=False |
| 239 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 240 | ${src}= Set Variable ${hosts.src[${I}]} |
| 241 | Continue For Loop If "${olt_serial_number}"!="${src['olt']}" |
| 242 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 243 | ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 244 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
| 245 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2 |
| 246 | ... Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
| 247 | ... volt-add-subscriber-access ${of_id} ${onu_port} |
| 248 | Run Keyword If ${print2console} Log \r\n[${I}] volt-add-subscriber-access ${of_id} ${onu_port}. |
| 249 | ... console=yes |
| 250 | END |
| 251 | |
| 252 | Do Onu Flow Check Per OLT |
| 253 | [Documentation] Checks all ONU flows show up in ONOS and Voltha |
| 254 | [Arguments] ${of_id} ${nni_port} ${olt_serial_number} ${print2console}=False |
| 255 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 256 | ${src}= Set Variable ${hosts.src[${I}]} |
| 257 | Continue For Loop If "${olt_serial_number}"!="${src['olt']}" |
| 258 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 259 | ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 260 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
| 261 | # Verify subscriber access flows are added for the ONU port |
| 262 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 263 | ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 264 | ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']} |
| 265 | ${logoutput} Catenate \r\n[${I}] Verify Subscriber Access Flows Added For |
| 266 | ... ONU ${of_id} ${onu_port} ${src['c_tag']} ${src['s_tag']}. |
| 267 | Run Keyword If ${print2console} Log ${logoutput} console=yes |
| 268 | END |
| 269 | |
| 270 | Do Onu Subscriber Remove Per OLT |
| 271 | [Documentation] Removes per OLT subscribers in ONOS and Voltha |
| 272 | [Arguments] ${of_id} ${olt_serial_number} ${print2console}=False |
| 273 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 274 | ${src}= Set Variable ${hosts.src[${I}]} |
| 275 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 276 | Continue For Loop If "${olt_serial_number}"!="${src['olt']}" |
| 277 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 278 | ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 279 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
| 280 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2 |
| 281 | ... Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
| 282 | ... volt-remove-subscriber-access ${of_id} ${onu_port} |
| 283 | Run Keyword If ${print2console} Log \r\n[${I}] volt-remove-subscriber-access ${of_id} ${onu_port}. |
| 284 | ... console=yes |
| 285 | END |
| 286 | |
TorstenThieme | 7c397d7 | 2021-07-14 11:51:09 +0000 | [diff] [blame] | 287 | Validate Resource Instances Used Gem Ports |
| 288 | [Documentation] This keyword validates resource instances data stored in etcd. |
| 289 | ... It checks checks the number of gemport-ids which has matched with used Tech Profile |
| 290 | [Arguments] ${nbofgemports} ${defaultkvstoreprefix}=voltha_voltha |
| 291 | ${kvstoreprefix}= Get Kv Store Prefix ${defaultkvstoreprefix} |
| 292 | ${etcddata}= Get ONU Go Adapter ETCD Data ${kvstoreprefix} |
| 293 | #prepare result for json convert |
| 294 | ${result}= Prepare ONU Go Adapter ETCD Data For Json ${etcddata} |
| 295 | ${jsondata}= To Json ${result} |
| 296 | ${length}= Get Length ${jsondata} |
| 297 | log ${jsondata} |
| 298 | FOR ${INDEX} IN RANGE 0 ${length} |
| 299 | ${value}= Get From List ${jsondata} ${INDEX} |
| 300 | # TODO: The TP ID is hardcoded to 64 below. It is fine when testing single-tcont workflow. |
| 301 | # When testing multi-tcont this may need some adjustment. |
| 302 | Exit For Loop If not ('uni_config' in $value) |
| 303 | ${tp_path}= Get From Dictionary ${value['uni_config'][0]['PersTpPathMap']} 64 |
| 304 | ${resourcedata}= Get Resource Instances ETCD Data ${tp_path} ${kvstoreprefix} |
| 305 | log ${resourcedata} |
| 306 | ${decoderesult}= volthatools.Tech Profile Decode Resource Instance ${resourcedata} return_default=true |
| 307 | log ${decoderesult} |
| 308 | ${gemportids}= Get From Dictionary ${decoderesult} gemport_ids |
| 309 | ${length}= Get Length ${gemportids} |
| 310 | Should Be Equal As Integers ${nbofgemports} ${length} |
| 311 | ... msg=Number of gem ports (${length}) does not match with techprofile ${techprofile}/${nbofgemports} |
| 312 | END |
| 313 | |
| 314 | Get Resource Instances ETCD Data |
| 315 | [Documentation] This keyword delivers Resource Instances Data stored in etcd |
| 316 | [Arguments] ${tppath} ${defaultkvstoreprefix}=voltha_voltha |
| 317 | ${namespace}= Set Variable default |
| 318 | ${podname}= Set Variable etcd |
| 319 | ${kvstoreprefix}= Get Kv Store Prefix ${defaultkvstoreprefix} |
| 320 | ${commandget}= Catenate |
| 321 | ... /bin/sh -c 'ETCDCTL_API=3 etcdctl get --prefix service/${kvstoreprefix}/resource_instances/${tppath} |
| 322 | ... --print-value-only --hex' |
| 323 | ${result}= Exec Pod In Kube ${namespace} ${podname} ${commandget} |
| 324 | log ${result} |
| 325 | [Return] ${result} |
| 326 | |
| 327 | |
TorstenThieme | 17756ea | 2020-11-11 14:09:47 +0000 | [diff] [blame] | 328 | Validate Onu Data In Etcd |
| 329 | [Documentation] This keyword validates openonu-go-adapter Data stored in etcd. |
| 330 | ... It checks unique of serial_number and combination of pon, onu and uni in tp_path. |
| 331 | ... Furthermore it evaluates the values of onu_id and uni_id with values read from tp_path. |
| 332 | ... Number of etcd entries has to match with the passed number. |
TorstenThieme | 3385cdc | 2021-02-04 13:50:50 +0000 | [diff] [blame] | 333 | [Arguments] ${nbofetcddata}=${num_all_onus} ${defaultkvstoreprefix}=voltha_voltha |
TorstenThieme | fa29a89 | 2021-03-11 14:11:29 +0000 | [diff] [blame] | 334 | ... ${without_prefix}=True ${without_pm_data}=True |
TorstenThieme | 3385cdc | 2021-02-04 13:50:50 +0000 | [diff] [blame] | 335 | ${kvstoreprefix}= Get Kv Store Prefix ${defaultkvstoreprefix} |
TorstenThieme | fa29a89 | 2021-03-11 14:11:29 +0000 | [diff] [blame] | 336 | ${etcddata}= Get ONU Go Adapter ETCD Data ${kvstoreprefix} ${without_prefix} ${without_pm_data} |
TorstenThieme | 17756ea | 2020-11-11 14:09:47 +0000 | [diff] [blame] | 337 | #prepare result for json convert |
| 338 | ${result}= Prepare ONU Go Adapter ETCD Data For Json ${etcddata} |
| 339 | ${jsondata}= To Json ${result} |
| 340 | ${length}= Get Length ${jsondata} |
| 341 | log ${jsondata} |
| 342 | Run Keyword And Continue On Failure Should Be Equal As Integers ${length} ${nbofetcddata} |
| 343 | ... msg=Number etcd data (${length}) does not match required (${nbofetcddata})! |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 344 | ${oltpononuuniidlist}= Create List |
TorstenThieme | 17756ea | 2020-11-11 14:09:47 +0000 | [diff] [blame] | 345 | ${serialnumberlist}= Create List |
| 346 | FOR ${INDEX} IN RANGE 0 ${length} |
| 347 | ${value}= Get From List ${jsondata} ${INDEX} |
Girish Gowdra | 97f8d06 | 2020-11-17 15:48:23 -0800 | [diff] [blame] | 348 | # TODO: The TP ID is hardcoded to 64 below. It is fine when testing single-tcont workflow. |
| 349 | # When testing multi-tcont this may need some adjustment. |
TorstenThieme | 4507160 | 2021-03-16 12:14:37 +0000 | [diff] [blame] | 350 | Exit For Loop If not ('uni_config' in $value) |
Girish Gowdra | 97f8d06 | 2020-11-17 15:48:23 -0800 | [diff] [blame] | 351 | ${tp_path}= Get From Dictionary ${value['uni_config'][0]['PersTpPathMap']} 64 |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 352 | ${oltpononuuniid}= Read Pon Onu Uni String ${tp_path} |
| 353 | ${list_id}= Get Index From List ${oltpononuuniidlist} ${oltpononuuniid} |
TorstenThieme | 17756ea | 2020-11-11 14:09:47 +0000 | [diff] [blame] | 354 | Should Be Equal As Integers ${list_id} -1 |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 355 | ... msg=Combination of Pon, Onu and Uni (${oltpononuuniid}) exist multiple in etcd data! |
| 356 | Append To List ${oltpononuuniidlist} ${oltpononuuniid} |
TorstenThieme | 17756ea | 2020-11-11 14:09:47 +0000 | [diff] [blame] | 357 | Validate Onu Id ${value} |
| 358 | Validate Uni Id ${value} |
| 359 | ${serial_number}= Get From Dictionary ${value} serial_number |
| 360 | ${list_id}= Get Index From List ${serialnumberlist} ${serial_number} |
| 361 | Should Be Equal As Integers ${list_id} -1 |
| 362 | ... msg=Serial number (${serial_number}) exists multiple in etcd data! |
| 363 | Append To List ${serialnumberlist} ${serial_number} |
| 364 | END |
| 365 | |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 366 | Validate Vlan Rules In Etcd |
| 367 | [Documentation] This keyword validates Vlan rules of openonu-go-adapter Data stored in etcd. |
| 368 | ... It checks the given number of cookie_slice, match_vid (=4096) and set_vid. |
| 369 | ... Furthermore it returns a list of all set_vid. |
| 370 | ... In case of a passed dictionary containing set_vids these will be checked for to |
| 371 | ... current set-vid depending on setvidequal (True=equal, False=not equal). |
| 372 | [Arguments] ${nbofcookieslice}=1 ${reqmatchvid}=4096 ${prevvlanrules}=${NONE} ${setvidequal}=False |
TorstenThieme | fa29a89 | 2021-03-11 14:11:29 +0000 | [diff] [blame] | 373 | ... ${defaultkvstoreprefix}=voltha_voltha ${without_prefix}=True ${without_pm_data}=True |
TorstenThieme | 3385cdc | 2021-02-04 13:50:50 +0000 | [diff] [blame] | 374 | ${kvstoreprefix}= Get Kv Store Prefix ${defaultkvstoreprefix} |
TorstenThieme | fa29a89 | 2021-03-11 14:11:29 +0000 | [diff] [blame] | 375 | ${etcddata}= Get ONU Go Adapter ETCD Data ${kvstoreprefix} ${without_prefix} ${without_pm_data} |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 376 | #prepare result for json convert |
| 377 | ${result}= Prepare ONU Go Adapter ETCD Data For Json ${etcddata} |
| 378 | ${jsondata}= To Json ${result} |
| 379 | ${length}= Get Length ${jsondata} |
| 380 | log ${jsondata} |
| 381 | ${vlan_rules}= Create Dictionary |
| 382 | FOR ${INDEX} IN RANGE 0 ${length} |
| 383 | ${value}= Get From List ${jsondata} ${INDEX} |
Girish Gowdra | 295c169 | 2020-11-19 10:51:53 -0800 | [diff] [blame] | 384 | # TODO: The TP ID is hardcoded to 64 below. It is fine when testing single-tcont workflow. |
| 385 | # When testing multi-tcont this may need some adjustment. |
| 386 | ${tp_path}= Get From Dictionary ${value['uni_config'][0]['PersTpPathMap']} 64 |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 387 | ${oltpononuuniid}= Read Pon Onu Uni String ${tp_path} |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 388 | ${cookieslice}= Get From Dictionary ${value['uni_config'][0]['flow_params'][0]} cookie_slice |
| 389 | #@{cookieslicelist}= Split String ${cookieslice} , |
| 390 | ${foundcookieslices}= Get Length ${cookieslice} |
| 391 | Should Be Equal As Integers ${foundcookieslices} ${nbofcookieslice} |
| 392 | ${matchvid}= Get From Dictionary ${value['uni_config'][0]['flow_params'][0]['vlan_rule_params']} |
| 393 | ... match_vid |
| 394 | Should Be Equal As Integers ${matchvid} ${reqmatchvid} |
| 395 | ${setvid}= Get From Dictionary ${value['uni_config'][0]['flow_params'][0]['vlan_rule_params']} |
| 396 | ... set_vid |
| 397 | ${evalresult}= Evaluate 2 <= ${setvid} <= 4095 |
| 398 | Should Be True ${evalresult} msg=set_vid out of range (${setvid})! |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 399 | Set To Dictionary ${vlan_rules} ${oltpononuuniid} ${setvid} |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 400 | ${oldsetvidvalid} Set Variable If ${prevvlanrules} is ${NONE} False True |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 401 | ${prevsetvid}= Set Variable If ${oldsetvidvalid} ${prevvlanrules['${oltpononuuniid}']} |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 402 | Run Keyword If ${oldsetvidvalid} and ${setvidequal} |
| 403 | ... Should Be Equal As Integers ${prevsetvid} ${setvid} |
| 404 | ... ELSE IF ${oldsetvidvalid} and not ${setvidequal} |
| 405 | ... Should Not Be Equal As Integers ${prevsetvid} ${setvid} |
| 406 | END |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 407 | log Many ${vlan_rules} |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 408 | [Return] ${vlan_rules} |
| 409 | |
| 410 | Get ONU Go Adapter ETCD Data |
| 411 | [Documentation] This keyword delivers openonu-go-adapter Data stored in etcd |
TorstenThieme | 3af1231 | 2021-03-10 16:15:24 +0000 | [diff] [blame] | 412 | [Arguments] ${defaultkvstoreprefix}=voltha_voltha ${without_prefix}=True ${without_pm_data}=True |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 413 | ${namespace}= Set Variable default |
| 414 | ${podname}= Set Variable etcd |
TorstenThieme | 3385cdc | 2021-02-04 13:50:50 +0000 | [diff] [blame] | 415 | ${kvstoreprefix}= Get Kv Store Prefix ${defaultkvstoreprefix} |
TorstenThieme | 3af1231 | 2021-03-10 16:15:24 +0000 | [diff] [blame] | 416 | ${commandget}= Catenate |
| 417 | ... /bin/sh -c 'ETCDCTL_API=3 etcdctl get --prefix service/${kvstoreprefix}/openonu' |
| 418 | ${commandget}= Run Keyword If ${without_prefix} Catenate ${commandget} |
| 419 | ... | grep -v service/${kvstoreprefix}/openonu |
TorstenThieme | fa29a89 | 2021-03-11 14:11:29 +0000 | [diff] [blame] | 420 | ... ELSE Set Variable ${commandget} |
TorstenThieme | 3af1231 | 2021-03-10 16:15:24 +0000 | [diff] [blame] | 421 | ${commandget}= Run Keyword If ${without_pm_data} Catenate ${commandget} | grep -v instances_active |
TorstenThieme | fa29a89 | 2021-03-11 14:11:29 +0000 | [diff] [blame] | 422 | ... ELSE Set Variable ${commandget} |
Holger Hildebrandt | 2314774 | 2020-11-16 10:13:21 +0000 | [diff] [blame] | 423 | ${result}= Exec Pod In Kube ${namespace} ${podname} ${commandget} |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 424 | log ${result} |
| 425 | [Return] ${result} |
| 426 | |
| 427 | Prepare ONU Go Adapter ETCD Data For Json |
| 428 | [Documentation] This keyword prepares openonu-go-adapter Data stored in etcd for converting |
| 429 | ... to json |
| 430 | [Arguments] ${etcddata} |
| 431 | #prepare result for json convert |
| 432 | ${prepresult}= Replace String ${etcddata} \n , |
| 433 | ${prepresult}= Strip String ${prepresult} mode=right characters=, |
| 434 | ${prepresult}= Set Variable [${prepresult}] |
| 435 | log ${prepresult} |
| 436 | [Return] ${prepresult} |
| 437 | |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 438 | Read Pon Onu Uni String |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 439 | [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] | 440 | ... taken from etcd data of onu go adapter |
| 441 | [Arguments] ${tp_path} |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 442 | ${tppathlines}= Replace String ${tp_path} / \n |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 443 | ${olt}= Get Value Of Tp Path Element ${tppathlines} olt |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 444 | ${pon}= Get Value Of Tp Path Element ${tppathlines} pon |
| 445 | ${onu}= Get Value Of Tp Path Element ${tppathlines} onu |
| 446 | ${uni}= Get Value Of Tp Path Element ${tppathlines} uni |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 447 | ${valuesid}= Set Variable ${olt}/${pon}/${onu}/${uni} |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 448 | log ${valuesid} |
| 449 | [Return] ${valuesid} |
| 450 | |
| 451 | Get Value Of Tp Path Element |
TorstenThieme | 17756ea | 2020-11-11 14:09:47 +0000 | [diff] [blame] | 452 | [Documentation] This keyword delivers numeric value of given tp path element. |
TorstenThieme | 52ef839 | 2020-11-10 13:42:26 +0000 | [diff] [blame] | 453 | [Arguments] ${tp_path_lines} ${element} |
| 454 | ${value}= Get Lines Containing String ${tp_path_lines} ${element}-\{ |
| 455 | ${value}= Remove String ${value} ${element}-\{ |
| 456 | ${value}= Remove String ${value} \} |
| 457 | log ${value} |
| 458 | [Return] ${value} |
| 459 | |
TorstenThieme | 17756ea | 2020-11-11 14:09:47 +0000 | [diff] [blame] | 460 | Validate Onu Id |
| 461 | [Documentation] This keyword validates ONU Id of passed etcd data. |
| 462 | [Arguments] ${value} |
Girish Gowdra | 295c169 | 2020-11-19 10:51:53 -0800 | [diff] [blame] | 463 | # TODO: The TP ID is hardcoded to 64 below. It is fine when testing single-tcont workflow. |
| 464 | # When testing multi-tcont this may need some adjustment. |
| 465 | ${tp_path}= Get From Dictionary ${value['uni_config'][0]['PersTpPathMap']} 64 |
TorstenThieme | 17756ea | 2020-11-11 14:09:47 +0000 | [diff] [blame] | 466 | ${tppathlines}= Replace String ${tp_path} / \n |
| 467 | ${onu}= Get Value Of Tp Path Element ${tppathlines} onu |
| 468 | ${onu_id}= Get From Dictionary ${value} onu_id |
| 469 | Should Be Equal As Integers ${onu} ${onu_id} |
| 470 | ... msg=Onu-Id (${onu_id}) does not match onu (${onu}) from tp_path in etcd data! |
| 471 | Should Be True ${onu_id}>=1 |
| 472 | |
| 473 | Validate Uni Id |
| 474 | [Documentation] This keyword validates UNI Id of passed etcd data. |
| 475 | [Arguments] ${value} |
Girish Gowdra | 295c169 | 2020-11-19 10:51:53 -0800 | [diff] [blame] | 476 | # TODO: The TP ID is hardcoded to 64 below. It is fine when testing single-tcont workflow. |
| 477 | # When testing multi-tcont this may need some adjustment. |
| 478 | ${tp_path}= Get From Dictionary ${value['uni_config'][0]['PersTpPathMap']} 64 |
TorstenThieme | 17756ea | 2020-11-11 14:09:47 +0000 | [diff] [blame] | 479 | ${tppathlines}= Replace String ${tp_path} / \n |
| 480 | ${uni}= Get Value Of Tp Path Element ${tppathlines} uni |
| 481 | ${uni_id}= Get From Dictionary ${value['uni_config'][0]} uni_id |
| 482 | Should Be Equal As Integers ${uni} ${uni_id} |
| 483 | ... 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] | 484 | |
TorstenThieme | 4507160 | 2021-03-16 12:14:37 +0000 | [diff] [blame] | 485 | Delete ONU Go Adapter ETCD Data |
| 486 | [Documentation] This keyword deletes openonu-go-adapter Data stored in etcd |
| 487 | [Arguments] ${defaultkvstoreprefix}=voltha_voltha ${validate}=False |
| 488 | ${namespace}= Set Variable default |
| 489 | ${podname}= Set Variable etcd |
| 490 | ${kvstoreprefix}= Get Kv Store Prefix ${defaultkvstoreprefix} |
| 491 | ${commandget}= Catenate |
| 492 | ... /bin/sh -c 'ETCDCTL_API=3 etcdctl del --prefix service/${kvstoreprefix}/openonu' |
| 493 | ${result}= Exec Pod In Kube ${namespace} ${podname} ${commandget} |
| 494 | log ${result} |
| 495 | Run Keyword If ${validate} Wait Until Keyword Succeeds ${timeout} 1s |
| 496 | ... Validate Onu Data In Etcd 0 without_pm_data=False |
| 497 | [Return] ${result} |
| 498 | |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 499 | Wait for Ports in ONOS for all OLTs |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 500 | [Documentation] Waits untill a certain number of ports are enabled in all OLTs |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 501 | [Arguments] ${host} ${port} ${count} ${filter} ${max_wait_time}=10m ${determine_number}=False |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 502 | FOR ${J} IN RANGE 0 ${num_olts} |
| 503 | ${olt_serial_number}= Set Variable ${list_olts}[${J}][sn] |
| 504 | ${onu_count}= Set Variable ${list_olts}[${J}][onucount] |
| 505 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS |
| 506 | ... ${olt_serial_number} |
| 507 | Set Global Variable ${of_id} |
TorstenThieme | ff9c914 | 2021-04-08 07:21:34 +0000 | [diff] [blame] | 508 | ${count2check}= Set Variable If ${count}==${num_all_onus} ${onu_count} ${count} |
| 509 | # if flag determine_number is set to True, always determine the number of real ONUs (overwrite previous value) |
| 510 | ${count2check}= Run Keyword If ${determine_number} Determine Number Of ONU ${olt_serial_number} |
| 511 | ... ELSE Set Variable ${count2check} |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 512 | 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] | 513 | END |
| 514 | |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 515 | Wait for all ONU Ports in ONOS Disabled |
| 516 | [Documentation] Waits untill a all ONU ports are disabled in all ONOS |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 517 | [Arguments] ${host} ${port} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 518 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 519 | ${src}= Set Variable ${hosts.src[${I}]} |
| 520 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS |
| 521 | ... ${src['olt']} |
| 522 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} ${of_id} |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 523 | 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] | 524 | ... ${onu_port} |
| 525 | END |
| 526 | |
TorstenThieme | fd7e7ba | 2020-11-06 13:57:57 +0000 | [diff] [blame] | 527 | Map State |
| 528 | [Documentation] This keyword converts the passed numeric value or name of a onu state to its state values. |
| 529 | [Arguments] ${state} |
| 530 | # create state lists with corresponding return values |
| 531 | # ADMIN-STATE OPER-STATUS CONNECT-STATUS ONU-STATE (number/name) |
| 532 | ${state1} Create List ENABLED ACTIVATING REACHABLE 1 activating-onu |
| 533 | ${state2} Create List ENABLED ACTIVATING REACHABLE 2 starting-openomci |
| 534 | ${state3} Create List ENABLED ACTIVATING REACHABLE 3 discovery-mibsync-complete |
| 535 | ${state4} Create List ENABLED ACTIVE REACHABLE 4 initial-mib-downloaded |
| 536 | ${state5} Create List ENABLED ACTIVE REACHABLE 5 tech-profile-config-download-success |
| 537 | ${state6} Create List ENABLED ACTIVE REACHABLE 6 omci-flows-pushed |
| 538 | ${state7} Create List DISABLED UNKNOWN REACHABLE 7 omci-admin-lock |
| 539 | ${state8} Create List ENABLED ACTIVE REACHABLE 8 onu-reenabled |
| 540 | ${state9} Create List ENABLED DISCOVERED UNREACHABLE 9 stopping-openomci |
| 541 | ${state10} Create List ENABLED DISCOVERED REACHABLE 10 rebooting |
| 542 | ${state11} Create List ENABLED DISCOVERED REACHABLE 11 omci-flows-deleted |
| 543 | ${state12} Create List DISABLED UNKNOWN REACHABLE 12 tech-profile-config-delete-success |
| 544 | ${admin_state} ${oper_status} ${connect_status} ${onu_state_nb} ${onu_state}= Set Variable If |
| 545 | ... '${state}'=='1' or '${state}'=='activating-onu' ${state1} |
| 546 | ... '${state}'=='2' or '${state}'=='starting-openomci' ${state2} |
| 547 | ... '${state}'=='3' or '${state}'=='discovery-mibsync-complete' ${state3} |
| 548 | ... '${state}'=='4' or '${state}'=='initial-mib-downloaded' ${state4} |
| 549 | ... '${state}'=='5' or '${state}'=='tech-profile-config-download-success' ${state5} |
| 550 | ... '${state}'=='6' or '${state}'=='omci-flows-pushed' ${state6} |
| 551 | ... '${state}'=='7' or '${state}'=='omci-admin-lock' ${state7} |
| 552 | ... '${state}'=='8' or '${state}'=='onu-reenabled' ${state8} |
| 553 | ... '${state}'=='9' or '${state}'=='stopping-openomci' ${state9} |
| 554 | ... '${state}'=='10' or '${state}'=='rebooting' ${state10} |
| 555 | ... '${state}'=='11' or '${state}'=='omci-flows-deleted' ${state11} |
| 556 | ... '${state}'=='12' or '${state}'=='tech-profile-config-delete-success' ${state12} |
| 557 | [Return] ${admin_state} ${oper_status} ${connect_status} ${onu_state_nb} ${onu_state} |