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 | |
TorstenThieme | b198c48 | 2020-12-14 19:45:23 +0000 | [diff] [blame] | 27 | *** Variables *** |
| 28 | @{connection_list} |
| 29 | |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 30 | *** Keywords *** |
Matteo Scandolo | 37bca8d | 2020-07-31 11:28:40 -0700 | [diff] [blame] | 31 | |
| 32 | Open ONOS SSH Connection |
| 33 | [Documentation] Establishes an ssh connection to ONOS contoller |
| 34 | [Arguments] ${host} ${port} ${user}=karaf ${pass}=karaf |
| 35 | ${conn_id}= SSHLibrary.Open Connection ${host} port=${port} timeout=300s alias=ONOS_SSH |
| 36 | SSHLibrary.Login ${user} ${pass} |
TorstenThieme | b198c48 | 2020-12-14 19:45:23 +0000 | [diff] [blame] | 37 | ${conn_list_entry}= Create Dictionary conn_id=${conn_id} user=${user} pass=${pass} |
| 38 | Append To List ${connection_list} ${conn_list_entry} |
| 39 | ${conn_list_id}= Get Index From List ${connection_list} ${conn_list_entry} |
| 40 | Set Global Variable ${connection_list} |
| 41 | [Return] ${conn_list_id} |
Matteo Scandolo | 37bca8d | 2020-07-31 11:28:40 -0700 | [diff] [blame] | 42 | |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 43 | Execute ONOS CLI Command use single connection |
| 44 | [Documentation] Execute ONOS CLI Command use an Open Connection |
| 45 | ... In case no connection is open a connection will be opened |
| 46 | [Arguments] ${host} ${port} ${cmd} |
| 47 | ${connection_list_id}= Get Conn List Id ${host} ${port} |
| 48 | ${connection_list_id}= Run Keyword If "${connection_list_id}"=="${EMPTY}" |
| 49 | ... Open ONOS SSH Connection ${host} ${port} |
| 50 | ... ELSE Set Variable ${connection_list_id} |
| 51 | ${connection_entry}= Get From List ${connection_list} ${connection_list_id} |
| 52 | SSHLibrary.Switch Connection ${connection_entry.conn_id} |
| 53 | ${PassOrFail} @{result_values} Run Keyword And Ignore Error SSHLibrary.Execute Command ${cmd} |
| 54 | ... return_rc=True return_stderr=True return_stdout=True |
| 55 | Run Keyword If '${PassOrFail}'=='FAIL' Reconnect ONOS SSH Connection ${connection_list_id} |
| 56 | @{result_values}= Run Keyword If '${PassOrFail}'=='FAIL' |
| 57 | ... SSHLibrary.Execute Command ${cmd} return_rc=True return_stderr=True return_stdout=True |
| 58 | ... ELSE Set Variable @{result_values} |
| 59 | ${output} Set Variable @{result_values}[0] |
| 60 | Log Command output: ${output} |
| 61 | Should Be Empty @{result_values}[1] |
| 62 | Should Be Equal As Integers @{result_values}[2] 0 |
| 63 | [Return] ${output} |
| 64 | |
| 65 | Get Conn List Id |
| 66 | [Documentation] Looks up for an Open Connection with passed host and port in conection list |
| 67 | ... First match connection will be used. |
| 68 | [Arguments] ${host} ${port} |
| 69 | ${connection_list_id}= Set Variable ${EMPTY} |
| 70 | ${match}= Set Variable False |
| 71 | ${length}= Get Length ${connection_list} |
| 72 | FOR ${INDEX} IN RANGE 0 ${length} |
| 73 | #${Item}= Get From List ${connection_list} ${INDEX} |
| 74 | ${conndata}= Get Connection ${connection_list[${INDEX}].conn_id} |
| 75 | ${match}= Set Variable If '${conndata.host}'=='${host}' and '${conndata.port}'=='${port}' True False |
| 76 | ${connection_list_id}= Set Variable If ${match} ${INDEX} ${EMPTY} |
| 77 | Exit For Loop If ${match} |
| 78 | END |
| 79 | [Return] ${connection_list_id} |
| 80 | |
TorstenThieme | b198c48 | 2020-12-14 19:45:23 +0000 | [diff] [blame] | 81 | Reconnect ONOS SSH Connection |
| 82 | [Documentation] Reconnect an SSH Connection |
| 83 | [Arguments] ${connection_list_id} |
| 84 | ${connection_entry}= Get From List ${connection_list} ${connection_list_id} |
| 85 | ${user}= Get From Dictionary ${connection_entry} user |
| 86 | ${pass}= Get From Dictionary ${connection_entry} pass |
| 87 | ${oldconndata}= Get Connection ${connection_entry.conn_id} |
| 88 | SSHLibrary.Switch Connection ${connection_entry.conn_id} |
TorstenThieme | bcf1461 | 2021-01-27 10:19:18 +0000 | [diff] [blame] | 89 | Run Keyword And Ignore Error SSHLibrary.Close Connection |
TorstenThieme | b198c48 | 2020-12-14 19:45:23 +0000 | [diff] [blame] | 90 | ${conn_id}= SSHLibrary.Open Connection ${oldconndata.host} port=${oldconndata.port} |
| 91 | ... timeout=300s alias=ONOS_SSH |
| 92 | SSHLibrary.Login ${user} ${pass} |
| 93 | ${conn_list_entry}= Create Dictionary conn_id=${conn_id} user=${user} pass=${pass} |
| 94 | Set List Value ${connection_list} ${connection_list_id} ${conn_list_entry} |
| 95 | Set Global Variable ${connection_list} |
| 96 | |
Matteo Scandolo | 37bca8d | 2020-07-31 11:28:40 -0700 | [diff] [blame] | 97 | Close ONOS SSH Connection |
| 98 | [Documentation] Close an SSH Connection |
TorstenThieme | b198c48 | 2020-12-14 19:45:23 +0000 | [diff] [blame] | 99 | [Arguments] ${connection_list_id} |
| 100 | ${connection_entry}= Get From List ${connection_list} ${connection_list_id} |
| 101 | ${connection_alias}= Get From Dictionary ${connection_entry} conn_id |
| 102 | ${oldconndata}= Get Connection ${connection_entry.conn_id} |
Matteo Scandolo | 37bca8d | 2020-07-31 11:28:40 -0700 | [diff] [blame] | 103 | SSHLibrary.Switch Connection ${connection_alias} |
TorstenThieme | bcf1461 | 2021-01-27 10:19:18 +0000 | [diff] [blame] | 104 | Run Keyword And Ignore Error SSHLibrary.Close Connection |
TorstenThieme | b198c48 | 2020-12-14 19:45:23 +0000 | [diff] [blame] | 105 | Remove From List ${connection_list} ${connection_list_id} |
| 106 | Set Global Variable ${connection_list} |
| 107 | |
| 108 | Close All ONOS SSH Connections |
| 109 | [Documentation] Close all SSH Connection and clear connection list. |
| 110 | SSHLibrary.Close All Connections |
| 111 | @{connection_list} Create List |
Matteo Scandolo | 37bca8d | 2020-07-31 11:28:40 -0700 | [diff] [blame] | 112 | |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 113 | Validate OLT Device in ONOS |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 114 | # FIXME use volt-olts to check that the OLT is ONOS |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 115 | [Arguments] ${serial_number} |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 116 | [Documentation] Checks if olt has been connected to ONOS |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 117 | ${resp}= Get Request ONOS onos/v1/devices |
| 118 | ${jsondata}= To Json ${resp.content} |
| 119 | Should Not Be Empty ${jsondata['devices']} |
| 120 | ${length}= Get Length ${jsondata['devices']} |
| 121 | @{serial_numbers}= Create List |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 122 | ${matched}= Set Variable False |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 123 | FOR ${INDEX} IN RANGE 0 ${length} |
| 124 | ${value}= Get From List ${jsondata['devices']} ${INDEX} |
| 125 | ${of_id}= Get From Dictionary ${value} id |
| 126 | ${sn}= Get From Dictionary ${value} serial |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 127 | ${matched}= Set Variable If '${sn}' == '${serial_number}' True False |
| 128 | Exit For Loop If ${matched} |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 129 | END |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 130 | Should Be True ${matched} No match for ${serial_number} found |
Kailash | 57210eb | 2019-08-30 13:27:19 -0700 | [diff] [blame] | 131 | [Return] ${of_id} |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 132 | |
Suchitra Vemuri | 102912a | 2019-09-24 00:35:42 -0700 | [diff] [blame] | 133 | Get ONU Port in ONOS |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 134 | [Arguments] ${onu_serial_number} ${olt_of_id} ${onu_uni_id}=1 |
Suchitra Vemuri | 102912a | 2019-09-24 00:35:42 -0700 | [diff] [blame] | 135 | [Documentation] Retrieves ONU port for the ONU in ONOS |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 136 | ${onu_serial_number}= Catenate SEPARATOR=- ${onu_serial_number} ${onu_uni_id} |
Suchitra Vemuri | 102912a | 2019-09-24 00:35:42 -0700 | [diff] [blame] | 137 | ${resp}= Get Request ONOS onos/v1/devices/${olt_of_id}/ports |
| 138 | ${jsondata}= To Json ${resp.content} |
| 139 | Should Not Be Empty ${jsondata['ports']} |
| 140 | ${length}= Get Length ${jsondata['ports']} |
| 141 | @{ports}= Create List |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 142 | ${matched}= Set Variable False |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 143 | FOR ${INDEX} IN RANGE 0 ${length} |
| 144 | ${value}= Get From List ${jsondata['ports']} ${INDEX} |
| 145 | ${annotations}= Get From Dictionary ${value} annotations |
| 146 | ${onu_port}= Get From Dictionary ${value} port |
| 147 | ${portName}= Get From Dictionary ${annotations} portName |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 148 | ${matched}= Set Variable If '${portName}' == '${onu_serial_number}' True False |
| 149 | Exit For Loop If ${matched} |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 150 | END |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 151 | Should Be True ${matched} No match for ${onu_serial_number} found |
Suchitra Vemuri | 102912a | 2019-09-24 00:35:42 -0700 | [diff] [blame] | 152 | [Return] ${onu_port} |
| 153 | |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 154 | Get NNI Port in ONOS |
| 155 | [Arguments] ${olt_of_id} |
| 156 | [Documentation] Retrieves NNI port for the OLT in ONOS |
| 157 | ${resp}= Get Request ONOS onos/v1/devices/${olt_of_id}/ports |
| 158 | ${jsondata}= To Json ${resp.content} |
| 159 | Should Not Be Empty ${jsondata['ports']} |
| 160 | ${length}= Get Length ${jsondata['ports']} |
| 161 | @{ports}= Create List |
| 162 | ${matched}= Set Variable False |
| 163 | FOR ${INDEX} IN RANGE 0 ${length} |
| 164 | ${value}= Get From List ${jsondata['ports']} ${INDEX} |
| 165 | ${annotations}= Get From Dictionary ${value} annotations |
| 166 | ${nni_port}= Get From Dictionary ${value} port |
| 167 | ${nniPortName}= Catenate SEPARATOR= nni- ${nni_port} |
| 168 | ${portName}= Get From Dictionary ${annotations} portName |
| 169 | ${matched}= Set Variable If '${portName}' == '${nniPortName}' True False |
| 170 | Exit For Loop If ${matched} |
| 171 | END |
| 172 | Should Be True ${matched} No match for NNI found for ${olt_of_id} |
| 173 | [Return] ${nni_port} |
| 174 | |
Suchitra Vemuri | 532f67a | 2019-09-25 11:50:42 -0700 | [diff] [blame] | 175 | Get FabricSwitch in ONOS |
| 176 | [Documentation] Returns of_id of the Fabric Switch in ONOS |
| 177 | ${resp}= Get Request ONOS onos/v1/devices |
| 178 | ${jsondata}= To Json ${resp.content} |
| 179 | Should Not Be Empty ${jsondata['devices']} |
| 180 | ${length}= Get Length ${jsondata['devices']} |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 181 | ${matched}= Set Variable False |
Suchitra Vemuri | 532f67a | 2019-09-25 11:50:42 -0700 | [diff] [blame] | 182 | FOR ${INDEX} IN RANGE 0 ${length} |
| 183 | ${value}= Get From List ${jsondata['devices']} ${INDEX} |
| 184 | ${of_id}= Get From Dictionary ${value} id |
| 185 | ${type}= Get From Dictionary ${value} type |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 186 | ${matched}= Set Variable If '${type}' == "SWITCH" True False |
| 187 | Exit For Loop If ${matched} |
Suchitra Vemuri | 532f67a | 2019-09-25 11:50:42 -0700 | [diff] [blame] | 188 | END |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 189 | Should Be True ${matched} No fabric switch found |
Suchitra Vemuri | 532f67a | 2019-09-25 11:50:42 -0700 | [diff] [blame] | 190 | [Return] ${of_id} |
| 191 | |
Andrea Campanella | 4c40463 | 2020-08-26 14:41:36 +0200 | [diff] [blame] | 192 | Get Master Instace in ONOS |
| 193 | [Arguments] ${of_id} |
| 194 | [Documentation] Returns nodeId of the Master instace for a giver device in ONOS |
| 195 | ${resp}= Get Request ONOS onos/v1/mastership/${of_id}/master |
| 196 | ${jsondata}= To Json ${resp.content} |
| 197 | Should Not Be Empty ${jsondata['nodeId']} |
| 198 | ${master_node}= Get From Dictionary ${jsondata} nodeId |
| 199 | [Return] ${master_node} |
| 200 | |
Matteo Scandolo | 7bdbe2d | 2021-11-29 15:48:25 -0800 | [diff] [blame^] | 201 | Verify LLDP Flow Added |
| 202 | [Arguments] ${ip} ${port} ${olt_of_id} ${expected_flows} |
| 203 | [Documentation] Matches for total number of LLDP flows added for one OLT |
| 204 | ${lldp_flows_added}= Execute ONOS CLI Command use single connection ${ip} ${port} |
| 205 | ... flows -s ADDED ${olt_of_id} | grep -v deviceId | grep ETH_TYPE:lldp | grep -v ETH_TYPE:arp |
| 206 | ${lldp_flows_added_count}= Get Line Count ${lldp_flows_added} |
| 207 | Should Be Equal As Integers ${lldp_flows_added_count} ${expected_flows} |
| 208 | |
Hardik Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 209 | Verify Subscriber Access Flows Added for ONU |
| 210 | [Arguments] ${ip} ${port} ${olt_of_id} ${onu_port} ${nni_port} ${c_tag} ${s_tag} |
| 211 | [Documentation] Verifies if the Subscriber Access Flows are added in ONOS for the ONU |
| 212 | # Verify upstream table=0 flow |
| 213 | ${upstream_flow_0_cmd}= Catenate SEPARATOR= |
| 214 | ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${onu_port} | grep VLAN_VID:0 | |
| 215 | ... grep VLAN_ID:${c_tag} | grep transition=TABLE:1 |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 216 | ${upstream_flow_0_added}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Hardik Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 217 | ... ${upstream_flow_0_cmd} |
| 218 | Should Not Be Empty ${upstream_flow_0_added} |
| 219 | # Verify upstream table=1 flow |
| 220 | ${flow_vlan_push_cmd}= Catenate SEPARATOR= |
| 221 | ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${onu_port} | grep VLAN_VID:${c_tag} | |
| 222 | ... grep VLAN_PUSH | grep VLAN_ID:${s_tag} | grep OUTPUT:${nni_port} |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 223 | ${upstream_flow_1_added}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Hardik Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 224 | ... ${flow_vlan_push_cmd} |
| 225 | Should Not Be Empty ${upstream_flow_1_added} |
| 226 | # Verify downstream table=0 flow |
| 227 | ${flow_vlan_pop_cmd}= Catenate SEPARATOR= |
| 228 | ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${nni_port} | grep VLAN_VID:${s_tag} | |
| 229 | ... grep VLAN_POP | grep transition=TABLE:1 |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 230 | ${downstream_flow_0_added}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Hardik Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 231 | ... ${flow_vlan_pop_cmd} |
| 232 | Should Not Be Empty ${downstream_flow_0_added} |
| 233 | # Verify downstream table=1 flow |
| 234 | ${downstream_flow_1_cmd}= Catenate SEPARATOR= |
| 235 | ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${nni_port} | grep VLAN_VID:${c_tag} | |
| 236 | ... grep VLAN_ID:0 | grep OUTPUT:${onu_port} |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 237 | ${downstream_flow_1_added}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Hardik Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 238 | ... ${downstream_flow_1_cmd} |
| 239 | Should Not Be Empty ${downstream_flow_1_added} |
| 240 | # Verify ipv4 dhcp upstream flow |
| 241 | ${upstream_flow_ipv4_cmd}= Catenate SEPARATOR= |
Andrea Campanella | 5e9051c | 2020-04-30 14:38:35 +0200 | [diff] [blame] | 242 | ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${onu_port} | grep ETH_TYPE:ipv4 | |
Andrea Campanella | 08678e1 | 2020-09-18 17:40:22 +0200 | [diff] [blame] | 243 | ... grep IP_PROTO:17 | grep UDP_SRC:68 | grep UDP_DST:67 | grep VLAN_ID:${c_tag} | |
Andrea Campanella | 5e9051c | 2020-04-30 14:38:35 +0200 | [diff] [blame] | 244 | ... grep OUTPUT:CONTROLLER |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 245 | ${upstream_flow_ipv4_added}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Hardik Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 246 | ... ${upstream_flow_ipv4_cmd} |
Andrea Campanella | 5e9051c | 2020-04-30 14:38:35 +0200 | [diff] [blame] | 247 | Should Not Be Empty ${upstream_flow_ipv4_added} |
Hardik Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 248 | # Verify ipv4 dhcp downstream flow |
| 249 | # Note: This flow will be one per nni per olt |
| 250 | ${downstream_flow_ipv4_cmd}= Catenate SEPARATOR= |
Andrea Campanella | 5e9051c | 2020-04-30 14:38:35 +0200 | [diff] [blame] | 251 | ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${nni_port} | grep ETH_TYPE:ipv4 | |
| 252 | ... grep IP_PROTO:17 | grep UDP_SRC:67 | grep UDP_DST:68 | grep OUTPUT:CONTROLLER |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 253 | ${downstream_flow_ipv4_added}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Hardik Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 254 | ... ${downstream_flow_ipv4_cmd} |
Andrea Campanella | 5e9051c | 2020-04-30 14:38:35 +0200 | [diff] [blame] | 255 | Should Not Be Empty ${downstream_flow_ipv4_added} |
Hardik Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 256 | |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 257 | Verify Subscriber Access Flows Added for ONU DT |
Hardik Windlass | 25e1170 | 2020-03-30 20:05:19 +0530 | [diff] [blame] | 258 | [Arguments] ${ip} ${port} ${olt_of_id} ${onu_port} ${nni_port} ${s_tag} |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 259 | [Documentation] Verifies if the Subscriber Access Flows are added in ONOS for the ONU |
| 260 | # Verify upstream table=0 flow |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 261 | ${upstream_flow_0_added}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Hardik Windlass | 25e1170 | 2020-03-30 20:05:19 +0530 | [diff] [blame] | 262 | ... 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] | 263 | Should Not Be Empty ${upstream_flow_0_added} |
| 264 | # Verify upstream table=1 flow |
| 265 | ${flow_vlan_push_cmd}= Catenate SEPARATOR= |
Hardik Windlass | 25e1170 | 2020-03-30 20:05:19 +0530 | [diff] [blame] | 266 | ... 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] | 267 | ... grep VLAN_PUSH | grep VLAN_ID:${s_tag} | grep OUTPUT:${nni_port} |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 268 | ${upstream_flow_1_added}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 269 | ... ${flow_vlan_push_cmd} |
| 270 | Should Not Be Empty ${upstream_flow_1_added} |
| 271 | # Verify downstream table=0 flow |
| 272 | ${flow_vlan_pop_cmd}= Catenate SEPARATOR= |
Hardik Windlass | 25e1170 | 2020-03-30 20:05:19 +0530 | [diff] [blame] | 273 | ... 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] | 274 | ... grep VLAN_POP | grep transition=TABLE:1 |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 275 | ${downstream_flow_0_added}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 276 | ... ${flow_vlan_pop_cmd} |
| 277 | Should Not Be Empty ${downstream_flow_0_added} |
| 278 | # Verify downstream table=1 flow |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 279 | ${downstream_flow_1_added}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Hardik Windlass | 25e1170 | 2020-03-30 20:05:19 +0530 | [diff] [blame] | 280 | ... 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] | 281 | Should Not Be Empty ${downstream_flow_1_added} |
| 282 | |
| 283 | Verify Subscriber Access Flows Added Count DT |
Hardik Windlass | 25e1170 | 2020-03-30 20:05:19 +0530 | [diff] [blame] | 284 | [Arguments] ${ip} ${port} ${olt_of_id} ${expected_flows} |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 285 | [Documentation] Matches for total number of subscriber access flows added for all onus |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 286 | ${access_flows_added}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Matteo Scandolo | 45645bd | 2021-11-02 10:09:07 -0700 | [diff] [blame] | 287 | ... flows -s ADDED ${olt_of_id} | grep -v deviceId | grep -v ETH_TYPE:lldp | grep -v ETH_TYPE:arp |
| 288 | ${access_flows_added_count}= Get Line Count ${access_flows_added} |
| 289 | Should Be Equal As Integers ${access_flows_added_count} ${expected_flows} |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 290 | |
Huseyin Ahmet AYDIN | 45922c8 | 2021-05-27 12:37:32 +0000 | [diff] [blame] | 291 | Verify Added Flow Count for OLT TT |
| 292 | [Arguments] ${ip} ${port} ${olt_of_id} ${expected_flows} |
| 293 | [Documentation] Total number of added flows given OLT with subscriber flows |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 294 | ${access_flows_added}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Matteo Scandolo | 45645bd | 2021-11-02 10:09:07 -0700 | [diff] [blame] | 295 | ... flows -s ADDED ${olt_of_id} | grep -v deviceId |
| 296 | ${access_flows_added_count}= Get Line Count ${access_flows_added} |
| 297 | Should Be Equal As Integers ${access_flows_added_count} ${expected_flows} |
Huseyin Ahmet AYDIN | 45922c8 | 2021-05-27 12:37:32 +0000 | [diff] [blame] | 298 | |
Emrehan UZUN | 2884ed5 | 2021-05-04 15:36:31 +0000 | [diff] [blame] | 299 | Verify Default Downstream Flows are added in ONOS for OLT TT |
| 300 | [Arguments] ${ip} ${port} ${olt_of_id} ${nni_port} |
| 301 | [Documentation] Verifies if the Default Downstream Flows are added in ONOS for the OLT |
| 302 | # Verify lldp flow |
| 303 | ${downstream_flow_lldp_cmd}= Catenate SEPARATOR= |
| 304 | ... flows -s ADDED ${olt_of_id} | grep lldp | |
| 305 | ... grep OUTPUT:CONTROLLER |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 306 | ${downstream_flow_lldp_added}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Emrehan UZUN | 2884ed5 | 2021-05-04 15:36:31 +0000 | [diff] [blame] | 307 | ... ${downstream_flow_lldp_cmd} |
| 308 | Should Not Be Empty ${downstream_flow_lldp_added} |
| 309 | # Verify downstream dhcp flow |
| 310 | ${downstream_flow_dhcp_cmd}= Catenate SEPARATOR= |
| 311 | ... flows -s ADDED ${olt_of_id} | grep IP_PROTO:17 | grep UDP_SRC:67 | grep UDP_DST:68 | |
| 312 | ... grep OUTPUT:CONTROLLER |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 313 | ${downstream_flow_dhcp_added}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Emrehan UZUN | 2884ed5 | 2021-05-04 15:36:31 +0000 | [diff] [blame] | 314 | ... ${downstream_flow_dhcp_cmd} |
| 315 | Should Not Be Empty ${downstream_flow_dhcp_added} |
| 316 | # Verify downstream igmp flow |
| 317 | ${downstream_flow_igmp_cmd}= Catenate SEPARATOR= |
| 318 | ... flows -s ADDED ${olt_of_id} | grep IP_PROTO:2 | |
| 319 | ... grep OUTPUT:CONTROLLER |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 320 | ${downstream_flow_igmp_added}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Emrehan UZUN | 2884ed5 | 2021-05-04 15:36:31 +0000 | [diff] [blame] | 321 | ... ${downstream_flow_igmp_cmd} |
| 322 | Should Not Be Empty ${downstream_flow_igmp_added} |
| 323 | |
Hardik Windlass | 2a9b159 | 2020-07-23 18:28:13 +0530 | [diff] [blame] | 324 | Get Programmed Subscribers |
| 325 | [Arguments] ${ip} ${port} ${olt_of_id} ${onu_port} |
| 326 | [Documentation] Retrieves the subscriber details at a given location |
| 327 | ${sub_location}= Catenate SEPARATOR=/ ${olt_of_id} ${onu_port} |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 328 | ${programmed_sub}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Hardik Windlass | 2a9b159 | 2020-07-23 18:28:13 +0530 | [diff] [blame] | 329 | ... volt-programmed-subscribers | grep ${sub_location} |
| 330 | [Return] ${programmed_sub} |
| 331 | |
| 332 | Get Upstream and Downstream Bandwidth Profile Name |
| 333 | [Arguments] ${programmed_sub} |
| 334 | [Documentation] Retrieves the upstream and downstream bandwidth profile name |
| 335 | ... from the programmed subscriber |
| 336 | @{programmed_sub_array}= Split String ${programmed_sub} , |
| 337 | # Get upstream bandwidth profile name for the subscriber |
| 338 | @{param_val_pair}= Split String ${programmed_sub_array[9]} = |
| 339 | ${programmed_sub_param}= Set Variable ${param_val_pair[0]} |
| 340 | ${programmed_sub_val}= Set Variable ${param_val_pair[1]} |
| 341 | ${us_bw_profile}= Run Keyword If '${programmed_sub_param}' == ' upstreamBandwidthProfile' |
| 342 | ... Set Variable ${programmed_sub_val} |
| 343 | Log ${us_bw_profile} |
| 344 | # Get downstream bandwidth profile name for the subscriber |
| 345 | @{param_val_pair}= Split String ${programmed_sub_array[10]} = |
| 346 | ${programmed_sub_param}= Set Variable ${param_val_pair[0]} |
| 347 | ${programmed_sub_val}= Set Variable ${param_val_pair[1]} |
| 348 | ${ds_bw_profile}= Run Keyword If '${programmed_sub_param}' == ' downstreamBandwidthProfile' |
| 349 | ... Set Variable ${programmed_sub_val} |
| 350 | Log ${ds_bw_profile} |
| 351 | [Return] ${us_bw_profile} ${ds_bw_profile} |
| 352 | |
| 353 | Get Bandwidth Profile Details |
| 354 | [Arguments] ${ip} ${port} ${bw_profile} |
| 355 | [Documentation] Retrieves the details of the given bandwidth profile |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 356 | ${bw_profile_values}= Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
Hardik Windlass | 2a9b159 | 2020-07-23 18:28:13 +0530 | [diff] [blame] | 357 | ... bandwidthprofile ${bw_profile} |
| 358 | @{bw_profile_array}= Split String ${bw_profile_values} , |
| 359 | @{param_val_pair}= Split String ${bw_profile_array[1]} = |
| 360 | ${bw_param}= Set Variable ${param_val_pair[0]} |
| 361 | ${bw_val}= Set Variable ${param_val_pair[1]} |
| 362 | ${cir} Run Keyword If '${bw_param}' == ' committedInformationRate' |
| 363 | ... Set Variable ${bw_val} |
| 364 | @{param_val_pair}= Split String ${bw_profile_array[2]} = |
| 365 | ${bw_param}= Set Variable ${param_val_pair[0]} |
| 366 | ${bw_val}= Set Variable ${param_val_pair[1]} |
| 367 | ${cbs} Run Keyword If '${bw_param}' == ' committedBurstSize' |
| 368 | ... Set Variable ${bw_val} |
| 369 | @{param_val_pair}= Split String ${bw_profile_array[3]} = |
| 370 | ${bw_param}= Set Variable ${param_val_pair[0]} |
| 371 | ${bw_val}= Set Variable ${param_val_pair[1]} |
| 372 | ${eir} Run Keyword If '${bw_param}' == ' exceededInformationRate' |
| 373 | ... Set Variable ${bw_val} |
| 374 | @{param_val_pair}= Split String ${bw_profile_array[4]} = |
| 375 | ${bw_param}= Set Variable ${param_val_pair[0]} |
| 376 | ${bw_val}= Set Variable ${param_val_pair[1]} |
| 377 | ${ebs} Run Keyword If '${bw_param}' == ' exceededBurstSize' |
| 378 | ... Set Variable ${bw_val} |
| 379 | @{param_val_pair}= Split String ${bw_profile_array[5]} = |
| 380 | ${bw_param}= Set Variable ${param_val_pair[0]} |
| 381 | ${bw_val}= Set Variable ${param_val_pair[1]} |
| 382 | @{bw_val_air}= Split String ${bw_val} } |
| 383 | ${air} Run Keyword If '${bw_param}' == ' assuredInformationRate' |
| 384 | ... Set Variable ${bw_val_air[0]} |
| 385 | [Return] ${cir} ${cbs} ${eir} ${ebs} ${air} |
| 386 | |
Hardik Windlass | ba5add4 | 2021-05-04 12:41:29 +0000 | [diff] [blame] | 387 | Get Bandwidth Profile Details Rest |
| 388 | [Arguments] ${bw_profile_id} |
| 389 | [Documentation] Retrieves the details of the given bandwidth profile using REST API |
Girish Gowdra | cb8482a | 2021-05-27 09:06:13 -0700 | [diff] [blame] | 390 | ${bw_profile_id}= Remove String ${bw_profile_id} ' " |
Hardik Windlass | ba5add4 | 2021-05-04 12:41:29 +0000 | [diff] [blame] | 391 | ${resp}= Get Request ONOS onos/sadis/bandwidthprofile/${bw_profile_id} |
| 392 | ${jsondata}= To Json ${resp.content} |
| 393 | Should Not Be Empty ${jsondata['entry']} |
| 394 | ${length}= Get Length ${jsondata['entry']} |
| 395 | ${matched}= Set Variable False |
| 396 | FOR ${INDEX} IN RANGE 0 ${length} |
| 397 | ${value}= Get From List ${jsondata['entry']} ${INDEX} |
| 398 | ${bw_id}= Get From Dictionary ${value} id |
| 399 | ${matched}= Set Variable If '${bw_id}' == '${bw_profile_id}' True False |
| 400 | ${eir}= Get From Dictionary ${value} eir |
| 401 | ${ebs}= Get From Dictionary ${value} ebs |
| 402 | ${cir}= Get From Dictionary ${value} cir |
| 403 | ${cbs}= Get From Dictionary ${value} cbs |
| 404 | ${air}= Get From Dictionary ${value} air |
| 405 | Exit For Loop If ${matched} |
| 406 | END |
| 407 | Should Be True ${matched} No bandwidth profile found for id: ${bw_profile_id} |
| 408 | [Return] ${cir} ${cbs} ${eir} ${ebs} ${air} |
| 409 | |
Hardik Windlass | 841979a | 2021-05-25 05:30:27 +0000 | [diff] [blame] | 410 | Get Bandwidth Profile Details Ietf Rest |
| 411 | [Arguments] ${bw_profile_id} |
| 412 | [Documentation] Retrieves the details of the given Ietf standard based bandwidth profile using REST API |
| 413 | ${bw_profile_id}= Remove String ${bw_profile_id} ' " |
| 414 | ${resp}= Get Request ONOS onos/sadis/bandwidthprofile/${bw_profile_id} |
| 415 | ${jsondata}= To Json ${resp.content} |
| 416 | Should Not Be Empty ${jsondata['entry']} |
| 417 | ${length}= Get Length ${jsondata['entry']} |
| 418 | ${matched}= Set Variable False |
| 419 | FOR ${INDEX} IN RANGE 0 ${length} |
| 420 | ${value}= Get From List ${jsondata['entry']} ${INDEX} |
| 421 | ${bw_id}= Get From Dictionary ${value} id |
| 422 | ${matched}= Set Variable If '${bw_id}' == '${bw_profile_id}' True False |
| 423 | ${pir}= Get From Dictionary ${value} pir |
| 424 | ${pbs}= Get From Dictionary ${value} pbs |
| 425 | ${cir}= Get From Dictionary ${value} cir |
| 426 | ${cbs}= Get From Dictionary ${value} cbs |
| 427 | ${gir}= Get From Dictionary ${value} gir |
| 428 | Exit For Loop If ${matched} |
| 429 | END |
| 430 | Should Be True ${matched} No bandwidth profile found for id: ${bw_profile_id} |
| 431 | [Return] ${cir} ${cbs} ${pir} ${pbs} ${gir} |
| 432 | |
Girish Gowdra | 21ec25d | 2021-05-24 10:07:01 -0700 | [diff] [blame] | 433 | Verify Meters in ONOS Ietf |
| 434 | [Arguments] ${ip} ${port} ${olt_of_id} ${onu_port} |
| 435 | [Documentation] Verifies the meters with BW Ietf format (currently, DT workflow uses this format) |
| 436 | # Get programmed subscriber |
| 437 | ${programmed_sub}= Get Programmed Subscribers ${ip} ${port} |
| 438 | ... ${olt_of_id} ${onu_port} |
| 439 | Log ${programmed_sub} |
| 440 | ${us_bw_profile} ${ds_bw_profile} Get Upstream and Downstream Bandwidth Profile Name |
| 441 | ... ${programmed_sub} |
| 442 | # Get upstream bandwidth profile details |
| 443 | ${us_cir} ${us_cbs} ${us_pir} ${us_pbs} ${us_gir} Get Bandwidth Profile Details Ietf Rest |
| 444 | ... ${us_bw_profile} |
| 445 | # Verify meter for upstream bandwidth profile |
| 446 | ${us_meter_cmd}= Run Keyword If ${us_gir} != 0 Catenate SEPARATOR= |
| 447 | ... meters ${olt_of_id} | grep state=ADDED | grep "rate=${us_cir}, burst-size=${us_cbs}" |
| 448 | ... | grep "rate=${us_pir}, burst-size=${us_pbs}" | grep "rate=${us_gir}, burst-size=0" | wc -l |
| 449 | ... ELSE Catenate SEPARATOR= |
| 450 | ... meters ${olt_of_id} | grep state=ADDED | grep "rate=${us_cir}, burst-size=${us_cbs}" |
| 451 | ... | grep "rate=${us_pir}, burst-size=${us_pbs}" | wc -l |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 452 | ${upstream_meter_added}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Girish Gowdra | 21ec25d | 2021-05-24 10:07:01 -0700 | [diff] [blame] | 453 | ... ${us_meter_cmd} |
Matteo Scandolo | 45645bd | 2021-11-02 10:09:07 -0700 | [diff] [blame] | 454 | Should Be Equal As Integers ${upstream_meter_added} 1 Upstream meter is missing |
Girish Gowdra | 21ec25d | 2021-05-24 10:07:01 -0700 | [diff] [blame] | 455 | # Get downstream bandwidth profile details |
| 456 | ${ds_cir} ${ds_cbs} ${ds_pir} ${ds_pbs} ${ds_gir} Get Bandwidth Profile Details Ietf Rest |
| 457 | ... ${ds_bw_profile} |
| 458 | # Verify meter for downstream bandwidth profile |
| 459 | ${ds_meter_cmd}= Run Keyword If ${ds_gir} != 0 Catenate SEPARATOR= |
| 460 | ... meters ${olt_of_id} | grep state=ADDED | grep "rate=${ds_cir}, burst-size=${ds_cbs}" |
| 461 | ... | grep "rate=${ds_pir}, burst-size=${ds_pbs}" | grep "rate=${ds_gir}, burst-size=0" | wc -l |
| 462 | ... ELSE Catenate SEPARATOR= |
| 463 | ... meters ${olt_of_id} | grep state=ADDED | grep "rate=${ds_cir}, burst-size=${ds_cbs}" |
| 464 | ... | grep "rate=${ds_pir}, burst-size=${ds_pbs}" | wc -l |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 465 | ${downstream_meter_added}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Girish Gowdra | 21ec25d | 2021-05-24 10:07:01 -0700 | [diff] [blame] | 466 | ... ${ds_meter_cmd} |
Matteo Scandolo | 45645bd | 2021-11-02 10:09:07 -0700 | [diff] [blame] | 467 | Should Be Equal As Integers ${downstream_meter_added} 1 Downstream meter is missing |
Girish Gowdra | 21ec25d | 2021-05-24 10:07:01 -0700 | [diff] [blame] | 468 | |
Hardik Windlass | 2a9b159 | 2020-07-23 18:28:13 +0530 | [diff] [blame] | 469 | Verify Meters in ONOS |
| 470 | [Arguments] ${ip} ${port} ${olt_of_id} ${onu_port} |
| 471 | [Documentation] Verifies the meters |
| 472 | # Get programmed subscriber |
| 473 | ${programmed_sub}= Get Programmed Subscribers ${ip} ${port} |
| 474 | ... ${olt_of_id} ${onu_port} |
| 475 | Log ${programmed_sub} |
| 476 | ${us_bw_profile} ${ds_bw_profile} Get Upstream and Downstream Bandwidth Profile Name |
| 477 | ... ${programmed_sub} |
Matteo Scandolo | 2056ed7 | 2021-11-02 17:38:03 -0700 | [diff] [blame] | 478 | # logging all meters to facilitate debug |
| 479 | ${all_meters}= Execute ONOS CLI Command use single connection ${ip} ${port} meters |
| 480 | Log ${all_meters} |
Hardik Windlass | 2a9b159 | 2020-07-23 18:28:13 +0530 | [diff] [blame] | 481 | # Get upstream bandwidth profile details |
| 482 | ${us_cir} ${us_cbs} ${us_eir} ${us_ebs} ${us_air} Get Bandwidth Profile Details |
| 483 | ... ${ip} ${port} ${us_bw_profile} |
| 484 | Sleep 1s |
Andrea Campanella | 2b36710 | 2021-05-04 19:33:46 +0200 | [diff] [blame] | 485 | ${us_pbs}= Evaluate ${us_cbs}+${us_ebs} |
| 486 | ${us_pir}= Evaluate ${us_eir}+${us_cir}+${us_air} |
Hardik Windlass | 2a9b159 | 2020-07-23 18:28:13 +0530 | [diff] [blame] | 487 | # Verify meter for upstream bandwidth profile |
| 488 | ${us_meter_cmd}= Catenate SEPARATOR= |
Hardik Windlass | e380bdb | 2020-07-30 19:09:25 +0530 | [diff] [blame] | 489 | ... meters ${olt_of_id} | grep state=ADDED | grep "rate=${us_cir}, burst-size=${us_cbs}" |
Andrea Campanella | 2b36710 | 2021-05-04 19:33:46 +0200 | [diff] [blame] | 490 | ... | grep "rate=${us_pir}, burst-size=${us_pbs}" | grep "rate=${us_air}, burst-size=0" | wc -l |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 491 | ${upstream_meter_added}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Hardik Windlass | 2a9b159 | 2020-07-23 18:28:13 +0530 | [diff] [blame] | 492 | ... ${us_meter_cmd} |
Matteo Scandolo | 45645bd | 2021-11-02 10:09:07 -0700 | [diff] [blame] | 493 | Should Be Equal As Integers ${upstream_meter_added} 1 Upstream meter is missing |
Hardik Windlass | 2a9b159 | 2020-07-23 18:28:13 +0530 | [diff] [blame] | 494 | Sleep 1s |
| 495 | # Get downstream bandwidth profile details |
| 496 | ${ds_cir} ${ds_cbs} ${ds_eir} ${ds_ebs} ${ds_air} Get Bandwidth Profile Details |
| 497 | ... ${ip} ${port} ${ds_bw_profile} |
| 498 | Sleep 1s |
| 499 | # Verify meter for downstream bandwidth profile |
Andrea Campanella | 2b36710 | 2021-05-04 19:33:46 +0200 | [diff] [blame] | 500 | ${ds_pbs}= Evaluate ${ds_cbs}+${ds_ebs} |
| 501 | ${ds_pir}= Evaluate ${ds_eir}+${ds_cir}+${ds_air} |
Hardik Windlass | 2a9b159 | 2020-07-23 18:28:13 +0530 | [diff] [blame] | 502 | ${ds_meter_cmd}= Catenate SEPARATOR= |
Hardik Windlass | e380bdb | 2020-07-30 19:09:25 +0530 | [diff] [blame] | 503 | ... meters ${olt_of_id} | grep state=ADDED | grep "rate=${ds_cir}, burst-size=${ds_cbs}" |
Andrea Campanella | 2b36710 | 2021-05-04 19:33:46 +0200 | [diff] [blame] | 504 | ... | grep "rate=${ds_pir}, burst-size=${ds_pbs}" | grep "rate=${ds_air}, burst-size=0" | wc -l |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 505 | ${downstream_meter_added}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Hardik Windlass | 2a9b159 | 2020-07-23 18:28:13 +0530 | [diff] [blame] | 506 | ... ${ds_meter_cmd} |
Matteo Scandolo | 45645bd | 2021-11-02 10:09:07 -0700 | [diff] [blame] | 507 | Should Be Equal As Integers ${downstream_meter_added} 1 Downstream meter is missing |
Hardik Windlass | 2a9b159 | 2020-07-23 18:28:13 +0530 | [diff] [blame] | 508 | |
| 509 | Verify Default Meter Present in ONOS |
| 510 | [Arguments] ${ip} ${port} ${olt_of_id} |
| 511 | [Documentation] Verifies the single default meter entry is present |
Hardik Windlass | e380bdb | 2020-07-30 19:09:25 +0530 | [diff] [blame] | 512 | # Get default bandwidth profile details |
| 513 | ${cir} ${cbs} ${eir} ${ebs} ${air} Get Bandwidth Profile Details |
| 514 | ... ${ip} ${port} 'Default' |
| 515 | Sleep 1s |
Andrea Campanella | 2b36710 | 2021-05-04 19:33:46 +0200 | [diff] [blame] | 516 | ${pbs}= Evaluate ${cbs}+${ebs} |
| 517 | ${pir}= Evaluate ${eir}+${cir}+${air} |
Hardik Windlass | e380bdb | 2020-07-30 19:09:25 +0530 | [diff] [blame] | 518 | # Verify meter for default bandwidth profile |
| 519 | ${meter_cmd}= Catenate SEPARATOR= |
| 520 | ... meters ${olt_of_id} | grep state=ADDED | grep "rate=${cir}, burst-size=${cbs}" |
Andrea Campanella | 2b36710 | 2021-05-04 19:33:46 +0200 | [diff] [blame] | 521 | ... | grep "rate=${pir}, burst-size=${pbs}" | grep "rate=${air}, burst-size=0" | wc -l |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 522 | ${default_meter_added}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Hardik Windlass | e380bdb | 2020-07-30 19:09:25 +0530 | [diff] [blame] | 523 | ... ${meter_cmd} |
Matteo Scandolo | 2056ed7 | 2021-11-02 17:38:03 -0700 | [diff] [blame] | 524 | # logging all meters to facilitate debug |
| 525 | ${all_meters}= Execute ONOS CLI Command use single connection ${ip} ${port} meters |
| 526 | Log ${all_meters} |
| 527 | # done logging all meters to facilitate debug |
Matteo Scandolo | 45645bd | 2021-11-02 10:09:07 -0700 | [diff] [blame] | 528 | Should Be Equal As Integers ${default_meter_added} 1 Default Meter not present |
Hardik Windlass | 2a9b159 | 2020-07-23 18:28:13 +0530 | [diff] [blame] | 529 | |
Hardik Windlass | 480f3e2 | 2020-04-02 20:14:14 +0530 | [diff] [blame] | 530 | Verify Device Flows Removed |
| 531 | [Arguments] ${ip} ${port} ${olt_of_id} |
| 532 | [Documentation] Verifies all flows are removed from the device |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 533 | ${device_flows}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Matteo Scandolo | 45645bd | 2021-11-02 10:09:07 -0700 | [diff] [blame] | 534 | ... flows -s -f ${olt_of_id} | grep -v deviceId |
| 535 | ${flow_count}= Get Line Count ${device_flows} |
| 536 | Should Be Equal As Integers ${flow_count} 0 Flows not removed |
Hardik Windlass | 480f3e2 | 2020-04-02 20:14:14 +0530 | [diff] [blame] | 537 | |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 538 | Verify Eapol Flows Added |
Andy Bavier | b0c0623 | 2019-08-29 12:58:53 -0700 | [diff] [blame] | 539 | [Arguments] ${ip} ${port} ${expected_flows} |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 540 | [Documentation] Matches for number of eapol flows based on number of onus |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 541 | ${eapol_flows_added}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Gilles Depatie | 675a206 | 2019-10-22 12:44:42 -0400 | [diff] [blame] | 542 | ... flows -s -f ADDED | grep eapol | grep IN_PORT | wc -l |
Andy Bavier | b0c0623 | 2019-08-29 12:58:53 -0700 | [diff] [blame] | 543 | Should Contain ${eapol_flows_added} ${expected_flows} |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 544 | |
Suchitra Vemuri | 9da4430 | 2020-03-04 14:24:49 -0800 | [diff] [blame] | 545 | Verify No Pending Flows For ONU |
| 546 | [Arguments] ${ip} ${port} ${onu_port} |
| 547 | [Documentation] Verifies that there are no flows "PENDING" state for the ONU in ONOS |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 548 | ${pending_flows}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Suchitra Vemuri | 9da4430 | 2020-03-04 14:24:49 -0800 | [diff] [blame] | 549 | ... flows -s | grep IN_PORT:${onu_port} | grep PENDING |
| 550 | Should Be Empty ${pending_flows} |
| 551 | |
Suchitra Vemuri | 3dd2f83 | 2019-10-18 13:14:54 -0700 | [diff] [blame] | 552 | Verify Eapol Flows Added For ONU |
Matteo Scandolo | 7e519fb | 2021-08-13 11:35:16 -0700 | [diff] [blame] | 553 | [Arguments] ${ip} ${port} ${olt_of_id} ${onu_port} ${c_tag}=4091 |
Suchitra Vemuri | 3dd2f83 | 2019-10-18 13:14:54 -0700 | [diff] [blame] | 554 | [Documentation] Verifies if the Eapol Flows are added in ONOS for the ONU |
Matteo Scandolo | 7e519fb | 2021-08-13 11:35:16 -0700 | [diff] [blame] | 555 | ${eapol_flow_cmd}= Catenate SEPARATOR= |
| 556 | ... flows -s ADDED ${olt_of_id} | grep IN_PORT:${onu_port} | grep ETH_TYPE:eapol | |
| 557 | ... grep VLAN_ID:${c_tag} | grep OUTPUT:CONTROLLER |
| 558 | ${eapol_flows_added}= Execute ONOS CLI Command use single connection ${ip} ${port} ${eapol_flow_cmd} |
Suchitra Vemuri | 3dd2f83 | 2019-10-18 13:14:54 -0700 | [diff] [blame] | 559 | Should Not Be Empty ${eapol_flows_added} |
| 560 | |
Hardik Windlass | 3901567 | 2021-07-05 05:48:08 +0000 | [diff] [blame] | 561 | Verify UNI Port Is Enabled |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 562 | [Arguments] ${ip} ${port} ${onu_name} ${onu_uni_id}=1 |
Hardik Windlass | 3901567 | 2021-07-05 05:48:08 +0000 | [diff] [blame] | 563 | [Documentation] Verifies if the ONU's UNI port is enabled in ONOS |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 564 | ${onu_port_enabled}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 565 | ... ports -e | grep portName=${onu_name}-${onu_uni_id} |
Suchitra Vemuri | 8078b97 | 2020-02-06 19:07:41 -0800 | [diff] [blame] | 566 | Log ${onu_port_enabled} |
| 567 | Should Not Be Empty ${onu_port_enabled} |
| 568 | |
Hardik Windlass | 3901567 | 2021-07-05 05:48:08 +0000 | [diff] [blame] | 569 | Verify UNI Port Is Disabled |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 570 | [Arguments] ${ip} ${port} ${onu_name} ${onu_uni_id}=1 |
Hardik Windlass | 3901567 | 2021-07-05 05:48:08 +0000 | [diff] [blame] | 571 | [Documentation] Verifies if the ONU's UNI port is disabled in ONOS |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 572 | ${onu_port_disabled}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Matteo Scandolo | 0276853 | 2021-10-21 15:14:12 -0700 | [diff] [blame] | 573 | ... ports | grep portName=${onu_name}-${onu_uni_id} | grep state=disabled |
Hardik Windlass | 63d5e00 | 2020-03-06 21:07:09 +0530 | [diff] [blame] | 574 | Log ${onu_port_disabled} |
Matteo Scandolo | 0276853 | 2021-10-21 15:14:12 -0700 | [diff] [blame] | 575 | Should Not Be Empty ${onu_port_disabled} |
Hardik Windlass | 63d5e00 | 2020-03-06 21:07:09 +0530 | [diff] [blame] | 576 | |
Suchitra Vemuri | 8a9c378 | 2019-10-23 12:43:01 -0700 | [diff] [blame] | 577 | Verify ONU in AAA-Users |
| 578 | [Arguments] ${ip} ${port} ${onu_port} |
| 579 | [Documentation] Verifies that the specified onu_port exists in aaa-users output |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 580 | ${aaa_users}= Execute ONOS CLI Command use single connection ${ip} ${port} |
| 581 | ... aaa-users | grep AUTHORIZED | grep ${onu_port} |
Suchitra Vemuri | 8a9c378 | 2019-10-23 12:43:01 -0700 | [diff] [blame] | 582 | Should Not Be Empty ${aaa_users} ONU port ${onu_port} not found in aaa-users |
| 583 | |
Hardik Windlass | 513afd1 | 2021-02-03 15:19:46 +0000 | [diff] [blame] | 584 | Verify Empty Group in ONOS |
| 585 | [Documentation] Verifies zero group count on the device |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 586 | [Arguments] ${ip} ${port} ${deviceId} |
| 587 | ${groups}= Execute ONOS CLI Command use single connection ${ip} ${port} groups | grep ${deviceId} |
Hardik Windlass | 513afd1 | 2021-02-03 15:19:46 +0000 | [diff] [blame] | 588 | @{groups_arr}= Split String ${groups} , |
| 589 | @{group_count_arr}= Split String ${groups_arr[1]} = |
| 590 | ${group_count}= Set Variable ${group_count_arr[1]} |
| 591 | Should Be Equal As Integers ${group_count} 0 |
| 592 | |
| 593 | Verify ONUs in Group Count in ONOS |
| 594 | [Documentation] Verifies there exists a group bucket list with certain entries/count |
| 595 | ... Note: Currently, this validates only if all ONUs of an OLT joined the same igmp group |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 596 | [Arguments] ${ip} ${port} ${count} ${deviceId} |
| 597 | ${result}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Matteo Scandolo | fd36e21 | 2021-03-02 11:36:10 -0800 | [diff] [blame] | 598 | ... groups added ${deviceId} | grep bucket | wc -l |
| 599 | Should Be Equal As Integers ${result} ${count} Bucket list count for a group: Found=${result} Expected=${count} |
Hardik Windlass | 513afd1 | 2021-02-03 15:19:46 +0000 | [diff] [blame] | 600 | |
| 601 | Verify ONU in Group Bucket |
| 602 | [Documentation] Matches if ONU port in Group Bucket |
| 603 | [Arguments] ${group_bucket_values} ${onu_port} |
| 604 | ${len}= Get Length ${group_bucket_values} |
| 605 | ${matched}= Set Variable False |
| 606 | FOR ${INDEX} IN RANGE 0 ${len} |
| 607 | ${value_bucket}= Get From List ${group_bucket_values} ${INDEX} |
| 608 | ${treatment}= Get From Dictionary ${value_bucket} treatment |
| 609 | ${instructions}= Get From Dictionary ${treatment} instructions |
| 610 | ${instructions_val}= Get From List ${instructions} 0 |
| 611 | ${port}= Get From Dictionary ${instructions_val} port |
| 612 | ${matched}= Set Variable If '${port}'=='${onu_port}' True False |
| 613 | Exit For Loop If ${matched} |
| 614 | END |
| 615 | [Return] ${matched} |
| 616 | |
Matteo Scandolo | a80b473 | 2020-09-04 13:51:10 -0700 | [diff] [blame] | 617 | Verify ONU in Groups |
| 618 | [Arguments] ${ip_onos} ${port_onos} ${deviceId} ${onu_port} ${group_exist}=True |
| 619 | [Documentation] Verifies that the specified onu_port exists in groups output |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 620 | ${result}= Execute ONOS CLI Command use single connection ${ip_onos} ${port_onos} groups -j |
Matteo Scandolo | a80b473 | 2020-09-04 13:51:10 -0700 | [diff] [blame] | 621 | Log Groups: ${result} |
| 622 | ${groups}= To Json ${result} |
| 623 | ${length}= Get Length ${groups} |
| 624 | ${buckets}= Create List |
| 625 | ${matched}= Set Variable False |
| 626 | FOR ${INDEX} IN RANGE 0 ${length} |
| 627 | ${value}= Get From List ${groups} ${INDEX} |
| 628 | ${devId}= Get From Dictionary ${value} deviceId |
| 629 | ${bucket}= Get From Dictionary ${value} buckets |
| 630 | Run Keyword If '${devId}'=='${deviceId}' |
| 631 | ... Append To List ${buckets} ${bucket} |
| 632 | END |
| 633 | ${bucket_len}= Get Length ${buckets} |
Hardik Windlass | 513afd1 | 2021-02-03 15:19:46 +0000 | [diff] [blame] | 634 | FOR ${INDEX_1} IN RANGE 0 ${bucket_len} |
| 635 | ${value}= Get From List ${buckets} ${INDEX_1} |
| 636 | ${matched}= Verify ONU in Group Bucket ${value} ${onu_port} |
Matteo Scandolo | a80b473 | 2020-09-04 13:51:10 -0700 | [diff] [blame] | 637 | Exit For Loop If ${matched} |
| 638 | END |
| 639 | Run Keyword If ${group_exist} |
| 640 | ... Should Be True ${matched} No match for ${deviceId} and ${onu_port} found in ONOS groups |
| 641 | ... ELSE |
| 642 | ... Should Be True '${matched}'=='False' Match for ${deviceId} and ${onu_port} found in ONOS groups |
| 643 | |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 644 | Assert Number of AAA-Users |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 645 | [Arguments] ${ip} ${port} ${expected_onus} ${deviceId} |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 646 | [Documentation] Matches for number of aaa-users authorized based on number of onus |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 647 | ${aaa_users}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Matteo Scandolo | 50be75c | 2020-11-12 11:14:12 -0800 | [diff] [blame] | 648 | ... aaa-users | grep ${deviceId} | grep AUTHORIZED | wc -l |
| 649 | Log Found ${aaa_users} of ${expected_onus} expected authenticated users on device ${deviceId} |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 650 | Should Be Equal As Integers ${aaa_users} ${expected_onus} |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 651 | |
| 652 | Validate DHCP Allocations |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 653 | [Arguments] ${ip} ${port} ${count} ${workflow} ${deviceId} |
Kailash | 6f5acb6 | 2019-08-28 14:38:45 -0700 | [diff] [blame] | 654 | [Documentation] Matches for number of dhcpacks based on number of onus |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 655 | ${allocations}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Matteo Scandolo | 50be75c | 2020-11-12 11:14:12 -0800 | [diff] [blame] | 656 | ... dhcpl2relay-allocations | grep ${deviceId} | grep DHCPACK | wc -l |
Matteo Scandolo | da854b0 | 2020-09-01 16:20:51 -0700 | [diff] [blame] | 657 | # if the workflow is TT we'll have 2 allocations for each ONU |
| 658 | ${ttAllocations}= Evaluate (${count} * 2) |
| 659 | ${count}= Set Variable If $workflow=='tt' ${ttAllocations} ${count} |
Matteo Scandolo | 50be75c | 2020-11-12 11:14:12 -0800 | [diff] [blame] | 660 | Log Found ${allocations} of ${count} expected DHCPACK on device ${deviceId} |
Matteo Scandolo | da854b0 | 2020-09-01 16:20:51 -0700 | [diff] [blame] | 661 | Should Be Equal As Integers ${allocations} ${count} |
Suchitra Vemuri | 8a9c378 | 2019-10-23 12:43:01 -0700 | [diff] [blame] | 662 | |
| 663 | Validate Subscriber DHCP Allocation |
Suchitra Vemuri | 4281941 | 2020-10-01 17:45:43 -0700 | [diff] [blame] | 664 | [Arguments] ${ip} ${port} ${onu_port} ${vlan}='' |
Suchitra Vemuri | 8a9c378 | 2019-10-23 12:43:01 -0700 | [diff] [blame] | 665 | [Documentation] Verifies that the specified subscriber is found in DHCP allocations |
| 666 | ##TODO: Enhance the keyword to include DHCP allocated address is not 0.0.0.0 |
TorstenThieme | 4e2168e | 2021-06-22 14:01:47 +0000 | [diff] [blame] | 667 | ${allocations}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Suchitra Vemuri | 4281941 | 2020-10-01 17:45:43 -0700 | [diff] [blame] | 668 | ... dhcpl2relay-allocations | grep DHCPACK | grep ${onu_port} | grep ${vlan} |
Gilles Depatie | 675a206 | 2019-10-22 12:44:42 -0400 | [diff] [blame] | 669 | 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] | 670 | |
| 671 | Device Is Available In ONOS |
Matteo Scandolo | 3218d5b | 2021-05-26 11:50:10 -0700 | [diff] [blame] | 672 | [Arguments] ${url} ${dpid} ${available}=true |
| 673 | [Documentation] Validates the device exists and it has the expected availability in ONOS |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 674 | ${rc} ${json} Run And Return Rc And Output curl --fail -sSL ${url}/onos/v1/devices/${dpid} |
| 675 | Should Be Equal As Integers 0 ${rc} |
| 676 | ${rc} ${value} Run And Return Rc And Output echo '${json}' | jq -r .available |
| 677 | Should Be Equal As Integers 0 ${rc} |
Matteo Scandolo | 3218d5b | 2021-05-26 11:50:10 -0700 | [diff] [blame] | 678 | Should Be Equal ${available} ${value} |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 679 | |
| 680 | Remove All Devices From ONOS |
| 681 | [Arguments] ${url} |
| 682 | [Documentation] Executes the device-remove command on each device in ONOS |
TorstenThieme | bccd3ae | 2020-02-20 12:56:44 +0000 | [diff] [blame] | 683 | ${rc} ${output} Run And Return Rc And Output |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 684 | ... curl --fail -sSL ${url}/onos/v1/devices | jq -r '.devices[].id' |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 685 | Should Be Equal As Integers ${rc} 0 |
TorstenThieme | bccd3ae | 2020-02-20 12:56:44 +0000 | [diff] [blame] | 686 | @{dpids} Split String ${output} |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 687 | ${count}= Get length ${dpids} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 688 | FOR ${dpid} IN @{dpids} |
| 689 | ${rc}= Run Keyword If '${dpid}' != '' |
| 690 | ... Run And Return Rc curl -XDELETE --fail -sSL ${url}/onos/v1/devices/${dpid} |
| 691 | Run Keyword If '${dpid}' != '' |
| 692 | ... Should Be Equal As Integers ${rc} 0 |
| 693 | END |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 694 | |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 695 | Assert ONU Port Is Disabled |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 696 | [Arguments] ${ip} ${port} ${deviceId} ${onu_port} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 697 | [Documentation] Verifies if the ONU port is disabled in ONOS |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 698 | ${onu_port_disabled}= Execute ONOS CLI Command use single connection ${ip} ${port} |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 699 | ... ports -d ${deviceId} | grep port=${onu_port} |
| 700 | Log ${onu_port_disabled} |
| 701 | Should Not Be Empty ${onu_port_disabled} |
| 702 | |
Matteo Scandolo | 7d1a80d | 2021-04-09 14:30:43 -0700 | [diff] [blame] | 703 | Assert Olts in ONOS |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 704 | [Arguments] ${ip} ${port} ${count} |
Matteo Scandolo | 520f77e | 2021-06-01 16:14:47 -0700 | [diff] [blame] | 705 | [Documentation] DEPRECATED use Assert Olt in ONOS |
| 706 | ... Check that a certain number of olts are known to ONOS |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 707 | ${olts}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Matteo Scandolo | 520f77e | 2021-06-01 16:14:47 -0700 | [diff] [blame] | 708 | ... volt-olts | wc -l |
Matteo Scandolo | 7d1a80d | 2021-04-09 14:30:43 -0700 | [diff] [blame] | 709 | Log Found ${olts} of ${count} expected Olts |
| 710 | Should Be Equal As Integers ${olts} ${count} |
| 711 | |
Matteo Scandolo | 520f77e | 2021-06-01 16:14:47 -0700 | [diff] [blame] | 712 | Assert Olt in ONOS |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 713 | [Arguments] ${ip} ${port} ${deviceId} |
Matteo Scandolo | 520f77e | 2021-06-01 16:14:47 -0700 | [diff] [blame] | 714 | [Documentation] Check that a particular olt is known to ONOS |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 715 | ${olts}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Matteo Scandolo | 520f77e | 2021-06-01 16:14:47 -0700 | [diff] [blame] | 716 | ... volt-olts | grep ${deviceId} | wc -l |
| 717 | Should Be Equal As Integers ${olts} 1 "Device ${deviceId} is not recognized as an OLT" |
| 718 | |
Matteo Scandolo | 7d1a80d | 2021-04-09 14:30:43 -0700 | [diff] [blame] | 719 | Wait for Olts in ONOS |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 720 | [Arguments] ${ip} ${port} ${count} ${max_wait_time}=10m |
Matteo Scandolo | 520f77e | 2021-06-01 16:14:47 -0700 | [diff] [blame] | 721 | [Documentation] DEPRECATED use Wait for Olt in ONOS |
| 722 | ... Waits untill a certain number of ports are enabled in ONOS for a particular deviceId |
Matteo Scandolo | 7d1a80d | 2021-04-09 14:30:43 -0700 | [diff] [blame] | 723 | Wait Until Keyword Succeeds ${max_wait_time} 5s Assert Olts in ONOS |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 724 | ... ${ip} ${port} ${count} |
Matteo Scandolo | 7d1a80d | 2021-04-09 14:30:43 -0700 | [diff] [blame] | 725 | |
Matteo Scandolo | 520f77e | 2021-06-01 16:14:47 -0700 | [diff] [blame] | 726 | Wait for Olt in ONOS |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 727 | [Arguments] ${ip} ${port} ${deviceId} ${max_wait_time}=10m |
Matteo Scandolo | 520f77e | 2021-06-01 16:14:47 -0700 | [diff] [blame] | 728 | [Documentation] Waits until a particular deviceId is recognized by ONOS as an OLT |
| 729 | Wait Until Keyword Succeeds ${max_wait_time} 5s Assert Olt in ONOS |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 730 | ... ${ip} ${port} ${deviceId} |
Matteo Scandolo | 520f77e | 2021-06-01 16:14:47 -0700 | [diff] [blame] | 731 | |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 732 | Assert Ports in ONOS |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 733 | [Arguments] ${ip} ${port} ${count} ${deviceId} ${filter} |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 734 | [Documentation] Check that a certain number of ports are enabled in ONOS |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 735 | ${ports}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Matteo Scandolo | 50be75c | 2020-11-12 11:14:12 -0800 | [diff] [blame] | 736 | ... ports -e ${deviceId} | grep ${filter} | wc -l |
| 737 | Log Found ${ports} of ${count} expected ports on device ${deviceId} |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 738 | Should Be Equal As Integers ${ports} ${count} |
| 739 | |
| 740 | Wait for Ports in ONOS |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 741 | [Arguments] ${ip} ${port} ${count} ${deviceId} ${filter} ${max_wait_time}=10m |
Matteo Scandolo | 50be75c | 2020-11-12 11:14:12 -0800 | [diff] [blame] | 742 | [Documentation] Waits untill a certain number of ports are enabled in ONOS for a particular deviceId |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 743 | Wait Until Keyword Succeeds ${max_wait_time} 5s Assert Ports in ONOS |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 744 | ... ${ip} ${port} ${count} ${deviceId} ${filter} |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 745 | |
| 746 | Wait for AAA Authentication |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 747 | [Arguments] ${ip} ${port} ${count} ${deviceId} ${max_wait_time}=10m |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 748 | [Documentation] Waits untill a certain number of subscribers are authenticated in ONOS |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 749 | Wait Until Keyword Succeeds ${max_wait_time} 5s Assert Number of AAA-Users |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 750 | ... ${ip} ${port} ${count} ${deviceId} |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 751 | |
| 752 | Wait for DHCP Ack |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 753 | [Arguments] ${ip} ${port} ${count} ${workflow} ${deviceId} ${max_wait_time}=10m |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 754 | [Documentation] Waits untill a certain number of subscribers have received a DHCP_ACK |
TorstenThieme | d4f4896 | 2020-12-08 12:17:19 +0000 | [diff] [blame] | 755 | Wait Until Keyword Succeeds ${max_wait_time} 5s Validate DHCP Allocations |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 756 | ... ${ip} ${port} ${count} ${workflow} ${deviceId} |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 757 | |
Matteo Scandolo | 96dbe43 | 2020-05-28 10:51:57 -0700 | [diff] [blame] | 758 | Provision subscriber REST |
| 759 | [Documentation] Uses the rest APIs to provision a subscriber |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 760 | [Arguments] ${of_id} ${onu_port} |
Matteo Scandolo | 96dbe43 | 2020-05-28 10:51:57 -0700 | [diff] [blame] | 761 | ${resp}= Post Request ONOS |
| 762 | ... /onos/olt/oltapp/${of_id}/${onu_port} |
| 763 | Should Be Equal As Strings ${resp.status_code} 200 |
| 764 | |
Hardik Windlass | ea4caf7 | 2021-07-30 07:22:12 +0000 | [diff] [blame] | 765 | Count Enabled UNI Ports |
| 766 | [Documentation] Count all the UNI Ports on a Device |
| 767 | [Arguments] ${ip} ${port} ${of_id} |
| 768 | ${count}= Execute ONOS CLI Command use single connection ${ip} ${port} |
| 769 | ... ports -e ${of_id} | grep -v SWITCH | grep -v nni | wc -l |
| 770 | Log ${count} |
| 771 | [Return] ${count} |
| 772 | |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 773 | List Enabled UNI Ports |
| 774 | [Documentation] List all the UNI Ports, the only way we have is to filter out the one called NNI |
| 775 | ... Creates a list of dictionaries |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 776 | [Arguments] ${ip} ${port} ${of_id} |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 777 | [Return] [{'port': '16', 'of_id': 'of:00000a0a0a0a0a00'}, {'port': '32', 'of_id': 'of:00000a0a0a0a0a00'}] |
| 778 | ${result}= Create List |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 779 | ${out}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 780 | ... ports -e ${of_id} | grep -v SWITCH | grep -v nni |
TorstenThieme | bccd3ae | 2020-02-20 12:56:44 +0000 | [diff] [blame] | 781 | @{unis}= Split To Lines ${out} |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 782 | FOR ${uni} IN @{unis} |
TorstenThieme | bccd3ae | 2020-02-20 12:56:44 +0000 | [diff] [blame] | 783 | ${matches} = Get Regexp Matches ${uni} .*port=([0-9]+),.* 1 |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 784 | &{portDict} Create Dictionary of_id=${of_id} port=${matches[0]} |
| 785 | Append To List ${result} ${portDict} |
| 786 | END |
| 787 | Log ${result} |
| 788 | Return From Keyword ${result} |
| 789 | |
| 790 | Provision all subscribers on device |
Matteo Scandolo | 96dbe43 | 2020-05-28 10:51:57 -0700 | [diff] [blame] | 791 | [Documentation] Provisions a subscriber in ONOS for all the enabled UNI ports on a particular device |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 792 | [Arguments] ${ip} ${port} ${onos_ip} ${onos_rest_port} ${of_id} |
| 793 | ${unis}= List Enabled UNI Ports ${ip} ${port} ${of_id} |
Matteo Scandolo | 96dbe43 | 2020-05-28 10:51:57 -0700 | [diff] [blame] | 794 | ${onos_auth}= Create List karaf karaf |
| 795 | Create Session ONOS http://${onos_ip}:${onos_rest_port} auth=${onos_auth} |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 796 | FOR ${uni} IN @{unis} |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 797 | Provision Subscriber REST ${uni['of_id']} ${uni['port']} |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 798 | END |
| 799 | |
| 800 | List OLTs |
Matteo Scandolo | 50be75c | 2020-11-12 11:14:12 -0800 | [diff] [blame] | 801 | # NOTE this method is not currently used but it can come useful in the future |
| 802 | [Documentation] Returns a list of all OLTs known to ONOS |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 803 | [Arguments] ${ip} ${port} |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 804 | [Return] ['of:00000a0a0a0a0a00', 'of:00000a0a0a0a0a01'] |
| 805 | ${result}= Create List |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 806 | ${out}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 807 | ... volt-olts |
TorstenThieme | bccd3ae | 2020-02-20 12:56:44 +0000 | [diff] [blame] | 808 | @{olts}= Split To Lines ${out} |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 809 | FOR ${olt} IN @{olts} |
| 810 | Log ${olt} |
TorstenThieme | bccd3ae | 2020-02-20 12:56:44 +0000 | [diff] [blame] | 811 | ${matches} = Get Regexp Matches ${olt} ^OLT (.+)$ 1 |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 812 | # there may be some logs mixed with the output so only append if we have a match |
| 813 | ${matches_length}= Get Length ${matches} |
| 814 | Run Keyword If ${matches_length}==1 |
| 815 | ... Append To List ${result} ${matches[0]} |
| 816 | END |
| 817 | Return From Keyword ${result} |
| 818 | |
Matteo Scandolo | 7591109 | 2021-11-16 17:05:36 -0800 | [diff] [blame] | 819 | Count flows |
| 820 | [Documentation] Count flows in a particular ${state} in ONOS |
| 821 | [Arguments] ${ip} ${port} ${targetFlows} ${deviceId} ${state} |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 822 | ${flows}= Execute ONOS CLI Command use single connection ${ip} ${port} |
Matteo Scandolo | 7591109 | 2021-11-16 17:05:36 -0800 | [diff] [blame] | 823 | ... flows -s ${state} ${deviceId} | grep -v deviceId | wc -l |
| 824 | Log Found ${state} ${flows} of ${targetFlows} expected flows on device ${deviceId} |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 825 | Should Be Equal As Integers ${targetFlows} ${flows} |
| 826 | |
| 827 | Wait for all flows to in ADDED state |
| 828 | [Documentation] Waits until the flows have been provisioned |
TorstenThieme | 731a759 | 2021-07-01 14:26:54 +0000 | [diff] [blame] | 829 | [Arguments] ${ip} ${port} ${deviceId} ${workflow} ${uni_count} ${olt_count} |
TorstenThieme | b198c48 | 2020-12-14 19:45:23 +0000 | [diff] [blame] | 830 | ... ${provisioned} ${withEapol} ${withDhcp} ${withIgmp} ${withLldp} |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 831 | ${targetFlows}= Calculate flows by workflow ${workflow} ${uni_count} ${olt_count} ${provisioned} |
Andrea Campanella | 70cf0a7 | 2020-05-27 10:55:15 +0200 | [diff] [blame] | 832 | ... ${withEapol} ${withDhcp} ${withIgmp} ${withLldp} |
Matteo Scandolo | 7591109 | 2021-11-16 17:05:36 -0800 | [diff] [blame] | 833 | Wait Until Keyword Succeeds 10m 5s Count flows |
| 834 | ... ${ip} ${port} ${targetFlows} ${deviceId} added |
| 835 | |
| 836 | Wait for all flows to be removed |
| 837 | [Documentation] Wait for all flows to be removed from a particular device |
| 838 | [Arguments] ${ip} ${port} ${deviceId} |
| 839 | Wait Until Keyword Succeeds 10m 5s Count flows |
| 840 | ... ${ip} ${port} 0 ${deviceId} any |
| 841 | |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 842 | |
Girish Gowdra | d769b41 | 2021-05-16 11:09:46 -0700 | [diff] [blame] | 843 | Get Limiting Bandwidth Details |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 844 | [Arguments] ${bandwidth_profile_name} |
| 845 | [Documentation] Collects the bandwidth profile details for the given bandwidth profile and |
| 846 | ... returns the limiting bandwidth |
Girish Gowdra | cb8482a | 2021-05-27 09:06:13 -0700 | [diff] [blame] | 847 | ${cir} ${cbs} ${eir} ${ebs} ${air}= Get Bandwidth Profile Details Rest |
| 848 | ... ${bandwidth_profile_name} |
Girish Gowdra | d769b41 | 2021-05-16 11:09:46 -0700 | [diff] [blame] | 849 | ${limiting_BW}= Evaluate ${eir}+${cir}+${air} |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 850 | [Return] ${limiting_BW} |
Hardik Windlass | e8b9922 | 2021-01-25 10:03:14 +0000 | [diff] [blame] | 851 | |
Emrehan UZUN | d6f8589 | 2021-07-01 13:54:26 +0000 | [diff] [blame] | 852 | Get Limiting Bandwidth Details for Fixed and Committed |
| 853 | [Arguments] ${bandwidth_profile_name} |
| 854 | [Documentation] Collects the bandwidth profile details for the given bandwidth profile and |
| 855 | ... returns the limiting bandwidth for fixed and committed |
| 856 | ${cir} ${cbs} ${eir} ${ebs} ${air}= Get Bandwidth Profile Details Rest |
| 857 | ... ${bandwidth_profile_name} |
| 858 | ${limiting_BW}= Evaluate ${cir}+${air} |
| 859 | [Return] ${limiting_BW} |
| 860 | |
Hardik Windlass | e8b9922 | 2021-01-25 10:03:14 +0000 | [diff] [blame] | 861 | Validate Deleted Device Cleanup In ONOS |
| 862 | [Arguments] ${ip} ${port} ${olt_serial_number} |
| 863 | [Documentation] The keyword verifies that ports, flows, meters, subscribers, dhcp are all cleared in ONOS |
| 864 | # Fetch OF Id for OLT |
| 865 | ${olt_of_id}= Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Device in ONOS ${olt_serial_number} |
Hardik Windlass | e8b9922 | 2021-01-25 10:03:14 +0000 | [diff] [blame] | 866 | # Verify Ports are Removed |
Matteo Scandolo | 45645bd | 2021-11-02 10:09:07 -0700 | [diff] [blame] | 867 | ${ports}= Execute ONOS CLI Command use single connection ${ip} ${port} |
| 868 | ... ports ${olt_of_id} | grep -v ${olt_of_id} |
| 869 | ${port_count}= Get Line Count ${ports} |
| 870 | Should Be Equal As Integers ${port_count} 0 Ports have not been removed from ONOS after cleanup |
Hardik Windlass | e8b9922 | 2021-01-25 10:03:14 +0000 | [diff] [blame] | 871 | # Verify Subscribers are Removed |
Matteo Scandolo | 45645bd | 2021-11-02 10:09:07 -0700 | [diff] [blame] | 872 | ${sub}= Execute ONOS CLI Command use single connection ${ip} ${port} |
| 873 | ... volt-programmed-subscribers | grep ${olt_of_id} |
| 874 | ${sub_count}= Get Line Count ${sub} |
| 875 | Should Be Equal As Integers ${sub_count} 0 Subscribers have not been removed from ONOS after cleanup |
Hardik Windlass | e8b9922 | 2021-01-25 10:03:14 +0000 | [diff] [blame] | 876 | # Verify Flows are Removed |
Matteo Scandolo | 45645bd | 2021-11-02 10:09:07 -0700 | [diff] [blame] | 877 | ${flow}= Execute ONOS CLI Command use single connection ${ip} ${port} |
| 878 | ... flows -s -f ${olt_of_id} | grep -v deviceId |
| 879 | ${flow_count}= Get Line Count ${flow} |
| 880 | Should Be Equal As Integers ${flow_count} 0 Flows have not been removed from ONOS after cleanup |
Hardik Windlass | e8b9922 | 2021-01-25 10:03:14 +0000 | [diff] [blame] | 881 | # Verify Meters are Removed |
Matteo Scandolo | 45645bd | 2021-11-02 10:09:07 -0700 | [diff] [blame] | 882 | ${meter}= Execute ONOS CLI Command use single connection ${ip} ${port} |
| 883 | ... meters ${olt_of_id} |
| 884 | ${meter_count}= Get Line Count ${meter} |
| 885 | Should Be Equal As Integers ${meter_count} 0 Meters have not been removed from ONOS after cleanup |
Hardik Windlass | e8b9922 | 2021-01-25 10:03:14 +0000 | [diff] [blame] | 886 | # Verify AAA-Users are Removed |
Matteo Scandolo | 45645bd | 2021-11-02 10:09:07 -0700 | [diff] [blame] | 887 | ${aaa}= Execute ONOS CLI Command use single connection ${ip} ${port} |
| 888 | ... aaa-users ${olt_of_id} |
| 889 | ${aaa_count}= Get Line Count ${aaa} |
| 890 | Should Be Equal As Integers ${aaa_count} 0 AAA Users have not been removed from ONOS after cleanup |
Hardik Windlass | e8b9922 | 2021-01-25 10:03:14 +0000 | [diff] [blame] | 891 | # Verify Dhcp-Allocations are Removed |
Matteo Scandolo | 45645bd | 2021-11-02 10:09:07 -0700 | [diff] [blame] | 892 | ${dhcp}= Execute ONOS CLI Command use single connection ${ip} ${port} |
| 893 | ... dhcpl2relay-allocations ${olt_of_id} |
| 894 | ${dhcp_count}= Get Line Count ${dhcp} |
| 895 | Should Be Equal As Integers ${dhcp_count} 0 DHCP Allocations have not been removed from ONOS after cleanup |
Hardik Windlass | dd1a9a1 | 2021-02-23 15:34:50 +0000 | [diff] [blame] | 896 | |
| 897 | Delete ONOS App |
| 898 | [Arguments] ${url} ${app_name} |
| 899 | [Documentation] This keyword deactivates and uninstalls the given ONOS App |
| 900 | ${rc}= Run And Return Rc curl --fail -sSL -X DELETE ${url}/onos/v1/applications/${app_name} |
Matteo Scandolo | 2769d2b | 2021-04-14 10:29:24 -0700 | [diff] [blame] | 901 | Should Be Equal As Integers ${rc} 0 Can't delete ${app_name} from ONOS |
Hardik Windlass | dd1a9a1 | 2021-02-23 15:34:50 +0000 | [diff] [blame] | 902 | |
| 903 | Verify ONOS App Active |
| 904 | [Arguments] ${url} ${app_name} ${app_version}=${EMPTY} |
| 905 | [Documentation] This keyword verifies that the given ONOS App status is Active |
| 906 | ${rc} ${output} Run And Return Rc And Output |
| 907 | ... curl --fail -sSL ${url}/onos/v1/applications/${app_name} | jq -r .state |
| 908 | Should Be Equal As Integers ${rc} 0 |
| 909 | Should Be Equal '${output}' 'ACTIVE' |
| 910 | ${rc1} ${output1} Run And Return Rc And Output |
| 911 | ... curl --fail -sSL ${url}/onos/v1/applications/${app_name} | jq -r .version |
| 912 | Run Keyword If '${app_version}'!='${EMPTY}' |
| 913 | ... Run Keywords |
Matteo Scandolo | 2769d2b | 2021-04-14 10:29:24 -0700 | [diff] [blame] | 914 | ... Should Be Equal As Integers ${rc1} 0 Can't read app ${app_name} status from ONOS |
Hardik Windlass | dd1a9a1 | 2021-02-23 15:34:50 +0000 | [diff] [blame] | 915 | ... AND Should Be Equal '${output1}' '${app_version}' |
| 916 | |
| 917 | Install And Activate ONOS App |
| 918 | [Arguments] ${url} ${app_oar_file} |
| 919 | [Documentation] This keyword installs and activates the given ONOS App |
| 920 | ${cmd}= Catenate SEPARATOR= |
| 921 | ... curl --fail -sSL -H Content-Type:application/octet-stream - |
| 922 | ... X POST ${url}/onos/v1/applications?activate=true --data-binary \@${app_oar_file} |
| 923 | ${rc} ${output} Run And Return Rc And Output ${cmd} |
Matteo Scandolo | 2769d2b | 2021-04-14 10:29:24 -0700 | [diff] [blame] | 924 | Should Be Equal As Integers ${rc} 0 Can't load onos app ${app_oar_file} to ONOS" |
Hardik Windlass | dd1a9a1 | 2021-02-23 15:34:50 +0000 | [diff] [blame] | 925 | Log ${output} |
Hardik Windlass | dc2610f | 2021-03-09 07:33:51 +0000 | [diff] [blame] | 926 | |
| 927 | Get ONOS App Details |
| 928 | [Arguments] ${url} ${app_name} |
| 929 | [Documentation] Retrieves ONOS App Details |
| 930 | ${rc} ${output} Run And Return Rc And Output |
| 931 | ... curl --fail -sSL ${url}/onos/v1/applications/${app_name} |
Matteo Scandolo | 2769d2b | 2021-04-14 10:29:24 -0700 | [diff] [blame] | 932 | Should Be Equal As Integers ${rc} 0 Can't read app ${app_name} details from ONOS |
Hardik Windlass | dc2610f | 2021-03-09 07:33:51 +0000 | [diff] [blame] | 933 | [Return] ${output} |