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