blob: 4012033b2a01b7cea453a1a6343be208204c2910 [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
Matteo Scandoloeb26a842020-05-08 10:06:24 -070025Resource ./flows.robot
Kailash6f5acb62019-08-28 14:38:45 -070026
27*** Keywords ***
Kailash6f5acb62019-08-28 14:38:45 -070028Validate OLT Device in ONOS
Zack Williamsa8fe75a2020-01-10 14:25:27 -070029 # FIXME use volt-olts to check that the OLT is ONOS
Kailash6f5acb62019-08-28 14:38:45 -070030 [Arguments] ${serial_number}
Zack Williamsec53a1b2019-09-16 15:50:52 -070031 [Documentation] Checks if olt has been connected to ONOS
Kailash6f5acb62019-08-28 14:38:45 -070032 ${resp}= Get Request ONOS onos/v1/devices
33 ${jsondata}= To Json ${resp.content}
34 Should Not Be Empty ${jsondata['devices']}
35 ${length}= Get Length ${jsondata['devices']}
36 @{serial_numbers}= Create List
Andy Bavierb63f6d22020-03-12 15:34:37 -070037 ${matched}= Set Variable False
Zack Williamsec53a1b2019-09-16 15:50:52 -070038 FOR ${INDEX} IN RANGE 0 ${length}
39 ${value}= Get From List ${jsondata['devices']} ${INDEX}
40 ${of_id}= Get From Dictionary ${value} id
41 ${sn}= Get From Dictionary ${value} serial
Andy Bavierb63f6d22020-03-12 15:34:37 -070042 ${matched}= Set Variable If '${sn}' == '${serial_number}' True False
43 Exit For Loop If ${matched}
Zack Williamsec53a1b2019-09-16 15:50:52 -070044 END
Andy Bavierb63f6d22020-03-12 15:34:37 -070045 Should Be True ${matched} No match for ${serial_number} found
Kailash57210eb2019-08-30 13:27:19 -070046 [Return] ${of_id}
Kailash6f5acb62019-08-28 14:38:45 -070047
Suchitra Vemuri102912a2019-09-24 00:35:42 -070048Get ONU Port in ONOS
Zack Williamsec53a1b2019-09-16 15:50:52 -070049 [Arguments] ${onu_serial_number} ${olt_of_id}
Suchitra Vemuri102912a2019-09-24 00:35:42 -070050 [Documentation] Retrieves ONU port for the ONU in ONOS
Suchitra Vemuria50c1c12019-09-30 19:54:26 -070051 ${onu_serial_number}= Catenate SEPARATOR=- ${onu_serial_number} 1
Suchitra Vemuri102912a2019-09-24 00:35:42 -070052 ${resp}= Get Request ONOS onos/v1/devices/${olt_of_id}/ports
53 ${jsondata}= To Json ${resp.content}
54 Should Not Be Empty ${jsondata['ports']}
55 ${length}= Get Length ${jsondata['ports']}
56 @{ports}= Create List
Andy Bavierb63f6d22020-03-12 15:34:37 -070057 ${matched}= Set Variable False
Zack Williamsec53a1b2019-09-16 15:50:52 -070058 FOR ${INDEX} IN RANGE 0 ${length}
59 ${value}= Get From List ${jsondata['ports']} ${INDEX}
60 ${annotations}= Get From Dictionary ${value} annotations
61 ${onu_port}= Get From Dictionary ${value} port
62 ${portName}= Get From Dictionary ${annotations} portName
Andy Bavierb63f6d22020-03-12 15:34:37 -070063 ${matched}= Set Variable If '${portName}' == '${onu_serial_number}' True False
64 Exit For Loop If ${matched}
Zack Williamsec53a1b2019-09-16 15:50:52 -070065 END
Andy Bavierb63f6d22020-03-12 15:34:37 -070066 Should Be True ${matched} No match for ${onu_serial_number} found
Suchitra Vemuri102912a2019-09-24 00:35:42 -070067 [Return] ${onu_port}
68
Hardik Windlassfb5eace2020-03-26 14:49:01 +053069Get NNI Port in ONOS
70 [Arguments] ${olt_of_id}
71 [Documentation] Retrieves NNI port for the OLT in ONOS
72 ${resp}= Get Request ONOS onos/v1/devices/${olt_of_id}/ports
73 ${jsondata}= To Json ${resp.content}
74 Should Not Be Empty ${jsondata['ports']}
75 ${length}= Get Length ${jsondata['ports']}
76 @{ports}= Create List
77 ${matched}= Set Variable False
78 FOR ${INDEX} IN RANGE 0 ${length}
79 ${value}= Get From List ${jsondata['ports']} ${INDEX}
80 ${annotations}= Get From Dictionary ${value} annotations
81 ${nni_port}= Get From Dictionary ${value} port
82 ${nniPortName}= Catenate SEPARATOR= nni- ${nni_port}
83 ${portName}= Get From Dictionary ${annotations} portName
84 ${matched}= Set Variable If '${portName}' == '${nniPortName}' True False
85 Exit For Loop If ${matched}
86 END
87 Should Be True ${matched} No match for NNI found for ${olt_of_id}
88 [Return] ${nni_port}
89
Suchitra Vemuri532f67a2019-09-25 11:50:42 -070090Get FabricSwitch in ONOS
91 [Documentation] Returns of_id of the Fabric Switch in ONOS
92 ${resp}= Get Request ONOS onos/v1/devices
93 ${jsondata}= To Json ${resp.content}
94 Should Not Be Empty ${jsondata['devices']}
95 ${length}= Get Length ${jsondata['devices']}
Andy Bavierb63f6d22020-03-12 15:34:37 -070096 ${matched}= Set Variable False
Suchitra Vemuri532f67a2019-09-25 11:50:42 -070097 FOR ${INDEX} IN RANGE 0 ${length}
98 ${value}= Get From List ${jsondata['devices']} ${INDEX}
99 ${of_id}= Get From Dictionary ${value} id
100 ${type}= Get From Dictionary ${value} type
Andy Bavierb63f6d22020-03-12 15:34:37 -0700101 ${matched}= Set Variable If '${type}' == "SWITCH" True False
102 Exit For Loop If ${matched}
Suchitra Vemuri532f67a2019-09-25 11:50:42 -0700103 END
Andy Bavierb63f6d22020-03-12 15:34:37 -0700104 Should Be True ${matched} No fabric switch found
Suchitra Vemuri532f67a2019-09-25 11:50:42 -0700105 [Return] ${of_id}
106
Hardik Windlass21807632020-04-14 16:24:55 +0530107Verify Subscriber Access Flows Added for ONU
108 [Arguments] ${ip} ${port} ${olt_of_id} ${onu_port} ${nni_port} ${c_tag} ${s_tag}
109 [Documentation] Verifies if the Subscriber Access Flows are added in ONOS for the ONU
110 # Verify upstream table=0 flow
111 ${upstream_flow_0_cmd}= Catenate SEPARATOR=
112 ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${onu_port} | grep VLAN_VID:0 |
113 ... grep VLAN_ID:${c_tag} | grep transition=TABLE:1
114 ${upstream_flow_0_added}= Execute ONOS CLI Command ${ip} ${port}
115 ... ${upstream_flow_0_cmd}
116 Should Not Be Empty ${upstream_flow_0_added}
117 # Verify upstream table=1 flow
118 ${flow_vlan_push_cmd}= Catenate SEPARATOR=
119 ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${onu_port} | grep VLAN_VID:${c_tag} |
120 ... grep VLAN_PUSH | grep VLAN_ID:${s_tag} | grep OUTPUT:${nni_port}
121 ${upstream_flow_1_added}= Execute ONOS CLI Command ${ip} ${port}
122 ... ${flow_vlan_push_cmd}
123 Should Not Be Empty ${upstream_flow_1_added}
124 # Verify downstream table=0 flow
125 ${flow_vlan_pop_cmd}= Catenate SEPARATOR=
126 ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${nni_port} | grep VLAN_VID:${s_tag} |
127 ... grep VLAN_POP | grep transition=TABLE:1
128 ${downstream_flow_0_added}= Execute ONOS CLI Command ${ip} ${port}
129 ... ${flow_vlan_pop_cmd}
130 Should Not Be Empty ${downstream_flow_0_added}
131 # Verify downstream table=1 flow
132 ${downstream_flow_1_cmd}= Catenate SEPARATOR=
133 ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${nni_port} | grep VLAN_VID:${c_tag} |
134 ... grep VLAN_ID:0 | grep OUTPUT:${onu_port}
135 ${downstream_flow_1_added}= Execute ONOS CLI Command ${ip} ${port}
136 ... ${downstream_flow_1_cmd}
137 Should Not Be Empty ${downstream_flow_1_added}
138 # Verify ipv4 dhcp upstream flow
139 ${upstream_flow_ipv4_cmd}= Catenate SEPARATOR=
Andrea Campanella5e9051c2020-04-30 14:38:35 +0200140 ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${onu_port} | grep ETH_TYPE:ipv4 |
141 ... grep IP_PROTO:17 | grep UDP_SRC:68 | grep UDP_DST:67 | grep VLAN_VID:${c_tag} |
142 ... grep OUTPUT:CONTROLLER
Hardik Windlass21807632020-04-14 16:24:55 +0530143 ${upstream_flow_ipv4_added}= Execute ONOS CLI Command ${ip} ${port}
144 ... ${upstream_flow_ipv4_cmd}
Andrea Campanella5e9051c2020-04-30 14:38:35 +0200145 Should Not Be Empty ${upstream_flow_ipv4_added}
Hardik Windlass21807632020-04-14 16:24:55 +0530146 # Verify ipv4 dhcp downstream flow
147 # Note: This flow will be one per nni per olt
148 ${downstream_flow_ipv4_cmd}= Catenate SEPARATOR=
Andrea Campanella5e9051c2020-04-30 14:38:35 +0200149 ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${nni_port} | grep ETH_TYPE:ipv4 |
150 ... grep IP_PROTO:17 | grep UDP_SRC:67 | grep UDP_DST:68 | grep OUTPUT:CONTROLLER
Hardik Windlass21807632020-04-14 16:24:55 +0530151 ${downstream_flow_ipv4_added}= Execute ONOS CLI Command ${ip} ${port}
152 ... ${downstream_flow_ipv4_cmd}
Andrea Campanella5e9051c2020-04-30 14:38:35 +0200153 Should Not Be Empty ${downstream_flow_ipv4_added}
Hardik Windlass21807632020-04-14 16:24:55 +0530154
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530155Verify Subscriber Access Flows Added for ONU DT
Hardik Windlass25e11702020-03-30 20:05:19 +0530156 [Arguments] ${ip} ${port} ${olt_of_id} ${onu_port} ${nni_port} ${s_tag}
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530157 [Documentation] Verifies if the Subscriber Access Flows are added in ONOS for the ONU
158 # Verify upstream table=0 flow
159 ${upstream_flow_0_added}= Execute ONOS CLI Command ${ip} ${port}
Hardik Windlass25e11702020-03-30 20:05:19 +0530160 ... 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 +0530161 Should Not Be Empty ${upstream_flow_0_added}
162 # Verify upstream table=1 flow
163 ${flow_vlan_push_cmd}= Catenate SEPARATOR=
Hardik Windlass25e11702020-03-30 20:05:19 +0530164 ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${onu_port} | grep VLAN_VID:Any |
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530165 ... grep VLAN_PUSH | grep VLAN_ID:${s_tag} | grep OUTPUT:${nni_port}
166 ${upstream_flow_1_added}= Execute ONOS CLI Command ${ip} ${port}
167 ... ${flow_vlan_push_cmd}
168 Should Not Be Empty ${upstream_flow_1_added}
169 # Verify downstream table=0 flow
170 ${flow_vlan_pop_cmd}= Catenate SEPARATOR=
Hardik Windlass25e11702020-03-30 20:05:19 +0530171 ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${nni_port} | grep VLAN_VID:${s_tag} |
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530172 ... grep VLAN_POP | grep transition=TABLE:1
173 ${downstream_flow_0_added}= Execute ONOS CLI Command ${ip} ${port}
174 ... ${flow_vlan_pop_cmd}
175 Should Not Be Empty ${downstream_flow_0_added}
176 # Verify downstream table=1 flow
177 ${downstream_flow_1_added}= Execute ONOS CLI Command ${ip} ${port}
Hardik Windlass25e11702020-03-30 20:05:19 +0530178 ... 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 +0530179 Should Not Be Empty ${downstream_flow_1_added}
180
181Verify Subscriber Access Flows Added Count DT
Hardik Windlass25e11702020-03-30 20:05:19 +0530182 [Arguments] ${ip} ${port} ${olt_of_id} ${expected_flows}
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530183 [Documentation] Matches for total number of subscriber access flows added for all onus
184 ${access_flows_added}= Execute ONOS CLI Command ${ip} ${port}
Hardik Windlass25e11702020-03-30 20:05:19 +0530185 ... flows -s ADDED ${olt_of_id} | grep -v deviceId | grep -v ETH_TYPE:lldp | wc -l
Hardik Windlassfb5eace2020-03-26 14:49:01 +0530186 Should Be Equal As Integers ${access_flows_added} ${expected_flows}
187
Hardik Windlass2a9b1592020-07-23 18:28:13 +0530188Get Programmed Subscribers
189 [Arguments] ${ip} ${port} ${olt_of_id} ${onu_port}
190 [Documentation] Retrieves the subscriber details at a given location
191 ${sub_location}= Catenate SEPARATOR=/ ${olt_of_id} ${onu_port}
192 ${programmed_sub}= Execute ONOS CLI Command ${ip} ${port}
193 ... volt-programmed-subscribers | grep ${sub_location}
194 [Return] ${programmed_sub}
195
196Get Upstream and Downstream Bandwidth Profile Name
197 [Arguments] ${programmed_sub}
198 [Documentation] Retrieves the upstream and downstream bandwidth profile name
199 ... from the programmed subscriber
200 @{programmed_sub_array}= Split String ${programmed_sub} ,
201 # Get upstream bandwidth profile name for the subscriber
202 @{param_val_pair}= Split String ${programmed_sub_array[9]} =
203 ${programmed_sub_param}= Set Variable ${param_val_pair[0]}
204 ${programmed_sub_val}= Set Variable ${param_val_pair[1]}
205 ${us_bw_profile}= Run Keyword If '${programmed_sub_param}' == ' upstreamBandwidthProfile'
206 ... Set Variable ${programmed_sub_val}
207 Log ${us_bw_profile}
208 # Get downstream bandwidth profile name for the subscriber
209 @{param_val_pair}= Split String ${programmed_sub_array[10]} =
210 ${programmed_sub_param}= Set Variable ${param_val_pair[0]}
211 ${programmed_sub_val}= Set Variable ${param_val_pair[1]}
212 ${ds_bw_profile}= Run Keyword If '${programmed_sub_param}' == ' downstreamBandwidthProfile'
213 ... Set Variable ${programmed_sub_val}
214 Log ${ds_bw_profile}
215 [Return] ${us_bw_profile} ${ds_bw_profile}
216
217Get Bandwidth Profile Details
218 [Arguments] ${ip} ${port} ${bw_profile}
219 [Documentation] Retrieves the details of the given bandwidth profile
220 ${bw_profile_values}= Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
221 ... bandwidthprofile ${bw_profile}
222 @{bw_profile_array}= Split String ${bw_profile_values} ,
223 @{param_val_pair}= Split String ${bw_profile_array[1]} =
224 ${bw_param}= Set Variable ${param_val_pair[0]}
225 ${bw_val}= Set Variable ${param_val_pair[1]}
226 ${cir} Run Keyword If '${bw_param}' == ' committedInformationRate'
227 ... Set Variable ${bw_val}
228 @{param_val_pair}= Split String ${bw_profile_array[2]} =
229 ${bw_param}= Set Variable ${param_val_pair[0]}
230 ${bw_val}= Set Variable ${param_val_pair[1]}
231 ${cbs} Run Keyword If '${bw_param}' == ' committedBurstSize'
232 ... Set Variable ${bw_val}
233 @{param_val_pair}= Split String ${bw_profile_array[3]} =
234 ${bw_param}= Set Variable ${param_val_pair[0]}
235 ${bw_val}= Set Variable ${param_val_pair[1]}
236 ${eir} Run Keyword If '${bw_param}' == ' exceededInformationRate'
237 ... Set Variable ${bw_val}
238 @{param_val_pair}= Split String ${bw_profile_array[4]} =
239 ${bw_param}= Set Variable ${param_val_pair[0]}
240 ${bw_val}= Set Variable ${param_val_pair[1]}
241 ${ebs} Run Keyword If '${bw_param}' == ' exceededBurstSize'
242 ... Set Variable ${bw_val}
243 @{param_val_pair}= Split String ${bw_profile_array[5]} =
244 ${bw_param}= Set Variable ${param_val_pair[0]}
245 ${bw_val}= Set Variable ${param_val_pair[1]}
246 @{bw_val_air}= Split String ${bw_val} }
247 ${air} Run Keyword If '${bw_param}' == ' assuredInformationRate'
248 ... Set Variable ${bw_val_air[0]}
249 [Return] ${cir} ${cbs} ${eir} ${ebs} ${air}
250
251Verify Meters in ONOS
252 [Arguments] ${ip} ${port} ${olt_of_id} ${onu_port}
253 [Documentation] Verifies the meters
254 # Get programmed subscriber
255 ${programmed_sub}= Get Programmed Subscribers ${ip} ${port}
256 ... ${olt_of_id} ${onu_port}
257 Log ${programmed_sub}
258 ${us_bw_profile} ${ds_bw_profile} Get Upstream and Downstream Bandwidth Profile Name
259 ... ${programmed_sub}
260 # Get upstream bandwidth profile details
261 ${us_cir} ${us_cbs} ${us_eir} ${us_ebs} ${us_air} Get Bandwidth Profile Details
262 ... ${ip} ${port} ${us_bw_profile}
263 Sleep 1s
264 # Verify meter for upstream bandwidth profile
265 ${us_meter_cmd}= Catenate SEPARATOR=
266 ... meters ${olt_of_id} | grep state=ADDED | grep rate=${us_cir} | grep burst-size=${us_cbs}
267 ... | grep rate=${us_eir} | grep burst-size=${us_ebs} | grep rate=${us_air} | wc -l
268 ${upstream_meter_added}= Execute ONOS CLI Command ${ip} ${port}
269 ... ${us_meter_cmd}
270 Should Be Equal As Integers ${upstream_meter_added} 1
271 Sleep 1s
272 # Get downstream bandwidth profile details
273 ${ds_cir} ${ds_cbs} ${ds_eir} ${ds_ebs} ${ds_air} Get Bandwidth Profile Details
274 ... ${ip} ${port} ${ds_bw_profile}
275 Sleep 1s
276 # Verify meter for downstream bandwidth profile
277 ${ds_meter_cmd}= Catenate SEPARATOR=
278 ... meters ${olt_of_id} | grep state=ADDED | grep rate=${ds_cir} | grep burst-size=${ds_cbs}
279 ... | grep rate=${ds_eir} | grep burst-size=${ds_ebs} | grep rate=${ds_air} | wc -l
280 ${downstream_meter_added}= Execute ONOS CLI Command ${ip} ${port}
281 ... ${ds_meter_cmd}
282 Should Be Equal As Integers ${downstream_meter_added} 1
283
284Verify Default Meter Present in ONOS
285 [Arguments] ${ip} ${port} ${olt_of_id}
286 [Documentation] Verifies the single default meter entry is present
287 ${meter_added}= Execute ONOS CLI Command ${ip} ${port}
288 ... meters ${olt_of_id} | grep state=ADDED | wc -l
289 Should Be Equal As Integers ${meter_added} 1
290
Hardik Windlass480f3e22020-04-02 20:14:14 +0530291Verify Device Flows Removed
292 [Arguments] ${ip} ${port} ${olt_of_id}
293 [Documentation] Verifies all flows are removed from the device
294 ${device_flows}= Execute ONOS CLI Command ${ip} ${port}
295 ... flows -s -f ${olt_of_id} | grep -v deviceId | wc -l
296 Should Be Equal As Integers ${device_flows} 0
297
Kailash6f5acb62019-08-28 14:38:45 -0700298Verify Eapol Flows Added
Andy Bavierb0c06232019-08-29 12:58:53 -0700299 [Arguments] ${ip} ${port} ${expected_flows}
Kailash6f5acb62019-08-28 14:38:45 -0700300 [Documentation] Matches for number of eapol flows based on number of onus
Gilles Depatie675a2062019-10-22 12:44:42 -0400301 ${eapol_flows_added}= Execute ONOS CLI Command ${ip} ${port}
302 ... flows -s -f ADDED | grep eapol | grep IN_PORT | wc -l
Andy Bavierb0c06232019-08-29 12:58:53 -0700303 Should Contain ${eapol_flows_added} ${expected_flows}
Kailash6f5acb62019-08-28 14:38:45 -0700304
Suchitra Vemuri9da44302020-03-04 14:24:49 -0800305Verify No Pending Flows For ONU
306 [Arguments] ${ip} ${port} ${onu_port}
307 [Documentation] Verifies that there are no flows "PENDING" state for the ONU in ONOS
308 ${pending_flows}= Execute ONOS CLI Command ${ip} ${port}
309 ... flows -s | grep IN_PORT:${onu_port} | grep PENDING
310 Should Be Empty ${pending_flows}
311
Suchitra Vemuri3dd2f832019-10-18 13:14:54 -0700312Verify Eapol Flows Added For ONU
313 [Arguments] ${ip} ${port} ${onu_port}
314 [Documentation] Verifies if the Eapol Flows are added in ONOS for the ONU
Gilles Depatie675a2062019-10-22 12:44:42 -0400315 ${eapol_flows_added}= Execute ONOS CLI Command ${ip} ${port}
316 ... flows -s -f ADDED | grep eapol | grep IN_PORT:${onu_port}
Suchitra Vemuri3dd2f832019-10-18 13:14:54 -0700317 Should Not Be Empty ${eapol_flows_added}
318
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800319Verify ONU Port Is Enabled
Suchitra Vemuri760bdd32020-06-17 12:34:48 -0700320 [Arguments] ${ip} ${port} ${onu_name}
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800321 [Documentation] Verifies if the ONU port is enabled in ONOS
322 ${onu_port_enabled}= Execute ONOS CLI Command ${ip} ${port}
Suchitra Vemuri760bdd32020-06-17 12:34:48 -0700323 ... ports -e | grep portName=${onu_name}
Suchitra Vemuri8078b972020-02-06 19:07:41 -0800324 Log ${onu_port_enabled}
325 Should Not Be Empty ${onu_port_enabled}
326
Hardik Windlass63d5e002020-03-06 21:07:09 +0530327Verify ONU Port Is Disabled
Suchitra Vemuri760bdd32020-06-17 12:34:48 -0700328 [Arguments] ${ip} ${port} ${onu_name}
Hardik Windlass63d5e002020-03-06 21:07:09 +0530329 [Documentation] Verifies if the ONU port is disabled in ONOS
330 ${onu_port_disabled}= Execute ONOS CLI Command ${ip} ${port}
Suchitra Vemuri760bdd32020-06-17 12:34:48 -0700331 ... ports -e | grep portName=${onu_name}
Hardik Windlass63d5e002020-03-06 21:07:09 +0530332 Log ${onu_port_disabled}
333 Should Be Empty ${onu_port_disabled}
334
Suchitra Vemuri8a9c3782019-10-23 12:43:01 -0700335Verify ONU in AAA-Users
336 [Arguments] ${ip} ${port} ${onu_port}
337 [Documentation] Verifies that the specified onu_port exists in aaa-users output
338 ${aaa_users}= Execute ONOS CLI Command ${ip} ${port} aaa-users | grep AUTHORIZED | grep ${onu_port}
339 Should Not Be Empty ${aaa_users} ONU port ${onu_port} not found in aaa-users
340
Matteo Scandolo142e6272020-04-29 17:36:59 -0700341Assert Number of AAA-Users
Kailash2b963f02019-08-28 22:46:33 -0700342 [Arguments] ${ip} ${port} ${expected_onus}
Kailash6f5acb62019-08-28 14:38:45 -0700343 [Documentation] Matches for number of aaa-users authorized based on number of onus
Kailash30c418f2019-09-11 13:50:10 -0700344 ${aaa_users}= Execute ONOS CLI Command ${ip} ${port} aaa-users | grep AUTHORIZED | wc -l
Matteo Scandolo142e6272020-04-29 17:36:59 -0700345 Should Be Equal As Integers ${aaa_users} ${expected_onus}
Kailash6f5acb62019-08-28 14:38:45 -0700346
347Validate DHCP Allocations
Kailash2b963f02019-08-28 22:46:33 -0700348 [Arguments] ${ip} ${port} ${expected_onus}
Kailash6f5acb62019-08-28 14:38:45 -0700349 [Documentation] Matches for number of dhcpacks based on number of onus
Kailash30c418f2019-09-11 13:50:10 -0700350 ${allocations}= Execute ONOS CLI Command ${ip} ${port} dhcpl2relay-allocations | grep DHCPACK | wc -l
Matteo Scandolo142e6272020-04-29 17:36:59 -0700351 Should Be Equal As Integers ${allocations} ${expected_onus}
Suchitra Vemuri8a9c3782019-10-23 12:43:01 -0700352
353Validate Subscriber DHCP Allocation
354 [Arguments] ${ip} ${port} ${onu_port}
355 [Documentation] Verifies that the specified subscriber is found in DHCP allocations
356 ##TODO: Enhance the keyword to include DHCP allocated address is not 0.0.0.0
Gilles Depatie675a2062019-10-22 12:44:42 -0400357 ${allocations}= Execute ONOS CLI Command ${ip} ${port}
358 ... dhcpl2relay-allocations | grep DHCPACK | grep ${onu_port}
359 Should Not Be Empty ${allocations} ONU port ${onu_port} not found in dhcpl2relay-allocations
David Bainbridgef81cd642019-11-20 00:14:47 +0000360
361Device Is Available In ONOS
362 [Arguments] ${url} ${dpid}
363 [Documentation] Validates the device exists and it available in ONOS
364 ${rc} ${json} Run And Return Rc And Output curl --fail -sSL ${url}/onos/v1/devices/${dpid}
365 Should Be Equal As Integers 0 ${rc}
366 ${rc} ${value} Run And Return Rc And Output echo '${json}' | jq -r .available
367 Should Be Equal As Integers 0 ${rc}
368 Should Be Equal 'true' '${value}'
369
370Remove All Devices From ONOS
371 [Arguments] ${url}
372 [Documentation] Executes the device-remove command on each device in ONOS
TorstenThiemebccd3ae2020-02-20 12:56:44 +0000373 ${rc} ${output} Run And Return Rc And Output
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700374 ... curl --fail -sSL ${url}/onos/v1/devices | jq -r '.devices[].id'
David Bainbridgef81cd642019-11-20 00:14:47 +0000375 Should Be Equal As Integers ${rc} 0
TorstenThiemebccd3ae2020-02-20 12:56:44 +0000376 @{dpids} Split String ${output}
David Bainbridgef81cd642019-11-20 00:14:47 +0000377 ${count}= Get length ${dpids}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700378 FOR ${dpid} IN @{dpids}
379 ${rc}= Run Keyword If '${dpid}' != ''
380 ... Run And Return Rc curl -XDELETE --fail -sSL ${url}/onos/v1/devices/${dpid}
381 Run Keyword If '${dpid}' != ''
382 ... Should Be Equal As Integers ${rc} 0
383 END
Matteo Scandolo142e6272020-04-29 17:36:59 -0700384
385Assert Ports in ONOS
386 [Arguments] ${ip} ${port} ${count} ${filter}
387 [Documentation] Check that a certain number of ports are enabled in ONOS
388 ${ports}= Execute ONOS CLI Command ${ip} ${port}
389 ... ports -e | grep ${filter} | wc -l
390 Should Be Equal As Integers ${ports} ${count}
391
392Wait for Ports in ONOS
393 [Arguments] ${ip} ${port} ${count} ${filter}
394 [Documentation] Waits untill a certain number of ports are enabled in ONOS
395 Wait Until Keyword Succeeds 10m 5s Assert Ports in ONOS ${ip} ${port} ${count} ${filter}
396
397Wait for AAA Authentication
398 [Arguments] ${ip} ${port} ${count}
399 [Documentation] Waits untill a certain number of subscribers are authenticated in ONOS
400 Wait Until Keyword Succeeds 10m 5s Assert Number of AAA-Users ${ip} ${port} ${count}
401
402Wait for DHCP Ack
403 [Arguments] ${ip} ${port} ${count}
404 [Documentation] Waits untill a certain number of subscribers have received a DHCP_ACK
405 Wait Until Keyword Succeeds 10m 5s Validate DHCP Allocations ${ip} ${port} ${count}
406
407Provision subscriber
408 [Documentation] Calls volt-add-subscriber-access in ONOS
409 [Arguments] ${onos_ip} ${onos_port} ${of_id} ${onu_port}
410 Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
411 ... volt-add-subscriber-access ${of_id} ${onu_port}
412
Matteo Scandolo96dbe432020-05-28 10:51:57 -0700413Provision subscriber REST
414 [Documentation] Uses the rest APIs to provision a subscriber
415 [Arguments] ${onos_ip} ${onos_port} ${of_id} ${onu_port}
416 ${resp}= Post Request ONOS
417 ... /onos/olt/oltapp/${of_id}/${onu_port}
418 Should Be Equal As Strings ${resp.status_code} 200
419
420
Matteo Scandolo142e6272020-04-29 17:36:59 -0700421List Enabled UNI Ports
422 [Documentation] List all the UNI Ports, the only way we have is to filter out the one called NNI
423 ... Creates a list of dictionaries
424 [Arguments] ${onos_ip} ${onos_port} ${of_id}
425 [Return] [{'port': '16', 'of_id': 'of:00000a0a0a0a0a00'}, {'port': '32', 'of_id': 'of:00000a0a0a0a0a00'}]
426 ${result}= Create List
427 ${out}= Execute ONOS CLI Command ${onos_ip} ${onos_port}
428 ... ports -e ${of_id} | grep -v SWITCH | grep -v nni
TorstenThiemebccd3ae2020-02-20 12:56:44 +0000429 @{unis}= Split To Lines ${out}
Matteo Scandolo142e6272020-04-29 17:36:59 -0700430 FOR ${uni} IN @{unis}
TorstenThiemebccd3ae2020-02-20 12:56:44 +0000431 ${matches} = Get Regexp Matches ${uni} .*port=([0-9]+),.* 1
Matteo Scandolo142e6272020-04-29 17:36:59 -0700432 &{portDict} Create Dictionary of_id=${of_id} port=${matches[0]}
433 Append To List ${result} ${portDict}
434 END
435 Log ${result}
436 Return From Keyword ${result}
437
438Provision all subscribers on device
Matteo Scandolo96dbe432020-05-28 10:51:57 -0700439 [Documentation] Provisions a subscriber in ONOS for all the enabled UNI ports on a particular device
440 [Arguments] ${onos_ip} ${onos_ssh_port} ${onos_rest_port} ${of_id}
441 ${unis}= List Enabled UNI Ports ${onos_ip} ${onos_ssh_port} ${of_id}
442 ${onos_auth}= Create List karaf karaf
443 Create Session ONOS http://${onos_ip}:${onos_rest_port} auth=${onos_auth}
Matteo Scandolo142e6272020-04-29 17:36:59 -0700444 FOR ${uni} IN @{unis}
Matteo Scandolo96dbe432020-05-28 10:51:57 -0700445 Provision Subscriber REST ${onos_ip} ${onos_rest_port} ${uni['of_id']} ${uni['port']}
Matteo Scandolo142e6272020-04-29 17:36:59 -0700446 END
447
448List OLTs
449 [Documentation] Returns a list of OLTs known to ONOS
450 [Arguments] ${onos_ip} ${onos_port}
451 [Return] ['of:00000a0a0a0a0a00', 'of:00000a0a0a0a0a01']
452 ${result}= Create List
453 ${out}= Execute ONOS CLI Command ${onos_ip} ${onos_port}
454 ... volt-olts
TorstenThiemebccd3ae2020-02-20 12:56:44 +0000455 @{olts}= Split To Lines ${out}
Matteo Scandolo142e6272020-04-29 17:36:59 -0700456 FOR ${olt} IN @{olts}
457 Log ${olt}
TorstenThiemebccd3ae2020-02-20 12:56:44 +0000458 ${matches} = Get Regexp Matches ${olt} ^OLT (.+)$ 1
Matteo Scandolo142e6272020-04-29 17:36:59 -0700459 # there may be some logs mixed with the output so only append if we have a match
460 ${matches_length}= Get Length ${matches}
461 Run Keyword If ${matches_length}==1
462 ... Append To List ${result} ${matches[0]}
463 END
464 Return From Keyword ${result}
465
466Count ADDED flows
467 [Documentation] Count the flows in ADDED state in ONOS
468 [Arguments] ${onos_ip} ${onos_port} ${targetFlows}
469 ${flows}= Execute ONOS CLI Command ${onos_ip} ${onos_port}
470 ... flows -s | grep ADDED | wc -l
471 Should Be Equal As Integers ${targetFlows} ${flows}
472
473Wait for all flows to in ADDED state
474 [Documentation] Waits until the flows have been provisioned
475 [Arguments] ${onos_ip} ${onos_port} ${workflow} ${uni_count} ${olt_count} ${provisioned}
Andrea Campanella70cf0a72020-05-27 10:55:15 +0200476 ... ${withEapol} ${withDhcp} ${withIgmp} ${withLldp}
Matteo Scandolo142e6272020-04-29 17:36:59 -0700477 ${targetFlows}= Calculate flows by workflow ${workflow} ${uni_count} ${olt_count} ${provisioned}
Andrea Campanella70cf0a72020-05-27 10:55:15 +0200478 ... ${withEapol} ${withDhcp} ${withIgmp} ${withLldp}
Matteo Scandolo142e6272020-04-29 17:36:59 -0700479 Wait Until Keyword Succeeds 10m 5s Count ADDED flows
480 ... ${onos_ip} ${onos_port} ${targetFlows}
Gayathri.Selvan92d16862020-03-19 14:47:58 +0000481
482Get Bandwidth Details
483 [Arguments] ${bandwidth_profile_name}
484 [Documentation] Collects the bandwidth profile details for the given bandwidth profile and
485 ... returns the limiting bandwidth
486 ${bandwidth_profile_values}= Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
487 ... bandwidthprofile ${bandwidth_profile_name}
488 @{bandwidth_profile_array}= Split String ${bandwidth_profile_values} ,
489 @{parameter_value_pair}= Split String ${bandwidth_profile_array[1]} =
490 ${bandwidthparameter}= Set Variable ${parameter_value_pair[0]}
491 ${value}= Set Variable ${parameter_value_pair[1]}
492 ${cir_value} Run Keyword If '${bandwidthparameter}' == ' committedInformationRate'
493 ... Set Variable ${value}
494 @{parameter_value_pair}= Split String ${bandwidth_profile_array[2]} =
495 ${bandwidthparameter}= Set Variable ${parameter_value_pair[0]}
496 ${value}= Set Variable ${parameter_value_pair[1]}
497 ${cbs_value} Run Keyword If '${bandwidthparameter}' == ' committedBurstSize' Set Variable ${value}
498 @{parameter_value_pair}= Split String ${bandwidth_profile_array[3]} =
499 ${bandwidthparameter}= Set Variable ${parameter_value_pair[0]}
500 ${value}= Set Variable ${parameter_value_pair[1]}
501 ${eir_value} Run Keyword If '${bandwidthparameter}' == ' exceededInformationRate' Set Variable ${value}
502 @{parameter_value_pair}= Split String ${bandwidth_profile_array[4]} =
503 ${bandwidthparameter}= Set Variable ${parameter_value_pair[0]}
504 ${value}= Set Variable ${parameter_value_pair[1]}
505 ${ebs_value} Run Keyword If '${bandwidthparameter}' == ' exceededBurstSize' Set Variable ${value}
506 ${limiting_BW}= Evaluate ${cir_value}+${eir_value}
507 [Return] ${limiting_BW}