Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 1 | # Copyright 2017-present Open Networking Foundation |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 14 | # voltctl common functions |
| 15 | |
| 16 | *** Settings *** |
| 17 | Documentation Library for various utilities |
| 18 | Library SSHLibrary |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 19 | Library String |
| 20 | Library DateTime |
| 21 | Library Process |
| 22 | Library Collections |
| 23 | Library RequestsLibrary |
| 24 | Library OperatingSystem |
| 25 | |
| 26 | *** Keywords *** |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 27 | Test Empty Device List |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 28 | [Documentation] Verify that there are no devices in the system |
| 29 | ${rc} ${output}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl device list -o json |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 30 | Should Be Equal As Integers ${rc} 0 |
| 31 | ${jsondata}= To Json ${output} |
| 32 | Log ${jsondata} |
| 33 | ${length}= Get Length ${jsondata} |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 34 | Should Be Equal As Integers ${length} 0 |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 35 | |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 36 | Create Device |
| 37 | [Arguments] ${ip} ${port} |
You Wang | 2b55064 | 2019-10-07 14:39:48 -0700 | [diff] [blame] | 38 | [Documentation] Creates a device in VOLTHA |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 39 | #create/preprovision device |
Gilles Depatie | 675a206 | 2019-10-22 12:44:42 -0400 | [diff] [blame] | 40 | ${rc} ${device_id}= Run and Return Rc and Output |
| 41 | ... ${VOLTCTL_CONFIG}; voltctl device create -t openolt -H ${ip}:${port} |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 42 | Should Be Equal As Integers ${rc} 0 |
| 43 | [Return] ${device_id} |
| 44 | |
| 45 | Enable Device |
| 46 | [Arguments] ${device_id} |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 47 | [Documentation] Enables a device in VOLTHA |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 48 | ${rc} ${output}= Run and Return Rc and Output |
| 49 | ... ${VOLTCTL_CONFIG}; voltctl device enable ${device_id} |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 50 | Should Be Equal As Integers ${rc} 0 |
| 51 | |
Suchitra Vemuri | 6db8941 | 2019-11-14 14:52:54 -0800 | [diff] [blame] | 52 | Disable Device |
| 53 | [Arguments] ${device_id} |
| 54 | [Documentation] Enables a device in VOLTHA |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 55 | ${rc} ${output}= Run and Return Rc and Output |
| 56 | ... ${VOLTCTL_CONFIG}; voltctl device disable ${device_id} |
Suchitra Vemuri | 6db8941 | 2019-11-14 14:52:54 -0800 | [diff] [blame] | 57 | Should Be Equal As Integers ${rc} 0 |
| 58 | |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 59 | Disable Devices In Voltha |
| 60 | [Documentation] Disables all the known devices in voltha |
| 61 | [Arguments] ${filter} |
| 62 | ${arg}= Set Variable ${EMPTY} |
| 63 | ${arg}= Run Keyword If len('${filter}'.strip()) != 0 Set Variable --filter ${filter} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 64 | ${rc} ${devices}= Run and Return Rc and Output |
| 65 | ... ${VOLTCTL_CONFIG}; voltctl device list ${arg} --orderby Root -q | xargs echo -n |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 66 | Should Be Equal As Integers ${rc} 0 |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 67 | ${rc} ${output}= Run Keyword If len('${devices}') != 0 Run and Return Rc and Output |
| 68 | ... ${VOLTCTL_CONFIG}; voltctl device disable ${devices} |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 69 | Run Keyword If len('${devices}') != 0 Should Be Equal As Integers ${rc} 0 |
| 70 | |
| 71 | Test Devices Disabled In Voltha |
| 72 | [Documentation] Tests to verify that all devices in VOLTHA are disabled |
| 73 | [Arguments] ${filter} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 74 | ${rc} ${count}= Run and Return Rc and Output |
| 75 | ... ${VOLTCTL_CONFIG}; voltctl device list --filter '${filter},AdminState!=DISABLED' -q | wc -l |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 76 | Should Be Equal As Integers ${rc} 0 |
| 77 | Should Be Equal As Integers ${count} 0 |
| 78 | |
| 79 | Delete Devices In Voltha |
| 80 | [Documentation] Disables all the known devices in voltha |
| 81 | [Arguments] ${filter} |
| 82 | ${arg}= Set Variable ${EMPTY} |
| 83 | ${arg}= Run Keyword If len('${filter}'.strip()) != 0 Set Variable --filter ${filter} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 84 | ${rc} ${devices}= Run and Return Rc and Output |
| 85 | ... ${VOLTCTL_CONFIG}; voltctl device list ${arg} --orderby Root -q | xargs echo -n |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 86 | Should Be Equal As Integers ${rc} 0 |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 87 | ${rc} ${output}= Run Keyword If len('${devices}') != 0 Run and Return Rc and Output |
| 88 | ... ${VOLTCTL_CONFIG}; voltctl device delete ${devices} |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 89 | Run Keyword If len('${devices}') != 0 Should Be Equal As Integers ${rc} 0 |
| 90 | |
Suchitra Vemuri | 00d147d | 2019-09-13 13:07:32 -0700 | [diff] [blame] | 91 | Get Device Flows from Voltha |
| 92 | [Arguments] ${device_id} |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 93 | [Documentation] Gets device flows from VOLTHA |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 94 | ${rc} ${output}= Run and Return Rc and Output |
| 95 | ... ${VOLTCTL_CONFIG}; voltctl device flows ${device_id} |
Suchitra Vemuri | 00d147d | 2019-09-13 13:07:32 -0700 | [diff] [blame] | 96 | Should Be Equal As Integers ${rc} 0 |
| 97 | [Return] ${output} |
| 98 | |
| 99 | Get Logical Device Output from Voltha |
| 100 | [Arguments] ${device_id} |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 101 | [Documentation] Gets logicaldevice flows and ports from VOLTHA |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 102 | ${rc1} ${flows}= Run and Return Rc and Output |
| 103 | ... ${VOLTCTL_CONFIG}; voltctl logicaldevice flows ${device_id} |
| 104 | ${rc2} ${ports}= Run and Return Rc and Output |
| 105 | ... ${VOLTCTL_CONFIG}; voltctl logicaldevice ports ${device_id} |
Suchitra Vemuri | 00d147d | 2019-09-13 13:07:32 -0700 | [diff] [blame] | 106 | Log ${flows} |
| 107 | Log ${ports} |
| 108 | Should Be Equal As Integers ${rc1} 0 |
| 109 | Should Be Equal As Integers ${rc2} 0 |
| 110 | |
| 111 | Get Device Output from Voltha |
| 112 | [Arguments] ${device_id} |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 113 | [Documentation] Gets device flows and ports from VOLTHA |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 114 | ${rc1} ${flows}= Run and Return Rc and Output |
| 115 | ... ${VOLTCTL_CONFIG}; voltctl device flows ${device_id} |
| 116 | ${rc2} ${ports}= Run and Return Rc and Output |
| 117 | ... ${VOLTCTL_CONFIG}; voltctl device ports ${device_id} |
Suchitra Vemuri | 00d147d | 2019-09-13 13:07:32 -0700 | [diff] [blame] | 118 | Log ${flows} |
| 119 | Log ${ports} |
| 120 | Should Be Equal As Integers ${rc1} 0 |
| 121 | Should Be Equal As Integers ${rc2} 0 |
| 122 | |
Suchitra Vemuri | 1a970a6 | 2019-11-26 12:52:16 -0800 | [diff] [blame] | 123 | Get Device List from Voltha |
| 124 | [Documentation] Gets Device List Output from Voltha |
| 125 | ${rc1} ${devices}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl device list |
| 126 | Log ${devices} |
| 127 | Should Be Equal As Integers ${rc1} 0 |
| 128 | |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 129 | Validate Device |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 130 | [Documentation] |
| 131 | ... Parses the output of "voltctl device list" and inspects device ${serial_number} and ${device_id} |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 132 | ... Arguments are matched for device states of: "admin_state", "oper_status", and "connect_status" |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 133 | [Arguments] ${admin_state} ${oper_status} ${connect_status} ${serial_number}=${EMPTY} |
| 134 | ... ${device_id}=${EMPTY} ${onu_reason}=${EMPTY} ${onu}=False |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 135 | ${rc} ${output}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl device list -o json |
| 136 | Should Be Equal As Integers ${rc} 0 |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 137 | ${jsondata}= To Json ${output} |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 138 | ${length}= Get Length ${jsondata} |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 139 | FOR ${INDEX} IN RANGE 0 ${length} |
| 140 | ${value}= Get From List ${jsondata} ${INDEX} |
| 141 | ${astate}= Get From Dictionary ${value} adminstate |
| 142 | ${opstatus}= Get From Dictionary ${value} operstatus |
| 143 | ${cstatus}= Get From Dictionary ${value} connectstatus |
| 144 | ${sn}= Get From Dictionary ${value} serialnumber |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 145 | ${devId}= Get From Dictionary ${value} id |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 146 | ${mib_state}= Get From Dictionary ${value} reason |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 147 | Run Keyword If '${sn}' == '${serial_number}' or '${devId}' == '${device_id}' Exit For Loop |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 148 | END |
Matteo Scandolo | 5e10b28 | 2019-11-25 10:54:32 -0700 | [diff] [blame] | 149 | Log ${value} |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 150 | Should Be Equal '${astate}' '${admin_state}' Device ${serial_number} admin_state != ${admin_state} |
Gilles Depatie | 675a206 | 2019-10-22 12:44:42 -0400 | [diff] [blame] | 151 | ... values=False |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 152 | Should Be Equal '${opstatus}' '${oper_status}' Device ${serial_number} oper_status != ${oper_status} |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 153 | ... values=False |
| 154 | Should Be Equal '${cstatus}' '${connect_status}' Device ${serial_number} conn_status != ${connect_status} |
| 155 | ... values=False |
| 156 | Run Keyword If '${onu}' == 'True' Should Be Equal '${mib_state}' '${onu_reason}' |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 157 | ... Device ${serial_number} mib_state incorrect (${mib_state}) values=False |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 158 | |
| 159 | Validate OLT Device |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 160 | [Arguments] ${admin_state} ${oper_status} ${connect_status} ${serial_number}=${EMPTY} |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 161 | ... ${device_id}=${EMPTY} |
| 162 | [Documentation] Parses the output of "voltctl device list" and inspects device ${serial_number} and/or |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 163 | ... ${device_id} Match on OLT Serial number or Device Id and inspect states |
| 164 | Validate Device ${admin_state} ${oper_status} ${connect_status} ${serial_number} ${device_id} |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 165 | |
| 166 | Validate ONU Devices |
| 167 | [Arguments] ${admin_state} ${oper_status} ${connect_status} ${List_ONU_Serial} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 168 | [Documentation] Parses the output of "voltctl device list" and inspects device ${List_ONU_Serial} |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 169 | ... Iteratively match on each Serial number contained in ${List_ONU_Serial} and inspect |
| 170 | ... states including MIB state |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 171 | FOR ${serial_number} IN @{List_ONU_Serial} |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 172 | Validate Device ${admin_state} ${oper_status} ${connect_status} ${serial_number} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 173 | ... onu_reason=omci-flows-pushed onu=True |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 174 | END |
| 175 | |
| 176 | Validate Device Port Types |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 177 | [Documentation] |
| 178 | ... Parses the output of voltctl device ports <device_id> and matches the port types listed |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 179 | [Arguments] ${device_id} ${pon_type} ${ethernet_type} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 180 | ${rc} ${output}= Run and Return Rc and Output |
| 181 | ... ${VOLTCTL_CONFIG}; voltctl device ports ${device_id} -o json |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 182 | Should Be Equal As Integers ${rc} 0 |
| 183 | ${jsondata}= To Json ${output} |
| 184 | Log ${jsondata} |
| 185 | ${length}= Get Length ${jsondata} |
| 186 | FOR ${INDEX} IN RANGE 0 ${length} |
| 187 | ${value}= Get From List ${jsondata} ${INDEX} |
| 188 | ${astate}= Get From Dictionary ${value} adminstate |
| 189 | ${opstatus}= Get From Dictionary ${value} operstatus |
| 190 | ${type}= Get From Dictionary ${value} type |
Andy Bavier | 7fe983e | 2020-01-21 10:45:02 -0700 | [diff] [blame] | 191 | #Should Be Equal '${astate}' 'ENABLED' Device ${device_id} port admin_state != ENABLED values=False |
| 192 | #Should Be Equal '${opstatus}' 'ACTIVE' Device ${device_id} port oper_status != ACTIVE values=False |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 193 | Should Be True '${type}' == '${pon_type}' or '${type}' == '${ethernet_type}' |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 194 | ... Device ${device_id} port type is neither ${pon_type} or ${ethernet_type} |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 195 | END |
| 196 | |
| 197 | Validate OLT Port Types |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 198 | [Documentation] Parses the output of voltctl device ports ${olt_device_id} and matches the port types listed |
| 199 | [Arguments] ${pon_type} ${ethernet_type} |
| 200 | Validate Device Port Types ${olt_device_id} ${pon_type} ${ethernet_type} |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 201 | |
| 202 | Validate ONU Port Types |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 203 | [Arguments] ${List_ONU_Serial} ${pon_type} ${ethernet_type} |
| 204 | [Documentation] Parses the output of voltctl device ports for each ONU SN listed in ${List_ONU_Serial} |
| 205 | ... and matches the port types listed |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 206 | FOR ${serial_number} IN @{List_ONU_Serial} |
| 207 | ${onu_dev_id}= Get Device ID From SN ${serial_number} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 208 | Validate Device Port Types ${onu_dev_id} ${pon_type} ${ethernet_type} |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 209 | END |
| 210 | |
| 211 | Validate Device Flows |
| 212 | [Arguments] ${device_id} ${test}=${EMPTY} |
| 213 | [Documentation] Parses the output of voltctl device flows <device_id> and expects flow count > 0 |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 214 | ${rc} ${output}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl device flows ${device_id} -o json |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 215 | Should Be Equal As Integers ${rc} 0 |
| 216 | ${jsondata}= To Json ${output} |
| 217 | Log ${jsondata} |
| 218 | ${length}= Get Length ${jsondata} |
| 219 | Log 'Number of flows = ' ${length} |
| 220 | Run Keyword If '${test}' == '${EMPTY}' Should Be True ${length} > 0 |
| 221 | ... Number of flows for ${device_id} was 0 |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 222 | ... ELSE Should Be True ${length} == ${test} |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 223 | ... Number of flows for ${device_id} was not ${test} |
| 224 | |
| 225 | Validate OLT Flows |
| 226 | [Documentation] Parses the output of voltctl device flows ${olt_device_id} and expects flow count > 0 |
| 227 | Validate Device Flows ${olt_device_id} |
| 228 | |
| 229 | Validate ONU Flows |
| 230 | [Arguments] ${List_ONU_Serial} ${test} |
| 231 | [Documentation] Parses the output of voltctl device flows for each ONU SN listed in ${List_ONU_Serial} |
| 232 | ... and expects flow count == 0 |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 233 | FOR ${serial_number} IN @{List_ONU_Serial} |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 234 | ${onu_dev_id}= Get Device ID From SN ${serial_number} |
| 235 | Validate Device Flows ${onu_dev_id} ${test} |
| 236 | END |
| 237 | |
| 238 | Validate Logical Device |
| 239 | [Documentation] Validate Logical Device is listed |
| 240 | ${rc} ${output}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl logicaldevice list -o json |
| 241 | Should Be Equal As Integers ${rc} 0 |
| 242 | ${jsondata}= To Json ${output} |
| 243 | Log ${jsondata} |
| 244 | ${length}= Get Length ${jsondata} |
| 245 | FOR ${INDEX} IN RANGE 0 ${length} |
| 246 | ${value}= Get From List ${jsondata} ${INDEX} |
| 247 | ${devid}= Get From Dictionary ${value} id |
| 248 | ${rootdev}= Get From Dictionary ${value} rootdeviceid |
| 249 | ${sn}= Get From Dictionary ${value} serialnumber |
| 250 | Exit For Loop |
| 251 | END |
| 252 | Should Be Equal '${rootdev}' '${olt_device_id}' Root Device does not match ${olt_device_id} values=False |
| 253 | Should Be Equal '${sn}' '${BBSIM_OLT_SN}' Logical Device ${sn} does not match ${BBSIM_OLT_SN} |
| 254 | ... values=False |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 255 | [Return] ${devid} |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 256 | |
| 257 | Validate Logical Device Ports |
| 258 | [Arguments] ${logical_device_id} |
| 259 | [Documentation] Validate Logical Device Ports are listed and are > 0 |
| 260 | ${rc} ${output}= Run and Return Rc and Output |
| 261 | ... ${VOLTCTL_CONFIG}; voltctl logicaldevice ports ${logical_device_id} -o json |
| 262 | Should Be Equal As Integers ${rc} 0 |
| 263 | ${jsondata}= To Json ${output} |
| 264 | Log ${jsondata} |
| 265 | ${length}= Get Length ${jsondata} |
| 266 | Should Be True ${length} > 0 Number of ports for ${logical_device_id} was 0 |
| 267 | |
| 268 | Validate Logical Device Flows |
| 269 | [Arguments] ${logical_device_id} |
| 270 | [Documentation] Validate Logical Device Flows are listed and are > 0 |
| 271 | ${rc} ${output}= Run and Return Rc and Output |
| 272 | ... ${VOLTCTL_CONFIG}; voltctl logicaldevice flows ${logical_device_id} -o json |
| 273 | Should Be Equal As Integers ${rc} 0 |
| 274 | ${jsondata}= To Json ${output} |
| 275 | Log ${jsondata} |
| 276 | ${length}= Get Length ${jsondata} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 277 | Should Be True ${length} > 0 Number of flows for ${logical_device_id} was 0 |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 278 | |
| 279 | Retrieve Peer List From OLT |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 280 | [Arguments] ${olt_peer_list} |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 281 | [Documentation] Retrieve the list of peer device id list from port list |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 282 | ${rc} ${output}= Run and Return Rc and Output |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 283 | ... ${VOLTCTL_CONFIG}; voltctl device ports ${olt_device_id} -o json |
| 284 | Should Be Equal As Integers ${rc} 0 |
| 285 | ${jsondata}= To Json ${output} |
| 286 | Log ${jsondata} |
| 287 | ${length}= Get Length ${jsondata} |
| 288 | FOR ${INDEX} IN RANGE 0 ${length} |
| 289 | ${value}= Get From List ${jsondata} ${INDEX} |
| 290 | ${type}= Get From Dictionary ${value} type |
| 291 | ${peers}= Get From Dictionary ${value} peers |
| 292 | Run Keyword If '${type}' == 'PON_OLT' Exit For Loop |
| 293 | END |
| 294 | ${length}= Get Length ${peers} |
| 295 | FOR ${INDEX} IN RANGE 0 ${length} |
| 296 | ${value}= Get From List ${peers} ${INDEX} |
| 297 | ${peer_id}= Get From Dictionary ${value} deviceid |
| 298 | Append To List ${olt_peer_list} ${peer_id} |
| 299 | END |
| 300 | |
| 301 | Validate OLT Peer Id List |
| 302 | [Arguments] ${olt_peer_id_list} |
| 303 | [Documentation] Match each entry in the ${olt_peer_id_list} against ONU device ids. |
| 304 | FOR ${peer_id} IN @{olt_peer_id_list} |
| 305 | Match OLT Peer Id ${peer_id} |
| 306 | END |
| 307 | |
| 308 | Match OLT Peer Id |
| 309 | [Arguments] ${olt_peer_id} |
| 310 | [Documentation] Lookup the OLT Peer Id in against the list of ONU device Ids |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 311 | ${rc} ${output}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl device list -o json |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 312 | Should Be Equal As Integers ${rc} 0 |
| 313 | ${jsondata}= To Json ${output} |
| 314 | Log ${jsondata} |
| 315 | ${length}= Get Length ${jsondata} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 316 | FOR ${INDEX} IN RANGE 0 ${length} |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 317 | ${value}= Get From List ${jsondata} ${INDEX} |
| 318 | ${devid}= Get From Dictionary ${value} id |
| 319 | Run Keyword If '${devid}' == '${olt_peer_id}' Exit For Loop |
| 320 | Run Keyword If '${INDEX}' == '${length}' Fail Peer id ${olt_peer_id} does not match any ONU device id; |
| 321 | END |
| 322 | |
| 323 | Validate ONU Peer Id |
| 324 | [Arguments] ${olt_device_id} ${List_ONU_Serial} |
| 325 | [Documentation] Match each ONU peer to that of the OLT device id |
| 326 | FOR ${onu_serial} IN @{List_ONU_Serial} |
| 327 | ${onu_dev_id}= Get Device ID From SN ${onu_serial} |
| 328 | Match ONU Peer Id ${onu_dev_id} |
| 329 | END |
| 330 | |
| 331 | Match ONU Peer Id |
| 332 | [Arguments] ${onu_dev_id} |
| 333 | [Documentation] Match an ONU peer to that of the OLT device id |
| 334 | ${rc} ${output}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl device ports ${onu_dev_id} -o json |
| 335 | Should Be Equal As Integers ${rc} 0 |
| 336 | ${jsondata}= To Json ${output} |
| 337 | Log ${jsondata} |
| 338 | ${length}= Get Length ${jsondata} |
| 339 | FOR ${INDEX} IN RANGE 0 ${length} |
| 340 | ${value}= Get From List ${jsondata} ${INDEX} |
| 341 | ${type}= Get From Dictionary ${value} type |
| 342 | ${peers}= Get From Dictionary ${value} peers |
| 343 | Run Keyword If '${type}' == 'PON_ONU' Exit For Loop |
| 344 | END |
| 345 | ${length}= Get Length ${peers} |
| 346 | FOR ${INDEX} IN RANGE 0 ${length} |
| 347 | ${value}= Get From List ${peers} ${INDEX} |
| 348 | ${peer_id}= Get From Dictionary ${value} deviceid |
| 349 | END |
| 350 | Should Be Equal '${peer_id}' '${olt_device_id}' |
| 351 | ... Mismatch between ONU peer ${peer_id} and OLT device id ${olt_device_id} values=False |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 352 | |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 353 | Get Device ID From SN |
| 354 | [Arguments] ${serial_number} |
| 355 | [Documentation] Gets the device id by matching for ${serial_number} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 356 | ${rc} ${id}= Run and Return Rc and Output |
Andy Bavier | 8fca045 | 2019-12-16 15:30:11 -0700 | [diff] [blame] | 357 | ... ${VOLTCTL_CONFIG}; voltctl device list --filter=SerialNumber=${serial_number} --format='{{.Id}}' |
| 358 | Should Be Equal As Integers ${rc} 0 |
| 359 | Log ${id} |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 360 | [Return] ${id} |
| 361 | |
Suchitra Vemuri | 00d147d | 2019-09-13 13:07:32 -0700 | [diff] [blame] | 362 | Get Logical Device ID From SN |
| 363 | [Arguments] ${serial_number} |
| 364 | [Documentation] Gets the device id by matching for ${serial_number} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 365 | ${rc} ${id}= Run and Return Rc and Output |
Andy Bavier | 8fca045 | 2019-12-16 15:30:11 -0700 | [diff] [blame] | 366 | ... ${VOLTCTL_CONFIG}; voltctl logicaldevice list --filter=SerialNumber=${serial_number} --format='{{.Id}}' |
| 367 | Should Be Equal As Integers ${rc} 0 |
| 368 | Log ${id} |
Suchitra Vemuri | 00d147d | 2019-09-13 13:07:32 -0700 | [diff] [blame] | 369 | [Return] ${id} |
| 370 | |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 371 | Build ONU SN List |
| 372 | [Arguments] ${serial_numbers} |
| 373 | [Documentation] Appends all ONU SNs to the ${serial_numbers} list |
| 374 | FOR ${INDEX} IN RANGE 0 ${num_onus} |
| 375 | Append To List ${serial_numbers} ${hosts.src[${INDEX}].onu} |
| 376 | END |
| 377 | |
| 378 | Get SN From Device ID |
| 379 | [Arguments] ${device_id} |
| 380 | [Documentation] Gets the device id by matching for ${device_id} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 381 | ${rc} ${sn}= Run and Return Rc and Output |
Andy Bavier | 8fca045 | 2019-12-16 15:30:11 -0700 | [diff] [blame] | 382 | ... ${VOLTCTL_CONFIG}; voltctl device list --filter=Id=${device_id} --format='{{.SerialNumber}}' |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 383 | Should Be Equal As Integers ${rc} 0 |
Andy Bavier | 8fca045 | 2019-12-16 15:30:11 -0700 | [diff] [blame] | 384 | Log ${sn} |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 385 | [Return] ${sn} |
| 386 | |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 387 | Validate Device Removed |
| 388 | [Arguments] ${id} |
| 389 | [Documentation] Verifys that device, ${serial_number}, has been removed |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 390 | ${rc} ${output}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl device list -o json |
Andy Bavier | 8fca045 | 2019-12-16 15:30:11 -0700 | [diff] [blame] | 391 | Should Be Equal As Integers ${rc} 0 |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 392 | ${jsondata}= To Json ${output} |
| 393 | Log ${jsondata} |
| 394 | ${length}= Get Length ${jsondata} |
| 395 | @{ids}= Create List |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 396 | FOR ${INDEX} IN RANGE 0 ${length} |
| 397 | ${value}= Get From List ${jsondata} ${INDEX} |
| 398 | ${device_id}= Get From Dictionary ${value} id |
| 399 | Append To List ${ids} ${device_id} |
| 400 | END |
Suchitra Vemuri | 00d147d | 2019-09-13 13:07:32 -0700 | [diff] [blame] | 401 | List Should Not Contain Value ${ids} ${id} |