blob: 2d5fbf7e9af402f3e690993e2d941aa638e8df67 [file] [log] [blame]
Kailash6f5acb62019-08-28 14:38:45 -07001# 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.
Kailash6f5acb62019-08-28 14:38:45 -070014# voltctl common functions
15
16*** Settings ***
17Documentation Library for various utilities
18Library SSHLibrary
Kailash6f5acb62019-08-28 14:38:45 -070019Library String
20Library DateTime
21Library Process
22Library Collections
23Library RequestsLibrary
24Library OperatingSystem
25
26*** Keywords ***
Gilles Depatieb5682f82019-10-31 10:39:45 -040027Test Empty Device List
Zack Williamsa8fe75a2020-01-10 14:25:27 -070028 [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 Depatieb5682f82019-10-31 10:39:45 -040030 Should Be Equal As Integers ${rc} 0
31 ${jsondata}= To Json ${output}
32 Log ${jsondata}
33 ${length}= Get Length ${jsondata}
David Bainbridgef81cd642019-11-20 00:14:47 +000034 Should Be Equal As Integers ${length} 0
Gilles Depatieb5682f82019-10-31 10:39:45 -040035
Kailash6f5acb62019-08-28 14:38:45 -070036Create Device
37 [Arguments] ${ip} ${port}
You Wang2b550642019-10-07 14:39:48 -070038 [Documentation] Creates a device in VOLTHA
Kailash6f5acb62019-08-28 14:38:45 -070039 #create/preprovision device
Gilles Depatie675a2062019-10-22 12:44:42 -040040 ${rc} ${device_id}= Run and Return Rc and Output
41 ... ${VOLTCTL_CONFIG}; voltctl device create -t openolt -H ${ip}:${port}
Kailash6f5acb62019-08-28 14:38:45 -070042 Should Be Equal As Integers ${rc} 0
43 [Return] ${device_id}
44
45Enable Device
46 [Arguments] ${device_id}
Zack Williamsec53a1b2019-09-16 15:50:52 -070047 [Documentation] Enables a device in VOLTHA
Zack Williamsa8fe75a2020-01-10 14:25:27 -070048 ${rc} ${output}= Run and Return Rc and Output
49 ... ${VOLTCTL_CONFIG}; voltctl device enable ${device_id}
Kailash6f5acb62019-08-28 14:38:45 -070050 Should Be Equal As Integers ${rc} 0
51
Suchitra Vemuri6db89412019-11-14 14:52:54 -080052Disable Device
53 [Arguments] ${device_id}
54 [Documentation] Enables a device in VOLTHA
Zack Williamsa8fe75a2020-01-10 14:25:27 -070055 ${rc} ${output}= Run and Return Rc and Output
56 ... ${VOLTCTL_CONFIG}; voltctl device disable ${device_id}
Suchitra Vemuri6db89412019-11-14 14:52:54 -080057 Should Be Equal As Integers ${rc} 0
58
David Bainbridgef81cd642019-11-20 00:14:47 +000059Disable 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 Williamsa8fe75a2020-01-10 14:25:27 -070064 ${rc} ${devices}= Run and Return Rc and Output
65 ... ${VOLTCTL_CONFIG}; voltctl device list ${arg} --orderby Root -q | xargs echo -n
David Bainbridgef81cd642019-11-20 00:14:47 +000066 Should Be Equal As Integers ${rc} 0
Zack Williamsa8fe75a2020-01-10 14:25:27 -070067 ${rc} ${output}= Run Keyword If len('${devices}') != 0 Run and Return Rc and Output
68 ... ${VOLTCTL_CONFIG}; voltctl device disable ${devices}
David Bainbridgef81cd642019-11-20 00:14:47 +000069 Run Keyword If len('${devices}') != 0 Should Be Equal As Integers ${rc} 0
70
71Test Devices Disabled In Voltha
72 [Documentation] Tests to verify that all devices in VOLTHA are disabled
73 [Arguments] ${filter}
Zack Williamsa8fe75a2020-01-10 14:25:27 -070074 ${rc} ${count}= Run and Return Rc and Output
75 ... ${VOLTCTL_CONFIG}; voltctl device list --filter '${filter},AdminState!=DISABLED' -q | wc -l
David Bainbridgef81cd642019-11-20 00:14:47 +000076 Should Be Equal As Integers ${rc} 0
77 Should Be Equal As Integers ${count} 0
78
79Delete 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 Williamsa8fe75a2020-01-10 14:25:27 -070084 ${rc} ${devices}= Run and Return Rc and Output
85 ... ${VOLTCTL_CONFIG}; voltctl device list ${arg} --orderby Root -q | xargs echo -n
David Bainbridgef81cd642019-11-20 00:14:47 +000086 Should Be Equal As Integers ${rc} 0
Zack Williamsa8fe75a2020-01-10 14:25:27 -070087 ${rc} ${output}= Run Keyword If len('${devices}') != 0 Run and Return Rc and Output
88 ... ${VOLTCTL_CONFIG}; voltctl device delete ${devices}
David Bainbridgef81cd642019-11-20 00:14:47 +000089 Run Keyword If len('${devices}') != 0 Should Be Equal As Integers ${rc} 0
90
Suchitra Vemuri00d147d2019-09-13 13:07:32 -070091Get Device Flows from Voltha
92 [Arguments] ${device_id}
Zack Williamsec53a1b2019-09-16 15:50:52 -070093 [Documentation] Gets device flows from VOLTHA
Zack Williamsa8fe75a2020-01-10 14:25:27 -070094 ${rc} ${output}= Run and Return Rc and Output
95 ... ${VOLTCTL_CONFIG}; voltctl device flows ${device_id}
Suchitra Vemuri00d147d2019-09-13 13:07:32 -070096 Should Be Equal As Integers ${rc} 0
97 [Return] ${output}
98
99Get Logical Device Output from Voltha
100 [Arguments] ${device_id}
Zack Williamsec53a1b2019-09-16 15:50:52 -0700101 [Documentation] Gets logicaldevice flows and ports from VOLTHA
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700102 ${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
David K. Bainbridgebd5ebd22020-02-04 10:01:18 -0800105 ... ${VOLTCTL_CONFIG}; voltctl logicaldevice port list ${device_id}
Suchitra Vemuri00d147d2019-09-13 13:07:32 -0700106 Log ${flows}
107 Log ${ports}
108 Should Be Equal As Integers ${rc1} 0
109 Should Be Equal As Integers ${rc2} 0
110
111Get Device Output from Voltha
112 [Arguments] ${device_id}
Zack Williamsec53a1b2019-09-16 15:50:52 -0700113 [Documentation] Gets device flows and ports from VOLTHA
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700114 ${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
David K. Bainbridgebd5ebd22020-02-04 10:01:18 -0800117 ... ${VOLTCTL_CONFIG}; voltctl device port list ${device_id}
Suchitra Vemuri00d147d2019-09-13 13:07:32 -0700118 Log ${flows}
119 Log ${ports}
120 Should Be Equal As Integers ${rc1} 0
121 Should Be Equal As Integers ${rc2} 0
122
Suchitra Vemuri1a970a62019-11-26 12:52:16 -0800123Get 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
Kailash6f5acb62019-08-28 14:38:45 -0700129Validate Device
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700130 [Documentation]
ubuntu6b6e7d42020-03-02 12:35:42 -0800131 ... Parses the output of "voltctl device list" and inspects a device ${id}, specified as either
132 ... the serial number or device ID. Arguments are matched for device states of: "admin_state",
133 ... "oper_status", and "connect_status"
134 [Arguments] ${admin_state} ${oper_status} ${connect_status}
135 ... ${id}=${EMPTY} ${onu_reason}=${EMPTY} ${onu}=False
Gilles Depatieb5682f82019-10-31 10:39:45 -0400136 ${rc} ${output}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl device list -o json
137 Should Be Equal As Integers ${rc} 0
Kailash6f5acb62019-08-28 14:38:45 -0700138 ${jsondata}= To Json ${output}
Kailash6f5acb62019-08-28 14:38:45 -0700139 ${length}= Get Length ${jsondata}
ubuntu6b6e7d42020-03-02 12:35:42 -0800140 ${matched}= Set Variable False
Zack Williamsec53a1b2019-09-16 15:50:52 -0700141 FOR ${INDEX} IN RANGE 0 ${length}
142 ${value}= Get From List ${jsondata} ${INDEX}
143 ${astate}= Get From Dictionary ${value} adminstate
144 ${opstatus}= Get From Dictionary ${value} operstatus
145 ${cstatus}= Get From Dictionary ${value} connectstatus
146 ${sn}= Get From Dictionary ${value} serialnumber
Gilles Depatieb5682f82019-10-31 10:39:45 -0400147 ${devId}= Get From Dictionary ${value} id
Zack Williamsec53a1b2019-09-16 15:50:52 -0700148 ${mib_state}= Get From Dictionary ${value} reason
ubuntu6b6e7d42020-03-02 12:35:42 -0800149 ${matched}= Set Variable If '${sn}' == '${id}' or '${devId}' == '${id}' True False
150 Run Keyword If ${matched} Exit For Loop
Zack Williamsec53a1b2019-09-16 15:50:52 -0700151 END
ubuntu6b6e7d42020-03-02 12:35:42 -0800152 Should Be True ${matched}
153 ... No match found for ${id} to validate device
Matteo Scandolo5e10b282019-11-25 10:54:32 -0700154 Log ${value}
ubuntu6b6e7d42020-03-02 12:35:42 -0800155 Should Be Equal '${astate}' '${admin_state}' Device ${sn} admin_state != ${admin_state}
Gilles Depatie675a2062019-10-22 12:44:42 -0400156 ... values=False
ubuntu6b6e7d42020-03-02 12:35:42 -0800157 Should Be Equal '${opstatus}' '${oper_status}' Device ${sn} oper_status != ${oper_status}
Gilles Depatieb5682f82019-10-31 10:39:45 -0400158 ... values=False
ubuntu6b6e7d42020-03-02 12:35:42 -0800159 Should Be Equal '${cstatus}' '${connect_status}' Device ${sn} conn_status != ${connect_status}
Gilles Depatieb5682f82019-10-31 10:39:45 -0400160 ... values=False
161 Run Keyword If '${onu}' == 'True' Should Be Equal '${mib_state}' '${onu_reason}'
ubuntu6b6e7d42020-03-02 12:35:42 -0800162 ... Device ${sn} mib_state incorrect (${mib_state}) values=False
Gilles Depatieb5682f82019-10-31 10:39:45 -0400163
164Validate OLT Device
ubuntu6b6e7d42020-03-02 12:35:42 -0800165 [Arguments] ${admin_state} ${oper_status} ${connect_status} ${id}=${EMPTY}
166 [Documentation] Parses the output of "voltctl device list" and inspects device ${id}, specified
167 ... as either its serial numbner or device ID. Match on OLT Serial number or Device Id and inspect states
168 Validate Device ${admin_state} ${oper_status} ${connect_status} ${id}
Gilles Depatieb5682f82019-10-31 10:39:45 -0400169
170Validate ONU Devices
171 [Arguments] ${admin_state} ${oper_status} ${connect_status} ${List_ONU_Serial}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700172 [Documentation] Parses the output of "voltctl device list" and inspects device ${List_ONU_Serial}
Gilles Depatieb5682f82019-10-31 10:39:45 -0400173 ... Iteratively match on each Serial number contained in ${List_ONU_Serial} and inspect
174 ... states including MIB state
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700175 FOR ${serial_number} IN @{List_ONU_Serial}
Gilles Depatieb5682f82019-10-31 10:39:45 -0400176 Validate Device ${admin_state} ${oper_status} ${connect_status} ${serial_number}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700177 ... onu_reason=omci-flows-pushed onu=True
Gilles Depatieb5682f82019-10-31 10:39:45 -0400178 END
179
180Validate Device Port Types
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700181 [Documentation]
David K. Bainbridgebd5ebd22020-02-04 10:01:18 -0800182 ... Parses the output of voltctl device port list <device_id> and matches the port types listed
Gilles Depatieb5682f82019-10-31 10:39:45 -0400183 [Arguments] ${device_id} ${pon_type} ${ethernet_type}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700184 ${rc} ${output}= Run and Return Rc and Output
David K. Bainbridgebd5ebd22020-02-04 10:01:18 -0800185 ... ${VOLTCTL_CONFIG}; voltctl device port list ${device_id} -o json
Gilles Depatieb5682f82019-10-31 10:39:45 -0400186 Should Be Equal As Integers ${rc} 0
187 ${jsondata}= To Json ${output}
188 Log ${jsondata}
189 ${length}= Get Length ${jsondata}
190 FOR ${INDEX} IN RANGE 0 ${length}
191 ${value}= Get From List ${jsondata} ${INDEX}
192 ${astate}= Get From Dictionary ${value} adminstate
193 ${opstatus}= Get From Dictionary ${value} operstatus
194 ${type}= Get From Dictionary ${value} type
Andy Bavier7fe983e2020-01-21 10:45:02 -0700195 #Should Be Equal '${astate}' 'ENABLED' Device ${device_id} port admin_state != ENABLED values=False
196 #Should Be Equal '${opstatus}' 'ACTIVE' Device ${device_id} port oper_status != ACTIVE values=False
Gilles Depatieb5682f82019-10-31 10:39:45 -0400197 Should Be True '${type}' == '${pon_type}' or '${type}' == '${ethernet_type}'
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700198 ... Device ${device_id} port type is neither ${pon_type} or ${ethernet_type}
Gilles Depatieb5682f82019-10-31 10:39:45 -0400199 END
200
201Validate OLT Port Types
David K. Bainbridgebd5ebd22020-02-04 10:01:18 -0800202 [Documentation] Parses the output of voltctl device port list ${olt_device_id} and matches the port types listed
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700203 [Arguments] ${pon_type} ${ethernet_type}
204 Validate Device Port Types ${olt_device_id} ${pon_type} ${ethernet_type}
Gilles Depatieb5682f82019-10-31 10:39:45 -0400205
206Validate ONU Port Types
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700207 [Arguments] ${List_ONU_Serial} ${pon_type} ${ethernet_type}
David K. Bainbridgebd5ebd22020-02-04 10:01:18 -0800208 [Documentation] Parses the output of voltctl device port list for each ONU SN listed in ${List_ONU_Serial}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700209 ... and matches the port types listed
Gilles Depatieb5682f82019-10-31 10:39:45 -0400210 FOR ${serial_number} IN @{List_ONU_Serial}
211 ${onu_dev_id}= Get Device ID From SN ${serial_number}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700212 Validate Device Port Types ${onu_dev_id} ${pon_type} ${ethernet_type}
Gilles Depatieb5682f82019-10-31 10:39:45 -0400213 END
214
215Validate Device Flows
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000216 [Arguments] ${device_id} ${flow_count}=${EMPTY}
Gilles Depatieb5682f82019-10-31 10:39:45 -0400217 [Documentation] Parses the output of voltctl device flows <device_id> and expects flow count > 0
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700218 ${rc} ${output}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl device flows ${device_id} -o json
Gilles Depatieb5682f82019-10-31 10:39:45 -0400219 Should Be Equal As Integers ${rc} 0
220 ${jsondata}= To Json ${output}
221 Log ${jsondata}
222 ${length}= Get Length ${jsondata}
223 Log 'Number of flows = ' ${length}
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000224 Run Keyword If '${flow_count}' == '${EMPTY}' Should Be True ${length} > 0
Gilles Depatieb5682f82019-10-31 10:39:45 -0400225 ... Number of flows for ${device_id} was 0
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000226 ... ELSE Should Be True ${length} == ${flow_count}
227 ... Number of flows for ${device_id} was not ${flow_count}
Gilles Depatieb5682f82019-10-31 10:39:45 -0400228
229Validate OLT Flows
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000230 [Arguments] ${flow_count}=${EMPTY}
231 [Documentation] Parses the output of voltctl device flows ${olt_device_id}
232 ... and expects flow count == ${flow_count}
233 Validate Device Flows ${olt_device_id} ${flow_count}
Gilles Depatieb5682f82019-10-31 10:39:45 -0400234
235Validate ONU Flows
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000236 [Arguments] ${List_ONU_Serial} ${flow_count}=${EMPTY}
Gilles Depatieb5682f82019-10-31 10:39:45 -0400237 [Documentation] Parses the output of voltctl device flows for each ONU SN listed in ${List_ONU_Serial}
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000238 ... and expects flow count == ${flow_count}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700239 FOR ${serial_number} IN @{List_ONU_Serial}
Gilles Depatieb5682f82019-10-31 10:39:45 -0400240 ${onu_dev_id}= Get Device ID From SN ${serial_number}
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000241 Validate Device Flows ${onu_dev_id} ${flow_count}
Gilles Depatieb5682f82019-10-31 10:39:45 -0400242 END
243
244Validate Logical Device
245 [Documentation] Validate Logical Device is listed
246 ${rc} ${output}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl logicaldevice list -o json
247 Should Be Equal As Integers ${rc} 0
248 ${jsondata}= To Json ${output}
249 Log ${jsondata}
250 ${length}= Get Length ${jsondata}
251 FOR ${INDEX} IN RANGE 0 ${length}
252 ${value}= Get From List ${jsondata} ${INDEX}
253 ${devid}= Get From Dictionary ${value} id
254 ${rootdev}= Get From Dictionary ${value} rootdeviceid
255 ${sn}= Get From Dictionary ${value} serialnumber
256 Exit For Loop
257 END
258 Should Be Equal '${rootdev}' '${olt_device_id}' Root Device does not match ${olt_device_id} values=False
259 Should Be Equal '${sn}' '${BBSIM_OLT_SN}' Logical Device ${sn} does not match ${BBSIM_OLT_SN}
260 ... values=False
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700261 [Return] ${devid}
Gilles Depatieb5682f82019-10-31 10:39:45 -0400262
263Validate Logical Device Ports
264 [Arguments] ${logical_device_id}
265 [Documentation] Validate Logical Device Ports are listed and are > 0
266 ${rc} ${output}= Run and Return Rc and Output
David K. Bainbridgebd5ebd22020-02-04 10:01:18 -0800267 ... ${VOLTCTL_CONFIG}; voltctl logicaldevice port list ${logical_device_id} -o json
Gilles Depatieb5682f82019-10-31 10:39:45 -0400268 Should Be Equal As Integers ${rc} 0
269 ${jsondata}= To Json ${output}
270 Log ${jsondata}
271 ${length}= Get Length ${jsondata}
272 Should Be True ${length} > 0 Number of ports for ${logical_device_id} was 0
273
274Validate Logical Device Flows
275 [Arguments] ${logical_device_id}
276 [Documentation] Validate Logical Device Flows are listed and are > 0
277 ${rc} ${output}= Run and Return Rc and Output
278 ... ${VOLTCTL_CONFIG}; voltctl logicaldevice flows ${logical_device_id} -o json
279 Should Be Equal As Integers ${rc} 0
280 ${jsondata}= To Json ${output}
281 Log ${jsondata}
282 ${length}= Get Length ${jsondata}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700283 Should Be True ${length} > 0 Number of flows for ${logical_device_id} was 0
Gilles Depatieb5682f82019-10-31 10:39:45 -0400284
285Retrieve Peer List From OLT
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700286 [Arguments] ${olt_peer_list}
Gilles Depatieb5682f82019-10-31 10:39:45 -0400287 [Documentation] Retrieve the list of peer device id list from port list
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700288 ${rc} ${output}= Run and Return Rc and Output
David K. Bainbridgebd5ebd22020-02-04 10:01:18 -0800289 ... ${VOLTCTL_CONFIG}; voltctl device port list ${olt_device_id} -o json
Gilles Depatieb5682f82019-10-31 10:39:45 -0400290 Should Be Equal As Integers ${rc} 0
291 ${jsondata}= To Json ${output}
292 Log ${jsondata}
293 ${length}= Get Length ${jsondata}
294 FOR ${INDEX} IN RANGE 0 ${length}
295 ${value}= Get From List ${jsondata} ${INDEX}
296 ${type}= Get From Dictionary ${value} type
297 ${peers}= Get From Dictionary ${value} peers
298 Run Keyword If '${type}' == 'PON_OLT' Exit For Loop
299 END
300 ${length}= Get Length ${peers}
301 FOR ${INDEX} IN RANGE 0 ${length}
302 ${value}= Get From List ${peers} ${INDEX}
303 ${peer_id}= Get From Dictionary ${value} deviceid
304 Append To List ${olt_peer_list} ${peer_id}
305 END
306
307Validate OLT Peer Id List
308 [Arguments] ${olt_peer_id_list}
309 [Documentation] Match each entry in the ${olt_peer_id_list} against ONU device ids.
310 FOR ${peer_id} IN @{olt_peer_id_list}
311 Match OLT Peer Id ${peer_id}
312 END
313
314Match OLT Peer Id
315 [Arguments] ${olt_peer_id}
316 [Documentation] Lookup the OLT Peer Id in against the list of ONU device Ids
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700317 ${rc} ${output}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl device list -o json
Gilles Depatieb5682f82019-10-31 10:39:45 -0400318 Should Be Equal As Integers ${rc} 0
319 ${jsondata}= To Json ${output}
320 Log ${jsondata}
321 ${length}= Get Length ${jsondata}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700322 FOR ${INDEX} IN RANGE 0 ${length}
Gilles Depatieb5682f82019-10-31 10:39:45 -0400323 ${value}= Get From List ${jsondata} ${INDEX}
324 ${devid}= Get From Dictionary ${value} id
325 Run Keyword If '${devid}' == '${olt_peer_id}' Exit For Loop
326 Run Keyword If '${INDEX}' == '${length}' Fail Peer id ${olt_peer_id} does not match any ONU device id;
327 END
328
329Validate ONU Peer Id
330 [Arguments] ${olt_device_id} ${List_ONU_Serial}
331 [Documentation] Match each ONU peer to that of the OLT device id
332 FOR ${onu_serial} IN @{List_ONU_Serial}
333 ${onu_dev_id}= Get Device ID From SN ${onu_serial}
334 Match ONU Peer Id ${onu_dev_id}
335 END
336
337Match ONU Peer Id
338 [Arguments] ${onu_dev_id}
339 [Documentation] Match an ONU peer to that of the OLT device id
David K. Bainbridgebd5ebd22020-02-04 10:01:18 -0800340 ${rc} ${output}= Run and Return Rc and Output
341 ... ${VOLTCTL_CONFIG}; voltctl device port list ${onu_dev_id} -o json
Gilles Depatieb5682f82019-10-31 10:39:45 -0400342 Should Be Equal As Integers ${rc} 0
343 ${jsondata}= To Json ${output}
344 Log ${jsondata}
345 ${length}= Get Length ${jsondata}
346 FOR ${INDEX} IN RANGE 0 ${length}
347 ${value}= Get From List ${jsondata} ${INDEX}
348 ${type}= Get From Dictionary ${value} type
349 ${peers}= Get From Dictionary ${value} peers
350 Run Keyword If '${type}' == 'PON_ONU' Exit For Loop
351 END
352 ${length}= Get Length ${peers}
353 FOR ${INDEX} IN RANGE 0 ${length}
354 ${value}= Get From List ${peers} ${INDEX}
355 ${peer_id}= Get From Dictionary ${value} deviceid
356 END
357 Should Be Equal '${peer_id}' '${olt_device_id}'
358 ... Mismatch between ONU peer ${peer_id} and OLT device id ${olt_device_id} values=False
Kailash6f5acb62019-08-28 14:38:45 -0700359
Kailash6f5acb62019-08-28 14:38:45 -0700360Get Device ID From SN
361 [Arguments] ${serial_number}
362 [Documentation] Gets the device id by matching for ${serial_number}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700363 ${rc} ${id}= Run and Return Rc and Output
Andy Bavier8fca0452019-12-16 15:30:11 -0700364 ... ${VOLTCTL_CONFIG}; voltctl device list --filter=SerialNumber=${serial_number} --format='{{.Id}}'
365 Should Be Equal As Integers ${rc} 0
366 Log ${id}
Kailash6f5acb62019-08-28 14:38:45 -0700367 [Return] ${id}
368
Suchitra Vemuri00d147d2019-09-13 13:07:32 -0700369Get Logical Device ID From SN
370 [Arguments] ${serial_number}
371 [Documentation] Gets the device id by matching for ${serial_number}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700372 ${rc} ${id}= Run and Return Rc and Output
Andy Bavier8fca0452019-12-16 15:30:11 -0700373 ... ${VOLTCTL_CONFIG}; voltctl logicaldevice list --filter=SerialNumber=${serial_number} --format='{{.Id}}'
374 Should Be Equal As Integers ${rc} 0
375 Log ${id}
Suchitra Vemuri00d147d2019-09-13 13:07:32 -0700376 [Return] ${id}
377
Gilles Depatieb5682f82019-10-31 10:39:45 -0400378Build ONU SN List
379 [Arguments] ${serial_numbers}
380 [Documentation] Appends all ONU SNs to the ${serial_numbers} list
381 FOR ${INDEX} IN RANGE 0 ${num_onus}
382 Append To List ${serial_numbers} ${hosts.src[${INDEX}].onu}
383 END
384
385Get SN From Device ID
386 [Arguments] ${device_id}
387 [Documentation] Gets the device id by matching for ${device_id}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700388 ${rc} ${sn}= Run and Return Rc and Output
Andy Bavier8fca0452019-12-16 15:30:11 -0700389 ... ${VOLTCTL_CONFIG}; voltctl device list --filter=Id=${device_id} --format='{{.SerialNumber}}'
Gilles Depatieb5682f82019-10-31 10:39:45 -0400390 Should Be Equal As Integers ${rc} 0
Andy Bavier8fca0452019-12-16 15:30:11 -0700391 Log ${sn}
Gilles Depatieb5682f82019-10-31 10:39:45 -0400392 [Return] ${sn}
393
Scott Baker60e570d2020-02-02 22:10:13 -0800394Get Parent ID From Device ID
395 [Arguments] ${device_id}
396 [Documentation] Gets the device id by matching for ${device_id}
397 ${rc} ${pid}= Run and Return Rc and Output
398 ... ${VOLTCTL_CONFIG}; voltctl device list --filter=Id=${device_id} --format='{{.ParentId}}'
399 Should Be Equal As Integers ${rc} 0
400 Log ${pid}
401 [Return] ${pid}
402
Kailash6f5acb62019-08-28 14:38:45 -0700403Validate Device Removed
404 [Arguments] ${id}
405 [Documentation] Verifys that device, ${serial_number}, has been removed
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700406 ${rc} ${output}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl device list -o json
Andy Bavier8fca0452019-12-16 15:30:11 -0700407 Should Be Equal As Integers ${rc} 0
Kailash6f5acb62019-08-28 14:38:45 -0700408 ${jsondata}= To Json ${output}
409 Log ${jsondata}
410 ${length}= Get Length ${jsondata}
411 @{ids}= Create List
Zack Williamsec53a1b2019-09-16 15:50:52 -0700412 FOR ${INDEX} IN RANGE 0 ${length}
413 ${value}= Get From List ${jsondata} ${INDEX}
414 ${device_id}= Get From Dictionary ${value} id
415 Append To List ${ids} ${device_id}
416 END
Suchitra Vemuri00d147d2019-09-13 13:07:32 -0700417 List Should Not Contain Value ${ids} ${id}
Suchitra Vemuricd2f64f2020-02-18 18:30:27 -0800418
419Reboot ONU
420 [Arguments] ${onu_id} ${src} ${dst}
421 [Documentation] Using voltctl command reboot ONU and verify that ONU comes up to running state
422 ${rc} ${devices}= Run and Return Rc and Output ${VOLTCTL_CONFIG}; voltctl device reboot ${onu_id}
423 Should Be Equal As Integers ${rc} 0
424 Run Keyword and Ignore Error Wait Until Keyword Succeeds 60s 1s Validate Device
425 ... ENABLED DISCOVERED UNREACHABLE ${onu_id} onu=True