blob: 69ee7e2ce227b1768bb6047b88234e26f826f2eb [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# onos 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 ***
Kailash6f5acb62019-08-28 14:38:45 -070027Validate OLT Device in ONOS
Zack Williamsa8fe75a2020-01-10 14:25:27 -070028 # FIXME use volt-olts to check that the OLT is ONOS
Kailash6f5acb62019-08-28 14:38:45 -070029 [Arguments] ${serial_number}
Zack Williamsec53a1b2019-09-16 15:50:52 -070030 [Documentation] Checks if olt has been connected to ONOS
Kailash6f5acb62019-08-28 14:38:45 -070031 ${resp}= Get Request ONOS onos/v1/devices
32 ${jsondata}= To Json ${resp.content}
33 Should Not Be Empty ${jsondata['devices']}
34 ${length}= Get Length ${jsondata['devices']}
35 @{serial_numbers}= Create List
Andy Bavierb63f6d22020-03-12 15:34:37 -070036 ${matched}= Set Variable False
Zack Williamsec53a1b2019-09-16 15:50:52 -070037 FOR ${INDEX} IN RANGE 0 ${length}
38 ${value}= Get From List ${jsondata['devices']} ${INDEX}
39 ${of_id}= Get From Dictionary ${value} id
40 ${sn}= Get From Dictionary ${value} serial
Andy Bavierb63f6d22020-03-12 15:34:37 -070041 ${matched}= Set Variable If '${sn}' == '${serial_number}' True False
42 Exit For Loop If ${matched}
Zack Williamsec53a1b2019-09-16 15:50:52 -070043 END
Andy Bavierb63f6d22020-03-12 15:34:37 -070044 Should Be True ${matched} No match for ${serial_number} found
Kailash57210eb2019-08-30 13:27:19 -070045 [Return] ${of_id}
Kailash6f5acb62019-08-28 14:38:45 -070046
Suchitra Vemuri102912a2019-09-24 00:35:42 -070047Get ONU Port in ONOS
Zack Williamsec53a1b2019-09-16 15:50:52 -070048 [Arguments] ${onu_serial_number} ${olt_of_id}
Suchitra Vemuri102912a2019-09-24 00:35:42 -070049 [Documentation] Retrieves ONU port for the ONU in ONOS
Suchitra Vemuria50c1c12019-09-30 19:54:26 -070050 ${onu_serial_number}= Catenate SEPARATOR=- ${onu_serial_number} 1
Suchitra Vemuri102912a2019-09-24 00:35:42 -070051 ${resp}= Get Request ONOS onos/v1/devices/${olt_of_id}/ports
52 ${jsondata}= To Json ${resp.content}
53 Should Not Be Empty ${jsondata['ports']}
54 ${length}= Get Length ${jsondata['ports']}
55 @{ports}= Create List
Andy Bavierb63f6d22020-03-12 15:34:37 -070056 ${matched}= Set Variable False
Zack Williamsec53a1b2019-09-16 15:50:52 -070057 FOR ${INDEX} IN RANGE 0 ${length}
58 ${value}= Get From List ${jsondata['ports']} ${INDEX}
59 ${annotations}= Get From Dictionary ${value} annotations
60 ${onu_port}= Get From Dictionary ${value} port
61 ${portName}= Get From Dictionary ${annotations} portName
Andy Bavierb63f6d22020-03-12 15:34:37 -070062 ${matched}= Set Variable If '${portName}' == '${onu_serial_number}' True False
63 Exit For Loop If ${matched}
Zack Williamsec53a1b2019-09-16 15:50:52 -070064 END
Andy Bavierb63f6d22020-03-12 15:34:37 -070065 Should Be True ${matched} No match for ${onu_serial_number} found
Suchitra Vemuri102912a2019-09-24 00:35:42 -070066 [Return] ${onu_port}
67
Hardik Windlassfb5eace2020-03-26 14:49:01 +053068Get NNI Port in ONOS
69 [Arguments] ${olt_of_id}
70 [Documentation] Retrieves NNI port for the OLT in ONOS
71 ${resp}= Get Request ONOS onos/v1/devices/${olt_of_id}/ports
72 ${jsondata}= To Json ${resp.content}
73 Should Not Be Empty ${jsondata['ports']}
74 ${length}= Get Length ${jsondata['ports']}
75 @{ports}= Create List
76 ${matched}= Set Variable False
77 FOR ${INDEX} IN RANGE 0 ${length}
78 ${value}= Get From List ${jsondata['ports']} ${INDEX}
79 ${annotations}= Get From Dictionary ${value} annotations
80 ${nni_port}= Get From Dictionary ${value} port
81 ${nniPortName}= Catenate SEPARATOR= nni- ${nni_port}
82 ${portName}= Get From Dictionary ${annotations} portName
83 ${matched}= Set Variable If '${portName}' == '${nniPortName}' True False
84 Exit For Loop If ${matched}
85 END
86 Should Be True ${matched} No match for NNI found for ${olt_of_id}
87 [Return] ${nni_port}
88
Suchitra Vemuri532f67a2019-09-25 11:50:42 -070089Get FabricSwitch in ONOS
90 [Documentation] Returns of_id of the Fabric Switch in ONOS
91 ${resp}= Get Request ONOS onos/v1/devices
92 ${jsondata}= To Json ${resp.content}
93 Should Not Be Empty ${jsondata['devices']}
94 ${length}= Get Length ${jsondata['devices']}
Andy Bavierb63f6d22020-03-12 15:34:37 -070095 ${matched}= Set Variable False
Suchitra Vemuri532f67a2019-09-25 11:50:42 -070096 FOR ${INDEX} IN RANGE 0 ${length}
97 ${value}= Get From List ${jsondata['devices']} ${INDEX}
98 ${of_id}= Get From Dictionary ${value} id
99 ${type}= Get From Dictionary ${value} type
Andy Bavierb63f6d22020-03-12 15:34:37 -0700100 ${matched}= Set Variable If '${type}' == "SWITCH" True False
101 Exit For Loop If ${matched}
Suchitra Vemuri532f67a2019-09-25 11:50:42 -0700102 END
Andy Bavierb63f6d22020-03-12 15:34:37 -0700103 Should Be True ${matched} No fabric switch found
Suchitra Vemuri532f67a2019-09-25 11:50:42 -0700104 [Return] ${of_id}
105
Hardik Windlass21807632020-04-14 16:24:55 +0530106Verify Subscriber Access Flows Added for ONU
107 [Arguments] ${ip} ${port} ${olt_of_id} ${onu_port} ${nni_port} ${c_tag} ${s_tag}
108 [Documentation] Verifies if the Subscriber Access Flows are added in ONOS for the ONU
109 # Verify upstream table=0 flow
110 ${upstream_flow_0_cmd}= Catenate SEPARATOR=
111 ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${onu_port} | grep VLAN_VID:0 |
112 ... grep VLAN_ID:${c_tag} | grep transition=TABLE:1
113 ${upstream_flow_0_added}= Execute ONOS CLI Command ${ip} ${port}
114 ... ${upstream_flow_0_cmd}
115 Should Not Be Empty ${upstream_flow_0_added}
116 # Verify upstream table=1 flow
117 ${flow_vlan_push_cmd}= Catenate SEPARATOR=
118 ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${onu_port} | grep VLAN_VID:${c_tag} |
119 ... grep VLAN_PUSH | grep VLAN_ID:${s_tag} | grep OUTPUT:${nni_port}
120 ${upstream_flow_1_added}= Execute ONOS CLI Command ${ip} ${port}
121 ... ${flow_vlan_push_cmd}
122 Should Not Be Empty ${upstream_flow_1_added}
123 # Verify downstream table=0 flow
124 ${flow_vlan_pop_cmd}= Catenate SEPARATOR=
125 ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${nni_port} | grep VLAN_VID:${s_tag} |
126 ... grep VLAN_POP | grep transition=TABLE:1
127 ${downstream_flow_0_added}= Execute ONOS CLI Command ${ip} ${port}
128 ... ${flow_vlan_pop_cmd}
129 Should Not Be Empty ${downstream_flow_0_added}
130 # Verify downstream table=1 flow
131 ${downstream_flow_1_cmd}= Catenate SEPARATOR=
132 ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${nni_port} | grep VLAN_VID:${c_tag} |
133 ... grep VLAN_ID:0 | grep OUTPUT:${onu_port}
134 ${downstream_flow_1_added}= Execute ONOS CLI Command ${ip} ${port}
135 ... ${downstream_flow_1_cmd}
136 Should Not Be Empty ${downstream_flow_1_added}
137 # Verify ipv4 dhcp upstream flow
138 ${upstream_flow_ipv4_cmd}= Catenate SEPARATOR=
Andrea Campanella5e9051c2020-04-30 14:38:35 +0200139 ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${onu_port} | grep ETH_TYPE:ipv4 |
140 ... grep IP_PROTO:17 | grep UDP_SRC:68 | grep UDP_DST:67 | grep VLAN_VID:${c_tag} |
141 ... grep OUTPUT:CONTROLLER
Hardik Windlass21807632020-04-14 16:24:55 +0530142 ${upstream_flow_ipv4_added}= Execute ONOS CLI Command ${ip} ${port}
143 ... ${upstream_flow_ipv4_cmd}
Andrea Campanella5e9051c2020-04-30 14:38:35 +0200144 Should Not Be Empty ${upstream_flow_ipv4_added}
Hardik Windlass21807632020-04-14 16:24:55 +0530145 # Verify ipv4 dhcp downstream flow
146 # Note: This flow will be one per nni per olt
147 ${downstream_flow_ipv4_cmd}= Catenate SEPARATOR=
Andrea Campanella5e9051c2020-04-30 14:38:35 +0200148 ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${nni_port} | grep ETH_TYPE:ipv4 |
149 ... grep IP_PROTO:17 | grep UDP_SRC:67 | grep UDP_DST:68 | grep OUTPUT:CONTROLLER
Hardik Windlass21807632020-04-14 16:24:55 +0530150 ${downstream_flow_ipv4_added}= Execute ONOS CLI Command ${ip} ${port}
151 ... ${downstream_flow_ipv4_cmd}
Andrea Campanella5e9051c2020-04-30 14:38:35 +0200152 Should Not Be Empty ${downstream_flow_ipv4_added}
Hardik Windlass21807632020-04-14 16:24:55 +0530153
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530154Verify Subscriber Access Flows Added for ONU DT
Hardik Windlass25e11702020-03-30 20:05:19 +0530155 [Arguments] ${ip} ${port} ${olt_of_id} ${onu_port} ${nni_port} ${s_tag}
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530156 [Documentation] Verifies if the Subscriber Access Flows are added in ONOS for the ONU
157 # Verify upstream table=0 flow
158 ${upstream_flow_0_added}= Execute ONOS CLI Command ${ip} ${port}
Hardik Windlass25e11702020-03-30 20:05:19 +0530159 ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${onu_port} | grep VLAN_VID:Any | grep transition=TABLE:1
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530160 Should Not Be Empty ${upstream_flow_0_added}
161 # Verify upstream table=1 flow
162 ${flow_vlan_push_cmd}= Catenate SEPARATOR=
Hardik Windlass25e11702020-03-30 20:05:19 +0530163 ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${onu_port} | grep VLAN_VID:Any |
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530164 ... grep VLAN_PUSH | grep VLAN_ID:${s_tag} | grep OUTPUT:${nni_port}
165 ${upstream_flow_1_added}= Execute ONOS CLI Command ${ip} ${port}
166 ... ${flow_vlan_push_cmd}
167 Should Not Be Empty ${upstream_flow_1_added}
168 # Verify downstream table=0 flow
169 ${flow_vlan_pop_cmd}= Catenate SEPARATOR=
Hardik Windlass25e11702020-03-30 20:05:19 +0530170 ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${nni_port} | grep VLAN_VID:${s_tag} |
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530171 ... grep VLAN_POP | grep transition=TABLE:1
172 ${downstream_flow_0_added}= Execute ONOS CLI Command ${ip} ${port}
173 ... ${flow_vlan_pop_cmd}
174 Should Not Be Empty ${downstream_flow_0_added}
175 # Verify downstream table=1 flow
176 ${downstream_flow_1_added}= Execute ONOS CLI Command ${ip} ${port}
Hardik Windlass25e11702020-03-30 20:05:19 +0530177 ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${nni_port} | grep VLAN_VID:Any | grep OUTPUT:${onu_port}
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530178 Should Not Be Empty ${downstream_flow_1_added}
179
180Verify Subscriber Access Flows Added Count DT
Hardik Windlass25e11702020-03-30 20:05:19 +0530181 [Arguments] ${ip} ${port} ${olt_of_id} ${expected_flows}
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530182 [Documentation] Matches for total number of subscriber access flows added for all onus
183 ${access_flows_added}= Execute ONOS CLI Command ${ip} ${port}
Hardik Windlass25e11702020-03-30 20:05:19 +0530184 ... flows -s ADDED ${olt_of_id} | grep -v deviceId | grep -v ETH_TYPE:lldp | wc -l
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530185 Should Be Equal As Integers ${access_flows_added} ${expected_flows}
186
Hardik Windlass480f3e22020-04-02 20:14:14 +0530187Verify Device Flows Removed
188 [Arguments] ${ip} ${port} ${olt_of_id}
189 [Documentation] Verifies all flows are removed from the device
190 ${device_flows}= Execute ONOS CLI Command ${ip} ${port}
191 ... flows -s -f ${olt_of_id} | grep -v deviceId | wc -l
192 Should Be Equal As Integers ${device_flows} 0
193
Kailash6f5acb62019-08-28 14:38:45 -0700194Verify Eapol Flows Added
Andy Bavierb0c06232019-08-29 12:58:53 -0700195 [Arguments] ${ip} ${port} ${expected_flows}
Kailash6f5acb62019-08-28 14:38:45 -0700196 [Documentation] Matches for number of eapol flows based on number of onus
Gilles Depatie675a2062019-10-22 12:44:42 -0400197 ${eapol_flows_added}= Execute ONOS CLI Command ${ip} ${port}
198 ... flows -s -f ADDED | grep eapol | grep IN_PORT | wc -l
Andy Bavierb0c06232019-08-29 12:58:53 -0700199 Should Contain ${eapol_flows_added} ${expected_flows}
Kailash6f5acb62019-08-28 14:38:45 -0700200
Suchitra Vemuri9da44302020-03-04 14:24:49 -0800201Verify No Pending Flows For ONU
202 [Arguments] ${ip} ${port} ${onu_port}
203 [Documentation] Verifies that there are no flows "PENDING" state for the ONU in ONOS
204 ${pending_flows}= Execute ONOS CLI Command ${ip} ${port}
205 ... flows -s | grep IN_PORT:${onu_port} | grep PENDING
206 Should Be Empty ${pending_flows}
207
Suchitra Vemuri3dd2f832019-10-18 13:14:54 -0700208Verify Eapol Flows Added For ONU
209 [Arguments] ${ip} ${port} ${onu_port}
210 [Documentation] Verifies if the Eapol Flows are added in ONOS for the ONU
Gilles Depatie675a2062019-10-22 12:44:42 -0400211 ${eapol_flows_added}= Execute ONOS CLI Command ${ip} ${port}
212 ... flows -s -f ADDED | grep eapol | grep IN_PORT:${onu_port}
Suchitra Vemuri3dd2f832019-10-18 13:14:54 -0700213 Should Not Be Empty ${eapol_flows_added}
214
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800215Verify ONU Port Is Enabled
216 [Arguments] ${ip} ${port} ${onu_port}
217 [Documentation] Verifies if the ONU port is enabled in ONOS
218 ${onu_port_enabled}= Execute ONOS CLI Command ${ip} ${port}
Suchitra Vemuri8e15ead2020-02-07 14:41:50 -0800219 ... ports -e | grep port=${onu_port}
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800220 Log ${onu_port_enabled}
221 Should Not Be Empty ${onu_port_enabled}
222
Hardik Windlass63d5e002020-03-06 21:07:09 +0530223Verify ONU Port Is Disabled
224 [Arguments] ${ip} ${port} ${onu_port}
225 [Documentation] Verifies if the ONU port is disabled in ONOS
226 ${onu_port_disabled}= Execute ONOS CLI Command ${ip} ${port}
227 ... ports -e | grep port=${onu_port}
228 Log ${onu_port_disabled}
229 Should Be Empty ${onu_port_disabled}
230
Suchitra Vemuri8a9c3782019-10-23 12:43:01 -0700231Verify ONU in AAA-Users
232 [Arguments] ${ip} ${port} ${onu_port}
233 [Documentation] Verifies that the specified onu_port exists in aaa-users output
234 ${aaa_users}= Execute ONOS CLI Command ${ip} ${port} aaa-users | grep AUTHORIZED | grep ${onu_port}
235 Should Not Be Empty ${aaa_users} ONU port ${onu_port} not found in aaa-users
236
Matteo Scandolo142e6272020-04-29 17:36:59 -0700237Assert Number of AAA-Users
Kailash2b963f02019-08-28 22:46:33 -0700238 [Arguments] ${ip} ${port} ${expected_onus}
Kailash6f5acb62019-08-28 14:38:45 -0700239 [Documentation] Matches for number of aaa-users authorized based on number of onus
Kailash30c418f2019-09-11 13:50:10 -0700240 ${aaa_users}= Execute ONOS CLI Command ${ip} ${port} aaa-users | grep AUTHORIZED | wc -l
Matteo Scandolo142e6272020-04-29 17:36:59 -0700241 Should Be Equal As Integers ${aaa_users} ${expected_onus}
Kailash6f5acb62019-08-28 14:38:45 -0700242
243Validate DHCP Allocations
Kailash2b963f02019-08-28 22:46:33 -0700244 [Arguments] ${ip} ${port} ${expected_onus}
Kailash6f5acb62019-08-28 14:38:45 -0700245 [Documentation] Matches for number of dhcpacks based on number of onus
Kailash30c418f2019-09-11 13:50:10 -0700246 ${allocations}= Execute ONOS CLI Command ${ip} ${port} dhcpl2relay-allocations | grep DHCPACK | wc -l
Matteo Scandolo142e6272020-04-29 17:36:59 -0700247 Should Be Equal As Integers ${allocations} ${expected_onus}
Suchitra Vemuri8a9c3782019-10-23 12:43:01 -0700248
249Validate Subscriber DHCP Allocation
250 [Arguments] ${ip} ${port} ${onu_port}
251 [Documentation] Verifies that the specified subscriber is found in DHCP allocations
252 ##TODO: Enhance the keyword to include DHCP allocated address is not 0.0.0.0
Gilles Depatie675a2062019-10-22 12:44:42 -0400253 ${allocations}= Execute ONOS CLI Command ${ip} ${port}
254 ... dhcpl2relay-allocations | grep DHCPACK | grep ${onu_port}
255 Should Not Be Empty ${allocations} ONU port ${onu_port} not found in dhcpl2relay-allocations
David Bainbridgef81cd642019-11-20 00:14:47 +0000256
257Device Is Available In ONOS
258 [Arguments] ${url} ${dpid}
259 [Documentation] Validates the device exists and it available in ONOS
260 ${rc} ${json} Run And Return Rc And Output curl --fail -sSL ${url}/onos/v1/devices/${dpid}
261 Should Be Equal As Integers 0 ${rc}
262 ${rc} ${value} Run And Return Rc And Output echo '${json}' | jq -r .available
263 Should Be Equal As Integers 0 ${rc}
264 Should Be Equal 'true' '${value}'
265
266Remove All Devices From ONOS
267 [Arguments] ${url}
268 [Documentation] Executes the device-remove command on each device in ONOS
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700269 ${rc} @{dpids} Run And Return Rc And Output
270 ... curl --fail -sSL ${url}/onos/v1/devices | jq -r '.devices[].id'
David Bainbridgef81cd642019-11-20 00:14:47 +0000271 Should Be Equal As Integers ${rc} 0
272 ${count}= Get length ${dpids}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700273 FOR ${dpid} IN @{dpids}
274 ${rc}= Run Keyword If '${dpid}' != ''
275 ... Run And Return Rc curl -XDELETE --fail -sSL ${url}/onos/v1/devices/${dpid}
276 Run Keyword If '${dpid}' != ''
277 ... Should Be Equal As Integers ${rc} 0
278 END
Matteo Scandolo142e6272020-04-29 17:36:59 -0700279
280Assert Ports in ONOS
281 [Arguments] ${ip} ${port} ${count} ${filter}
282 [Documentation] Check that a certain number of ports are enabled in ONOS
283 ${ports}= Execute ONOS CLI Command ${ip} ${port}
284 ... ports -e | grep ${filter} | wc -l
285 Should Be Equal As Integers ${ports} ${count}
286
287Wait for Ports in ONOS
288 [Arguments] ${ip} ${port} ${count} ${filter}
289 [Documentation] Waits untill a certain number of ports are enabled in ONOS
290 Wait Until Keyword Succeeds 10m 5s Assert Ports in ONOS ${ip} ${port} ${count} ${filter}
291
292Wait for AAA Authentication
293 [Arguments] ${ip} ${port} ${count}
294 [Documentation] Waits untill a certain number of subscribers are authenticated in ONOS
295 Wait Until Keyword Succeeds 10m 5s Assert Number of AAA-Users ${ip} ${port} ${count}
296
297Wait for DHCP Ack
298 [Arguments] ${ip} ${port} ${count}
299 [Documentation] Waits untill a certain number of subscribers have received a DHCP_ACK
300 Wait Until Keyword Succeeds 10m 5s Validate DHCP Allocations ${ip} ${port} ${count}
301
302Provision subscriber
303 [Documentation] Calls volt-add-subscriber-access in ONOS
304 [Arguments] ${onos_ip} ${onos_port} ${of_id} ${onu_port}
305 Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
306 ... volt-add-subscriber-access ${of_id} ${onu_port}
307
308List Enabled UNI Ports
309 [Documentation] List all the UNI Ports, the only way we have is to filter out the one called NNI
310 ... Creates a list of dictionaries
311 [Arguments] ${onos_ip} ${onos_port} ${of_id}
312 [Return] [{'port': '16', 'of_id': 'of:00000a0a0a0a0a00'}, {'port': '32', 'of_id': 'of:00000a0a0a0a0a00'}]
313 ${result}= Create List
314 ${out}= Execute ONOS CLI Command ${onos_ip} ${onos_port}
315 ... ports -e ${of_id} | grep -v SWITCH | grep -v nni
316 @{unis}= Split To Lines ${out}
317 FOR ${uni} IN @{unis}
318 ${matches} = Get Regexp Matches ${uni} .*port=([0-9]+),.* 1
319 &{portDict} Create Dictionary of_id=${of_id} port=${matches[0]}
320 Append To List ${result} ${portDict}
321 END
322 Log ${result}
323 Return From Keyword ${result}
324
325Provision all subscribers on device
326 [Documentation] Calls volt-add-subscriber-access in ONOS for all the enabled UNI ports on a partivular device
327 [Arguments] ${onos_ip} ${onos_port} ${of_id}
328 ${unis}= List Enabled UNI Ports ${onos_ip} ${onos_port} ${of_id}
329 FOR ${uni} IN @{unis}
330 Provision subscriber ${onos_ip} ${onos_port} ${uni['of_id']} ${uni['port']}
331 END
332
333List OLTs
334 [Documentation] Returns a list of OLTs known to ONOS
335 [Arguments] ${onos_ip} ${onos_port}
336 [Return] ['of:00000a0a0a0a0a00', 'of:00000a0a0a0a0a01']
337 ${result}= Create List
338 ${out}= Execute ONOS CLI Command ${onos_ip} ${onos_port}
339 ... volt-olts
340 @{olts}= Split To Lines ${out}
341 FOR ${olt} IN @{olts}
342 Log ${olt}
343 ${matches} = Get Regexp Matches ${olt} ^OLT (.+)$ 1
344 # there may be some logs mixed with the output so only append if we have a match
345 ${matches_length}= Get Length ${matches}
346 Run Keyword If ${matches_length}==1
347 ... Append To List ${result} ${matches[0]}
348 END
349 Return From Keyword ${result}
350
351Count ADDED flows
352 [Documentation] Count the flows in ADDED state in ONOS
353 [Arguments] ${onos_ip} ${onos_port} ${targetFlows}
354 ${flows}= Execute ONOS CLI Command ${onos_ip} ${onos_port}
355 ... flows -s | grep ADDED | wc -l
356 Should Be Equal As Integers ${targetFlows} ${flows}
357
358Wait for all flows to in ADDED state
359 [Documentation] Waits until the flows have been provisioned
360 [Arguments] ${onos_ip} ${onos_port} ${workflow} ${uni_count} ${olt_count} ${provisioned}
361 ${targetFlows}= Calculate flows by workflow ${workflow} ${uni_count} ${olt_count} ${provisioned}
362 Wait Until Keyword Succeeds 10m 5s Count ADDED flows
363 ... ${onos_ip} ${onos_port} ${targetFlows}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000364
365Get Bandwidth Details
366 [Arguments] ${bandwidth_profile_name}
367 [Documentation] Collects the bandwidth profile details for the given bandwidth profile and
368 ... returns the limiting bandwidth
369 ${bandwidth_profile_values}= Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
370 ... bandwidthprofile ${bandwidth_profile_name}
371 @{bandwidth_profile_array}= Split String ${bandwidth_profile_values} ,
372 @{parameter_value_pair}= Split String ${bandwidth_profile_array[1]} =
373 ${bandwidthparameter}= Set Variable ${parameter_value_pair[0]}
374 ${value}= Set Variable ${parameter_value_pair[1]}
375 ${cir_value} Run Keyword If '${bandwidthparameter}' == ' committedInformationRate'
376 ... Set Variable ${value}
377 @{parameter_value_pair}= Split String ${bandwidth_profile_array[2]} =
378 ${bandwidthparameter}= Set Variable ${parameter_value_pair[0]}
379 ${value}= Set Variable ${parameter_value_pair[1]}
380 ${cbs_value} Run Keyword If '${bandwidthparameter}' == ' committedBurstSize' Set Variable ${value}
381 @{parameter_value_pair}= Split String ${bandwidth_profile_array[3]} =
382 ${bandwidthparameter}= Set Variable ${parameter_value_pair[0]}
383 ${value}= Set Variable ${parameter_value_pair[1]}
384 ${eir_value} Run Keyword If '${bandwidthparameter}' == ' exceededInformationRate' Set Variable ${value}
385 @{parameter_value_pair}= Split String ${bandwidth_profile_array[4]} =
386 ${bandwidthparameter}= Set Variable ${parameter_value_pair[0]}
387 ${value}= Set Variable ${parameter_value_pair[1]}
388 ${ebs_value} Run Keyword If '${bandwidthparameter}' == ' exceededBurstSize' Set Variable ${value}
389 ${limiting_BW}= Evaluate ${cir_value}+${eir_value}
390 [Return] ${limiting_BW}