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 | # onos 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 |
Matteo Scandolo | eb26a84 | 2020-05-08 10:06:24 -0700 | [diff] [blame] | 25 | Resource ./flows.robot |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 26 | |
| 27 | *** Keywords *** |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 28 | Validate OLT Device in ONOS |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 29 | # FIXME use volt-olts to check that the OLT is ONOS |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 30 | [Arguments] ${serial_number} |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 31 | [Documentation] Checks if olt has been connected to ONOS |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 32 | ${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 Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 37 | ${matched}= Set Variable False |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 38 | 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 Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 42 | ${matched}= Set Variable If '${sn}' == '${serial_number}' True False |
| 43 | Exit For Loop If ${matched} |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 44 | END |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 45 | Should Be True ${matched} No match for ${serial_number} found |
Kailash | 57210eb | 2019-08-30 13:27:19 -0700 | [diff] [blame] | 46 | [Return] ${of_id} |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 47 | |
Suchitra Vemuri | 102912a | 2019-09-24 00:35:42 -0700 | [diff] [blame] | 48 | Get ONU Port in ONOS |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 49 | [Arguments] ${onu_serial_number} ${olt_of_id} |
Suchitra Vemuri | 102912a | 2019-09-24 00:35:42 -0700 | [diff] [blame] | 50 | [Documentation] Retrieves ONU port for the ONU in ONOS |
Suchitra Vemuri | a50c1c1 | 2019-09-30 19:54:26 -0700 | [diff] [blame] | 51 | ${onu_serial_number}= Catenate SEPARATOR=- ${onu_serial_number} 1 |
Suchitra Vemuri | 102912a | 2019-09-24 00:35:42 -0700 | [diff] [blame] | 52 | ${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 Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 57 | ${matched}= Set Variable False |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 58 | 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 Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 63 | ${matched}= Set Variable If '${portName}' == '${onu_serial_number}' True False |
| 64 | Exit For Loop If ${matched} |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 65 | END |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 66 | Should Be True ${matched} No match for ${onu_serial_number} found |
Suchitra Vemuri | 102912a | 2019-09-24 00:35:42 -0700 | [diff] [blame] | 67 | [Return] ${onu_port} |
| 68 | |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 69 | Get 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 Vemuri | 532f67a | 2019-09-25 11:50:42 -0700 | [diff] [blame] | 90 | Get 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 Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 96 | ${matched}= Set Variable False |
Suchitra Vemuri | 532f67a | 2019-09-25 11:50:42 -0700 | [diff] [blame] | 97 | 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 Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 101 | ${matched}= Set Variable If '${type}' == "SWITCH" True False |
| 102 | Exit For Loop If ${matched} |
Suchitra Vemuri | 532f67a | 2019-09-25 11:50:42 -0700 | [diff] [blame] | 103 | END |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 104 | Should Be True ${matched} No fabric switch found |
Suchitra Vemuri | 532f67a | 2019-09-25 11:50:42 -0700 | [diff] [blame] | 105 | [Return] ${of_id} |
| 106 | |
Hardik Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 107 | Verify 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 Campanella | 5e9051c | 2020-04-30 14:38:35 +0200 | [diff] [blame] | 140 | ... 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 Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 143 | ${upstream_flow_ipv4_added}= Execute ONOS CLI Command ${ip} ${port} |
| 144 | ... ${upstream_flow_ipv4_cmd} |
Andrea Campanella | 5e9051c | 2020-04-30 14:38:35 +0200 | [diff] [blame] | 145 | Should Not Be Empty ${upstream_flow_ipv4_added} |
Hardik Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 146 | # Verify ipv4 dhcp downstream flow |
| 147 | # Note: This flow will be one per nni per olt |
| 148 | ${downstream_flow_ipv4_cmd}= Catenate SEPARATOR= |
Andrea Campanella | 5e9051c | 2020-04-30 14:38:35 +0200 | [diff] [blame] | 149 | ... 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 Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 151 | ${downstream_flow_ipv4_added}= Execute ONOS CLI Command ${ip} ${port} |
| 152 | ... ${downstream_flow_ipv4_cmd} |
Andrea Campanella | 5e9051c | 2020-04-30 14:38:35 +0200 | [diff] [blame] | 153 | Should Not Be Empty ${downstream_flow_ipv4_added} |
Hardik Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 154 | |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 155 | Verify Subscriber Access Flows Added for ONU DT |
Hardik Windlass | 25e1170 | 2020-03-30 20:05:19 +0530 | [diff] [blame] | 156 | [Arguments] ${ip} ${port} ${olt_of_id} ${onu_port} ${nni_port} ${s_tag} |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 157 | [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 Windlass | 25e1170 | 2020-03-30 20:05:19 +0530 | [diff] [blame] | 160 | ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${onu_port} | grep VLAN_VID:Any | grep transition=TABLE:1 |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 161 | Should Not Be Empty ${upstream_flow_0_added} |
| 162 | # Verify upstream table=1 flow |
| 163 | ${flow_vlan_push_cmd}= Catenate SEPARATOR= |
Hardik Windlass | 25e1170 | 2020-03-30 20:05:19 +0530 | [diff] [blame] | 164 | ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${onu_port} | grep VLAN_VID:Any | |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 165 | ... 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 Windlass | 25e1170 | 2020-03-30 20:05:19 +0530 | [diff] [blame] | 171 | ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${nni_port} | grep VLAN_VID:${s_tag} | |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 172 | ... 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 Windlass | 25e1170 | 2020-03-30 20:05:19 +0530 | [diff] [blame] | 178 | ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${nni_port} | grep VLAN_VID:Any | grep OUTPUT:${onu_port} |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 179 | Should Not Be Empty ${downstream_flow_1_added} |
| 180 | |
| 181 | Verify Subscriber Access Flows Added Count DT |
Hardik Windlass | 25e1170 | 2020-03-30 20:05:19 +0530 | [diff] [blame] | 182 | [Arguments] ${ip} ${port} ${olt_of_id} ${expected_flows} |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 183 | [Documentation] Matches for total number of subscriber access flows added for all onus |
| 184 | ${access_flows_added}= Execute ONOS CLI Command ${ip} ${port} |
Hardik Windlass | 25e1170 | 2020-03-30 20:05:19 +0530 | [diff] [blame] | 185 | ... flows -s ADDED ${olt_of_id} | grep -v deviceId | grep -v ETH_TYPE:lldp | wc -l |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 186 | Should Be Equal As Integers ${access_flows_added} ${expected_flows} |
| 187 | |
Hardik Windlass | 480f3e2 | 2020-04-02 20:14:14 +0530 | [diff] [blame] | 188 | Verify Device Flows Removed |
| 189 | [Arguments] ${ip} ${port} ${olt_of_id} |
| 190 | [Documentation] Verifies all flows are removed from the device |
| 191 | ${device_flows}= Execute ONOS CLI Command ${ip} ${port} |
| 192 | ... flows -s -f ${olt_of_id} | grep -v deviceId | wc -l |
| 193 | Should Be Equal As Integers ${device_flows} 0 |
| 194 | |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 195 | Verify Eapol Flows Added |
Andy Bavier | b0c0623 | 2019-08-29 12:58:53 -0700 | [diff] [blame] | 196 | [Arguments] ${ip} ${port} ${expected_flows} |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 197 | [Documentation] Matches for number of eapol flows based on number of onus |
Gilles Depatie | 675a206 | 2019-10-22 12:44:42 -0400 | [diff] [blame] | 198 | ${eapol_flows_added}= Execute ONOS CLI Command ${ip} ${port} |
| 199 | ... flows -s -f ADDED | grep eapol | grep IN_PORT | wc -l |
Andy Bavier | b0c0623 | 2019-08-29 12:58:53 -0700 | [diff] [blame] | 200 | Should Contain ${eapol_flows_added} ${expected_flows} |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 201 | |
Suchitra Vemuri | 9da4430 | 2020-03-04 14:24:49 -0800 | [diff] [blame] | 202 | Verify No Pending Flows For ONU |
| 203 | [Arguments] ${ip} ${port} ${onu_port} |
| 204 | [Documentation] Verifies that there are no flows "PENDING" state for the ONU in ONOS |
| 205 | ${pending_flows}= Execute ONOS CLI Command ${ip} ${port} |
| 206 | ... flows -s | grep IN_PORT:${onu_port} | grep PENDING |
| 207 | Should Be Empty ${pending_flows} |
| 208 | |
Suchitra Vemuri | 3dd2f83 | 2019-10-18 13:14:54 -0700 | [diff] [blame] | 209 | Verify Eapol Flows Added For ONU |
| 210 | [Arguments] ${ip} ${port} ${onu_port} |
| 211 | [Documentation] Verifies if the Eapol Flows are added in ONOS for the ONU |
Gilles Depatie | 675a206 | 2019-10-22 12:44:42 -0400 | [diff] [blame] | 212 | ${eapol_flows_added}= Execute ONOS CLI Command ${ip} ${port} |
| 213 | ... flows -s -f ADDED | grep eapol | grep IN_PORT:${onu_port} |
Suchitra Vemuri | 3dd2f83 | 2019-10-18 13:14:54 -0700 | [diff] [blame] | 214 | Should Not Be Empty ${eapol_flows_added} |
| 215 | |
Suchitra Vemuri | 8078b97 | 2020-02-06 19:07:41 -0800 | [diff] [blame] | 216 | Verify ONU Port Is Enabled |
| 217 | [Arguments] ${ip} ${port} ${onu_port} |
| 218 | [Documentation] Verifies if the ONU port is enabled in ONOS |
| 219 | ${onu_port_enabled}= Execute ONOS CLI Command ${ip} ${port} |
Suchitra Vemuri | 8e15ead | 2020-02-07 14:41:50 -0800 | [diff] [blame] | 220 | ... ports -e | grep port=${onu_port} |
Suchitra Vemuri | 8078b97 | 2020-02-06 19:07:41 -0800 | [diff] [blame] | 221 | Log ${onu_port_enabled} |
| 222 | Should Not Be Empty ${onu_port_enabled} |
| 223 | |
Hardik Windlass | 63d5e00 | 2020-03-06 21:07:09 +0530 | [diff] [blame] | 224 | Verify ONU Port Is Disabled |
| 225 | [Arguments] ${ip} ${port} ${onu_port} |
| 226 | [Documentation] Verifies if the ONU port is disabled in ONOS |
| 227 | ${onu_port_disabled}= Execute ONOS CLI Command ${ip} ${port} |
| 228 | ... ports -e | grep port=${onu_port} |
| 229 | Log ${onu_port_disabled} |
| 230 | Should Be Empty ${onu_port_disabled} |
| 231 | |
Suchitra Vemuri | 8a9c378 | 2019-10-23 12:43:01 -0700 | [diff] [blame] | 232 | Verify ONU in AAA-Users |
| 233 | [Arguments] ${ip} ${port} ${onu_port} |
| 234 | [Documentation] Verifies that the specified onu_port exists in aaa-users output |
| 235 | ${aaa_users}= Execute ONOS CLI Command ${ip} ${port} aaa-users | grep AUTHORIZED | grep ${onu_port} |
| 236 | Should Not Be Empty ${aaa_users} ONU port ${onu_port} not found in aaa-users |
| 237 | |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 238 | Assert Number of AAA-Users |
Kailash | 2b963f0 | 2019-08-28 22:46:33 -0700 | [diff] [blame] | 239 | [Arguments] ${ip} ${port} ${expected_onus} |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 240 | [Documentation] Matches for number of aaa-users authorized based on number of onus |
Kailash | 30c418f | 2019-09-11 13:50:10 -0700 | [diff] [blame] | 241 | ${aaa_users}= Execute ONOS CLI Command ${ip} ${port} aaa-users | grep AUTHORIZED | wc -l |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 242 | Should Be Equal As Integers ${aaa_users} ${expected_onus} |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 243 | |
| 244 | Validate DHCP Allocations |
Kailash | 2b963f0 | 2019-08-28 22:46:33 -0700 | [diff] [blame] | 245 | [Arguments] ${ip} ${port} ${expected_onus} |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 246 | [Documentation] Matches for number of dhcpacks based on number of onus |
Kailash | 30c418f | 2019-09-11 13:50:10 -0700 | [diff] [blame] | 247 | ${allocations}= Execute ONOS CLI Command ${ip} ${port} dhcpl2relay-allocations | grep DHCPACK | wc -l |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 248 | Should Be Equal As Integers ${allocations} ${expected_onus} |
Suchitra Vemuri | 8a9c378 | 2019-10-23 12:43:01 -0700 | [diff] [blame] | 249 | |
| 250 | Validate Subscriber DHCP Allocation |
| 251 | [Arguments] ${ip} ${port} ${onu_port} |
| 252 | [Documentation] Verifies that the specified subscriber is found in DHCP allocations |
| 253 | ##TODO: Enhance the keyword to include DHCP allocated address is not 0.0.0.0 |
Gilles Depatie | 675a206 | 2019-10-22 12:44:42 -0400 | [diff] [blame] | 254 | ${allocations}= Execute ONOS CLI Command ${ip} ${port} |
| 255 | ... dhcpl2relay-allocations | grep DHCPACK | grep ${onu_port} |
| 256 | Should Not Be Empty ${allocations} ONU port ${onu_port} not found in dhcpl2relay-allocations |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 257 | |
| 258 | Device Is Available In ONOS |
| 259 | [Arguments] ${url} ${dpid} |
| 260 | [Documentation] Validates the device exists and it available in ONOS |
| 261 | ${rc} ${json} Run And Return Rc And Output curl --fail -sSL ${url}/onos/v1/devices/${dpid} |
| 262 | Should Be Equal As Integers 0 ${rc} |
| 263 | ${rc} ${value} Run And Return Rc And Output echo '${json}' | jq -r .available |
| 264 | Should Be Equal As Integers 0 ${rc} |
| 265 | Should Be Equal 'true' '${value}' |
| 266 | |
| 267 | Remove All Devices From ONOS |
| 268 | [Arguments] ${url} |
| 269 | [Documentation] Executes the device-remove command on each device in ONOS |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 270 | ${rc} @{dpids} Run And Return Rc And Output |
| 271 | ... curl --fail -sSL ${url}/onos/v1/devices | jq -r '.devices[].id' |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 272 | Should Be Equal As Integers ${rc} 0 |
| 273 | ${count}= Get length ${dpids} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 274 | FOR ${dpid} IN @{dpids} |
| 275 | ${rc}= Run Keyword If '${dpid}' != '' |
| 276 | ... Run And Return Rc curl -XDELETE --fail -sSL ${url}/onos/v1/devices/${dpid} |
| 277 | Run Keyword If '${dpid}' != '' |
| 278 | ... Should Be Equal As Integers ${rc} 0 |
| 279 | END |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 280 | |
| 281 | Assert Ports in ONOS |
| 282 | [Arguments] ${ip} ${port} ${count} ${filter} |
| 283 | [Documentation] Check that a certain number of ports are enabled in ONOS |
| 284 | ${ports}= Execute ONOS CLI Command ${ip} ${port} |
| 285 | ... ports -e | grep ${filter} | wc -l |
| 286 | Should Be Equal As Integers ${ports} ${count} |
| 287 | |
| 288 | Wait for Ports in ONOS |
| 289 | [Arguments] ${ip} ${port} ${count} ${filter} |
| 290 | [Documentation] Waits untill a certain number of ports are enabled in ONOS |
| 291 | Wait Until Keyword Succeeds 10m 5s Assert Ports in ONOS ${ip} ${port} ${count} ${filter} |
| 292 | |
| 293 | Wait for AAA Authentication |
| 294 | [Arguments] ${ip} ${port} ${count} |
| 295 | [Documentation] Waits untill a certain number of subscribers are authenticated in ONOS |
| 296 | Wait Until Keyword Succeeds 10m 5s Assert Number of AAA-Users ${ip} ${port} ${count} |
| 297 | |
| 298 | Wait for DHCP Ack |
| 299 | [Arguments] ${ip} ${port} ${count} |
| 300 | [Documentation] Waits untill a certain number of subscribers have received a DHCP_ACK |
| 301 | Wait Until Keyword Succeeds 10m 5s Validate DHCP Allocations ${ip} ${port} ${count} |
| 302 | |
| 303 | Provision subscriber |
| 304 | [Documentation] Calls volt-add-subscriber-access in ONOS |
| 305 | [Arguments] ${onos_ip} ${onos_port} ${of_id} ${onu_port} |
| 306 | Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
| 307 | ... volt-add-subscriber-access ${of_id} ${onu_port} |
| 308 | |
| 309 | List Enabled UNI Ports |
| 310 | [Documentation] List all the UNI Ports, the only way we have is to filter out the one called NNI |
| 311 | ... Creates a list of dictionaries |
| 312 | [Arguments] ${onos_ip} ${onos_port} ${of_id} |
| 313 | [Return] [{'port': '16', 'of_id': 'of:00000a0a0a0a0a00'}, {'port': '32', 'of_id': 'of:00000a0a0a0a0a00'}] |
| 314 | ${result}= Create List |
| 315 | ${out}= Execute ONOS CLI Command ${onos_ip} ${onos_port} |
| 316 | ... ports -e ${of_id} | grep -v SWITCH | grep -v nni |
| 317 | @{unis}= Split To Lines ${out} |
| 318 | FOR ${uni} IN @{unis} |
| 319 | ${matches} = Get Regexp Matches ${uni} .*port=([0-9]+),.* 1 |
| 320 | &{portDict} Create Dictionary of_id=${of_id} port=${matches[0]} |
| 321 | Append To List ${result} ${portDict} |
| 322 | END |
| 323 | Log ${result} |
| 324 | Return From Keyword ${result} |
| 325 | |
| 326 | Provision all subscribers on device |
| 327 | [Documentation] Calls volt-add-subscriber-access in ONOS for all the enabled UNI ports on a partivular device |
| 328 | [Arguments] ${onos_ip} ${onos_port} ${of_id} |
| 329 | ${unis}= List Enabled UNI Ports ${onos_ip} ${onos_port} ${of_id} |
| 330 | FOR ${uni} IN @{unis} |
| 331 | Provision subscriber ${onos_ip} ${onos_port} ${uni['of_id']} ${uni['port']} |
| 332 | END |
| 333 | |
| 334 | List OLTs |
| 335 | [Documentation] Returns a list of OLTs known to ONOS |
| 336 | [Arguments] ${onos_ip} ${onos_port} |
| 337 | [Return] ['of:00000a0a0a0a0a00', 'of:00000a0a0a0a0a01'] |
| 338 | ${result}= Create List |
| 339 | ${out}= Execute ONOS CLI Command ${onos_ip} ${onos_port} |
| 340 | ... volt-olts |
| 341 | @{olts}= Split To Lines ${out} |
| 342 | FOR ${olt} IN @{olts} |
| 343 | Log ${olt} |
| 344 | ${matches} = Get Regexp Matches ${olt} ^OLT (.+)$ 1 |
| 345 | # there may be some logs mixed with the output so only append if we have a match |
| 346 | ${matches_length}= Get Length ${matches} |
| 347 | Run Keyword If ${matches_length}==1 |
| 348 | ... Append To List ${result} ${matches[0]} |
| 349 | END |
| 350 | Return From Keyword ${result} |
| 351 | |
| 352 | Count ADDED flows |
| 353 | [Documentation] Count the flows in ADDED state in ONOS |
| 354 | [Arguments] ${onos_ip} ${onos_port} ${targetFlows} |
| 355 | ${flows}= Execute ONOS CLI Command ${onos_ip} ${onos_port} |
| 356 | ... flows -s | grep ADDED | wc -l |
| 357 | Should Be Equal As Integers ${targetFlows} ${flows} |
| 358 | |
| 359 | Wait for all flows to in ADDED state |
| 360 | [Documentation] Waits until the flows have been provisioned |
| 361 | [Arguments] ${onos_ip} ${onos_port} ${workflow} ${uni_count} ${olt_count} ${provisioned} |
Matteo Scandolo | eb26a84 | 2020-05-08 10:06:24 -0700 | [diff] [blame] | 362 | ... ${withEapol} ${withDhcp} ${withIgmp} |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 363 | ${targetFlows}= Calculate flows by workflow ${workflow} ${uni_count} ${olt_count} ${provisioned} |
Matteo Scandolo | eb26a84 | 2020-05-08 10:06:24 -0700 | [diff] [blame] | 364 | ... ${withEapol} ${withDhcp} ${withIgmp} |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 365 | Wait Until Keyword Succeeds 10m 5s Count ADDED flows |
| 366 | ... ${onos_ip} ${onos_port} ${targetFlows} |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 367 | |
| 368 | Get Bandwidth Details |
| 369 | [Arguments] ${bandwidth_profile_name} |
| 370 | [Documentation] Collects the bandwidth profile details for the given bandwidth profile and |
| 371 | ... returns the limiting bandwidth |
| 372 | ${bandwidth_profile_values}= Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
| 373 | ... bandwidthprofile ${bandwidth_profile_name} |
| 374 | @{bandwidth_profile_array}= Split String ${bandwidth_profile_values} , |
| 375 | @{parameter_value_pair}= Split String ${bandwidth_profile_array[1]} = |
| 376 | ${bandwidthparameter}= Set Variable ${parameter_value_pair[0]} |
| 377 | ${value}= Set Variable ${parameter_value_pair[1]} |
| 378 | ${cir_value} Run Keyword If '${bandwidthparameter}' == ' committedInformationRate' |
| 379 | ... Set Variable ${value} |
| 380 | @{parameter_value_pair}= Split String ${bandwidth_profile_array[2]} = |
| 381 | ${bandwidthparameter}= Set Variable ${parameter_value_pair[0]} |
| 382 | ${value}= Set Variable ${parameter_value_pair[1]} |
| 383 | ${cbs_value} Run Keyword If '${bandwidthparameter}' == ' committedBurstSize' Set Variable ${value} |
| 384 | @{parameter_value_pair}= Split String ${bandwidth_profile_array[3]} = |
| 385 | ${bandwidthparameter}= Set Variable ${parameter_value_pair[0]} |
| 386 | ${value}= Set Variable ${parameter_value_pair[1]} |
| 387 | ${eir_value} Run Keyword If '${bandwidthparameter}' == ' exceededInformationRate' Set Variable ${value} |
| 388 | @{parameter_value_pair}= Split String ${bandwidth_profile_array[4]} = |
| 389 | ${bandwidthparameter}= Set Variable ${parameter_value_pair[0]} |
| 390 | ${value}= Set Variable ${parameter_value_pair[1]} |
| 391 | ${ebs_value} Run Keyword If '${bandwidthparameter}' == ' exceededBurstSize' Set Variable ${value} |
| 392 | ${limiting_BW}= Evaluate ${cir_value}+${eir_value} |
| 393 | [Return] ${limiting_BW} |