Kailash | 9276492 | 2019-07-25 08:21:39 -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 | 9276492 | 2019-07-25 08:21:39 -0700 | [diff] [blame] | 14 | # robot test functions |
| 15 | |
| 16 | *** Settings *** |
| 17 | Documentation Library for various utilities |
| 18 | Library SSHLibrary |
Kailash | 9276492 | 2019-07-25 08:21:39 -0700 | [diff] [blame] | 19 | Library String |
| 20 | Library DateTime |
| 21 | Library Process |
| 22 | Library Collections |
| 23 | Library RequestsLibrary |
| 24 | Library OperatingSystem |
Andy Bavier | 63460da | 2020-02-20 14:35:12 -0700 | [diff] [blame] | 25 | Library CORDRobot |
| 26 | Library ImportResource resources=CORDRobot |
Kailash | 9276492 | 2019-07-25 08:21:39 -0700 | [diff] [blame] | 27 | |
| 28 | *** Keywords *** |
Kailash | 528f7c0 | 2019-07-31 10:55:49 -0700 | [diff] [blame] | 29 | Check CLI Tools Configured |
| 30 | [Documentation] Tests that use 'voltctl' and 'kubectl' should execute this keyword in suite setup |
| 31 | # check voltctl and kubectl configured |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 32 | ${voltctl_rc}= Run And Return RC voltctl device list |
| 33 | ${kubectl_rc}= Run And Return RC kubectl get pods |
Gilles Depatie | 675a206 | 2019-10-22 12:44:42 -0400 | [diff] [blame] | 34 | Run Keyword If ${voltctl_rc} != 0 or ${kubectl_rc} != 0 FATAL ERROR |
| 35 | ... VOLTCTL and KUBECTL not configured. Please configure before executing tests. |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 36 | |
| 37 | Send File To Onos |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 38 | [Documentation] Send the content of the file to Onos to selected section of configuration |
| 39 | ... using Post Request |
| 40 | [Arguments] ${CONFIG_FILE} ${section} |
| 41 | ${Headers}= Create Dictionary Content-Type application/json |
| 42 | ${File_Data}= OperatingSystem.Get File ${CONFIG_FILE} |
| 43 | Log ${Headers} |
| 44 | Log ${File_Data} |
| 45 | ${resp}= Post Request ONOS |
| 46 | ... /onos/v1/network/configuration/${section} headers=${Headers} data=${File_Data} |
| 47 | Should Be Equal As Strings ${resp.status_code} 200 |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 48 | |
| 49 | Common Test Suite Setup |
| 50 | [Documentation] Setup the test suite |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 51 | Set Global Variable ${KUBECTL_CONFIG} export KUBECONFIG=%{KUBECONFIG} |
| 52 | Set Global Variable ${VOLTCTL_CONFIG} export VOLTCONFIG=%{VOLTCONFIG} |
| 53 | ${k8s_node_ip}= Evaluate ${nodes}[0].get("ip") |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 54 | ${ONOS_REST_IP}= Get Environment Variable ONOS_REST_IP ${k8s_node_ip} |
| 55 | ${ONOS_SSH_IP}= Get Environment Variable ONOS_SSH_IP ${k8s_node_ip} |
| 56 | Set Global Variable ${ONOS_REST_IP} |
| 57 | Set Global Variable ${ONOS_SSH_IP} |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 58 | ${k8s_node_user}= Evaluate ${nodes}[0].get("user") |
| 59 | ${k8s_node_pass}= Evaluate ${nodes}[0].get("pass") |
| 60 | Check CLI Tools Configured |
| 61 | ${onos_auth}= Create List karaf karaf |
| 62 | ${HEADERS} Create Dictionary Content-Type=application/json |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 63 | Create Session ONOS http://${ONOS_REST_IP}:${ONOS_REST_PORT} auth=${ONOS_AUTH} |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 64 | ${olt_ip}= Evaluate ${olts}[0].get("ip") |
| 65 | ${olt_user}= Evaluate ${olts}[0].get("user") |
| 66 | ${olt_pass}= Evaluate ${olts}[0].get("pass") |
| 67 | ${olt_serial_number}= Evaluate ${olts}[0].get("serial") |
| 68 | ${num_onus}= Get Length ${hosts.src} |
| 69 | ${num_onus}= Convert to String ${num_onus} |
| 70 | #send sadis file to onos |
Andy Bavier | a269175 | 2019-11-27 12:18:38 -0700 | [diff] [blame] | 71 | ${sadis_file}= Get Variable Value ${sadis.file} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 72 | Log To Console \nSadis File:${sadis_file} |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 73 | Run Keyword Unless '${sadis_file}' is '${None}' Send File To Onos ${sadis_file} apps/ |
| 74 | Set Suite Variable ${num_onus} |
| 75 | Set Suite Variable ${olt_serial_number} |
| 76 | Set Suite Variable ${olt_ip} |
| 77 | Set Suite Variable ${olt_user} |
| 78 | Set Suite Variable ${olt_pass} |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 79 | @{container_list}= Create List adapter-open-olt adapter-open-onu voltha-api-server |
| 80 | ... voltha-ro-core voltha-rw-core-11 voltha-rw-core-12 voltha-ofagent |
| 81 | Set Suite Variable ${container_list} |
| 82 | ${datetime}= Get Current Date |
suraj gour | 7f6d5fe | 2019-11-29 10:56:35 +0000 | [diff] [blame] | 83 | Set Suite Variable ${datetime} |
| 84 | |
| 85 | WPA Reassociate |
suraj gour | 7f6d5fe | 2019-11-29 10:56:35 +0000 | [diff] [blame] | 86 | [Documentation] Executes a particular wpa_cli reassociate, which performs force reassociation |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 87 | [Arguments] ${iface} ${ip} ${user} ${pass}=${None} |
| 88 | ... ${container_type}=${None} ${container_name}=${None} |
suraj gour | 7f6d5fe | 2019-11-29 10:56:35 +0000 | [diff] [blame] | 89 | #Below for loops are used instead of sleep time, to execute reassociate command and check status |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 90 | FOR ${i} IN RANGE 70 |
| 91 | ${output}= Login And Run Command On Remote System |
| 92 | ... wpa_cli -i ${iface} reassociate ${ip} ${user} |
| 93 | ... ${pass} ${container_type} ${container_name} |
| 94 | ${passed}= Run Keyword And Return Status Should Contain ${output} OK |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 95 | Exit For Loop If ${passed} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 96 | END |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 97 | Should Be True ${passed} Status does not contain 'SUCCESS' |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 98 | FOR ${i} IN RANGE 70 |
| 99 | ${output}= Login And Run Command On Remote System |
Andy Bavier | ae4a17e | 2020-02-25 14:54:36 -0700 | [diff] [blame] | 100 | ... wpa_cli -i ${iface} status | grep SUCCESS ${ip} ${user} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 101 | ... ${pass} ${container_type} ${container_name} |
| 102 | ${passed}= Run Keyword And Return Status Should Contain ${output} SUCCESS |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 103 | Exit For Loop If ${passed} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 104 | END |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 105 | Should Be True ${passed} Status does not contain 'SUCCESS' |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 106 | |
suraj gour | 7f6d5fe | 2019-11-29 10:56:35 +0000 | [diff] [blame] | 107 | Validate Authentication After Reassociate |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 108 | [Arguments] ${auth_pass} ${iface} ${ip} ${user} ${pass}=${None} |
| 109 | ... ${container_type}=${None} ${container_name}=${None} |
| 110 | [Documentation] |
| 111 | ... Executes a particular reassociate request on the RG using wpa_cli. |
| 112 | ... auth_pass determines if authentication should pass |
Andy Bavier | 84834d4 | 2020-02-25 13:49:50 -0700 | [diff] [blame] | 113 | ${wpa_log}= Catenate SEPARATOR=. /tmp/wpa ${iface} log |
| 114 | ${output}= Login And Run Command On Remote System truncate -s 0 ${wpa_log}; cat ${wpa_log} |
| 115 | ... ${ip} ${user} ${pass} ${container_type} ${container_name} |
| 116 | Log ${output} |
| 117 | Should Not Contain ${output} authentication completed successfully |
suraj gour | 7f6d5fe | 2019-11-29 10:56:35 +0000 | [diff] [blame] | 118 | WPA Reassociate ${iface} ${ip} ${user} ${pass} ${container_type} ${container_name} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 119 | Run Keyword If '${auth_pass}' == 'True' Wait Until Keyword Succeeds ${timeout} 2s |
Andy Bavier | 84834d4 | 2020-02-25 13:49:50 -0700 | [diff] [blame] | 120 | ... Check Remote File Contents True ${wpa_log} ${iface}.*authentication completed successfully |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 121 | ... ${ip} ${user} ${pass} ${container_type} ${container_name} |
suraj gour | 7f6d5fe | 2019-11-29 10:56:35 +0000 | [diff] [blame] | 122 | Run Keyword If '${auth_pass}' == 'False' Sleep 20s |
Suchitra Vemuri | 3cb29f8 | 2020-02-25 13:59:58 -0800 | [diff] [blame] | 123 | Run Keyword If '${auth_pass}' == 'False' Check Remote File Contents False /tmp/wpa.log |
Andy Bavier | 84834d4 | 2020-02-25 13:49:50 -0700 | [diff] [blame] | 124 | ... ${iface}.*authentication completed successfully ${ip} ${user} ${pass} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 125 | ... ${container_type} ${container_name} |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 126 | |
| 127 | Send Dhclient Request To Release Assigned IP |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 128 | [Arguments] ${iface} ${ip} ${user} ${path_dhcpleasefile} ${pass}=${None} |
| 129 | ... ${container_type}=${None} ${container_name}=${None} |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 130 | [Documentation] Executes a dhclient with option to release ip against a particular interface on the RG (src) |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 131 | ${result}= Login And Run Command On Remote System |
| 132 | ... dhclient -nw -r ${iface} && rm ${path_dhcpleasefile}/dhclient.* ${ip} ${user} |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 133 | ... ${pass} ${container_type} ${container_name} |
| 134 | Log ${result} |
| 135 | #Should Contain ${result} DHCPRELEASE |
| 136 | [Return] ${result} |
suraj gour | 1ecfae9 | 2019-12-20 15:11:40 +0000 | [diff] [blame] | 137 | |
| 138 | Check Remote File Contents For WPA Logs |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 139 | [Arguments] ${file_should_exist} ${file} ${pattern} ${ip} ${user} ${pass}=${None} |
| 140 | ... ${container_type}=${None} ${container_name}=${None} ${prompt}=~$ |
suraj gour | 1ecfae9 | 2019-12-20 15:11:40 +0000 | [diff] [blame] | 141 | [Documentation] Checks for particular pattern count in a file |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 142 | ${result}= Login And Run Command On Remote System |
| 143 | ... cat ${file} | grep '${pattern}' | wc -l ${ip} ${user} ${pass} |
suraj gour | 1ecfae9 | 2019-12-20 15:11:40 +0000 | [diff] [blame] | 144 | ... ${container_type} ${container_name} ${prompt} |
| 145 | [Return] ${result} |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 146 | |
| 147 | Perform Sanity Test |
| 148 | [Documentation] This keyword performs Sanity Test Procedure |
| 149 | ... Sanity test performs authentication, dhcp and pings for all the ONUs given for the POD |
| 150 | ... This keyword can be used to call in any other tests where sanity check is required |
| 151 | ... and avoids duplication of code. |
| 152 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number} |
| 153 | Set Global Variable ${of_id} |
Hardik Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 154 | ${nni_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 155 | ... Get NNI Port in ONOS ${of_id} |
| 156 | Set Global Variable ${nni_port} |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 157 | FOR ${I} IN RANGE 0 ${num_onus} |
| 158 | ${src}= Set Variable ${hosts.src[${I}]} |
| 159 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Suchitra Vemuri | 0300591 | 2020-02-20 18:59:46 -0800 | [diff] [blame] | 160 | Run Keyword and Ignore Error Collect Logs |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 161 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 162 | ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 163 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
Suchitra Vemuri | 8078b97 | 2020-02-06 19:07:41 -0800 | [diff] [blame] | 164 | # Check ONU port is Enabled in ONOS |
| 165 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s |
Suchitra Vemuri | 760bdd3 | 2020-06-17 12:34:48 -0700 | [diff] [blame] | 166 | ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']} |
Suchitra Vemuri | 8078b97 | 2020-02-06 19:07:41 -0800 | [diff] [blame] | 167 | # Verify EAPOL flows are added for the ONU port |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 168 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 169 | ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
Suchitra Vemuri | 8078b97 | 2020-02-06 19:07:41 -0800 | [diff] [blame] | 170 | # Verify ONU state in voltha |
| 171 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device |
| 172 | ... ENABLED ACTIVE REACHABLE |
| 173 | ... ${src['onu']} onu=True onu_reason=omci-flows-pushed |
| 174 | # Perform Authentication |
Andy Bavier | 84834d4 | 2020-02-25 13:49:50 -0700 | [diff] [blame] | 175 | ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=. |
| 176 | ... /tmp/wpa ${src['dp_iface_name']} log |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 177 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True |
| 178 | ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']} |
Andy Bavier | 84834d4 | 2020-02-25 13:49:50 -0700 | [diff] [blame] | 179 | ... ${src['container_type']} ${src['container_name']} ${wpa_log} |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 180 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2 |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 181 | ... Verify ONU in AAA-Users ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 182 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2 |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 183 | ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 184 | ... volt-add-subscriber-access ${of_id} ${onu_port} |
Suchitra Vemuri | 9da4430 | 2020-03-04 14:24:49 -0800 | [diff] [blame] | 185 | # Verify that no pending flows exist for the ONU port |
| 186 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 187 | ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
Hardik Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 188 | # Verify subscriber access flows are added for the ONU port |
| 189 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 190 | ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 191 | ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']} |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 192 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True |
| 193 | ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 194 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 195 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 196 | ... ${dst['container_name']} |
| 197 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 198 | ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 199 | Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id} |
| 200 | Run Keyword and Ignore Error Collect Logs |
| 201 | END |
| 202 | |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 203 | Perform Sanity Test DT |
| 204 | [Documentation] This keyword performs Sanity Test Procedure for DT Workflow |
| 205 | ... Sanity test performs dhcp and pings (without EAPOL and DHCP flows) for all the ONUs given for the POD |
| 206 | ... This keyword can be used to call in any other tests where sanity check is required |
| 207 | ... and avoids duplication of code. |
| 208 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number} |
| 209 | Set Global Variable ${of_id} |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 210 | ${nni_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 211 | ... Get NNI Port in ONOS ${of_id} |
| 212 | Set Global Variable ${nni_port} |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 213 | FOR ${I} IN RANGE 0 ${num_onus} |
| 214 | ${src}= Set Variable ${hosts.src[${I}]} |
| 215 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 216 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 217 | ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 218 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
| 219 | # Check ONU port is Enabled in ONOS |
| 220 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s |
Suchitra Vemuri | 760bdd3 | 2020-06-17 12:34:48 -0700 | [diff] [blame] | 221 | ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']} |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 222 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2 |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 223 | ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 224 | ... volt-add-subscriber-access ${of_id} ${onu_port} |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 225 | # Verify subscriber access flows are added for the ONU port |
| 226 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
Hardik Windlass | 25e1170 | 2020-03-30 20:05:19 +0530 | [diff] [blame] | 227 | ... Verify Subscriber Access Flows Added For ONU DT ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 228 | ... ${onu_port} ${nni_port} ${src['s_tag']} |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 229 | # Verify ONU state in voltha |
| 230 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device |
| 231 | ... ENABLED ACTIVE REACHABLE |
| 232 | ... ${src['onu']} onu=True onu_reason=omci-flows-pushed |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 233 | # TODO: Yet to Verify on the GPON based Physical POD (VOL-2652) |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 234 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True |
| 235 | ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 236 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 237 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 238 | ... ${dst['container_name']} |
| 239 | Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id} |
| 240 | Run Keyword and Ignore Error Collect Logs |
| 241 | END |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 242 | # Verify ONOS Flows |
| 243 | # Number of Access Flows on ONOS equals 4 * the Number of Active ONUs (2 for each downstream and upstream) |
| 244 | ${onos_flows_count}= Evaluate 4 * ${num_onus} |
| 245 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
Hardik Windlass | 25e1170 | 2020-03-30 20:05:19 +0530 | [diff] [blame] | 246 | ... Verify Subscriber Access Flows Added Count DT ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 247 | ... ${onos_flows_count} |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 248 | # Verify VOLTHA Flows |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 249 | # Number of per OLT Flows equals Twice the Number of Active ONUs (each for downstream and upstream) + 1 for LLDP |
| 250 | ${olt_flows}= Evaluate 2 * ${num_onus} + 1 |
| 251 | # Number of per ONU Flows equals 2 (one each for downstream and upstream) |
| 252 | ${onu_flows}= Set Variable 2 |
| 253 | Run Keyword Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Flows ${olt_flows} |
| 254 | ${List_ONU_Serial} Create List |
| 255 | Set Suite Variable ${List_ONU_Serial} |
| 256 | Build ONU SN List ${List_ONU_Serial} |
| 257 | Log ${List_ONU_Serial} |
| 258 | Run Keyword Wait Until Keyword Succeeds ${timeout} 5s Validate ONU Flows |
| 259 | ... ${List_ONU_Serial} ${onu_flows} |
| 260 | |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 261 | Setup |
| 262 | [Documentation] Pre-test Setup |
| 263 | #test for empty device list |
| 264 | Test Empty Device List |
Suchitra Vemuri | 3158f3c | 2020-05-28 17:58:26 -0700 | [diff] [blame] | 265 | #Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds 120s 10s Openolt is Up |
| 266 | #... ${olt_ip} ${olt_user} ${olt_pass} |
Suchitra Vemuri | 1d8e817 | 2020-06-17 17:43:56 -0700 | [diff] [blame] | 267 | Run Keyword If ${has_dataplane} Sleep 230s |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 268 | #create/preprovision device |
| 269 | ${olt_device_id}= Create Device ${olt_ip} ${OLT_PORT} |
| 270 | Set Suite Variable ${olt_device_id} |
| 271 | #validate olt states |
| 272 | Wait Until Keyword Succeeds ${timeout} 5s |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 273 | ... Validate OLT Device PREPROVISIONED UNKNOWN UNKNOWN ${olt_device_id} |
Suchitra Vemuri | a7e8ad2 | 2020-02-11 18:02:40 -0800 | [diff] [blame] | 274 | Sleep 5s |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 275 | Enable Device ${olt_device_id} |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 276 | Wait Until Keyword Succeeds 180s 5s |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 277 | ... Validate OLT Device ENABLED ACTIVE REACHABLE ${olt_serial_number} |
| 278 | ${logical_id}= Get Logical Device ID From SN ${olt_serial_number} |
| 279 | Set Suite Variable ${logical_id} |
| 280 | |
Hardik Windlass | aaea340 | 2020-03-10 19:45:45 +0530 | [diff] [blame] | 281 | Validate ONUs After OLT Disable |
| 282 | [Documentation] Validates the ONUs state in Voltha, ONUs port state in ONOS |
| 283 | ... and that pings do not succeed After corresponding OLT is Disabled |
| 284 | FOR ${I} IN RANGE 0 ${num_onus} |
| 285 | ${src}= Set Variable ${hosts.src[${I}]} |
| 286 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 287 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 288 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
| 289 | ... ${of_id} |
| 290 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 291 | ... Validate Device ENABLED DISCOVERED |
| 292 | ... UNREACHABLE ${src['onu']} onu=True onu_reason=stopping-openomci |
| 293 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
Suchitra Vemuri | 760bdd3 | 2020-06-17 12:34:48 -0700 | [diff] [blame] | 294 | ... Verify ONU Port Is Disabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']} |
Hardik Windlass | aaea340 | 2020-03-10 19:45:45 +0530 | [diff] [blame] | 295 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 296 | ... Wait Until Keyword Succeeds 60s 2s |
| 297 | ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 298 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 299 | Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id} |
| 300 | Run Keyword and Ignore Error Collect Logs |
| 301 | END |
| 302 | |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 303 | Delete All Devices and Verify |
| 304 | [Documentation] Remove any devices from VOLTHA and ONOS |
| 305 | # Clear devices from VOLTHA |
| 306 | Disable Devices In Voltha Root=true |
Suchitra Vemuri | 970747f | 2020-03-30 17:31:34 -0700 | [diff] [blame] | 307 | Sleep 5s |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 308 | Wait Until Keyword Succeeds ${timeout} 2s Test Devices Disabled In Voltha Root=true |
| 309 | Delete Devices In Voltha Root=true |
Matteo Scandolo | f6cea38 | 2020-04-20 14:32:00 -0700 | [diff] [blame] | 310 | Run Keyword If ${has_dataplane} Sleep 30s |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 311 | Wait Until Keyword Succeeds ${timeout} 2s Test Empty Device List |
| 312 | # Clear devices from ONOS |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 313 | #Remove All Devices From ONOS |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 314 | #... http://karaf:karaf@${ONOS_REST_IP}:${ONOS_REST_PORT} |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 315 | |
| 316 | Teardown |
| 317 | [Documentation] kills processes and cleans up interfaces on src+dst servers |
| 318 | Run Keyword If ${has_dataplane} Clean Up Linux |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 319 | |
| 320 | Teardown Suite |
| 321 | [Documentation] Clean up device if desired |
| 322 | Run Keyword If ${teardown_device} Delete All Devices and Verify |
| 323 | |
| 324 | Delete Device and Verify |
| 325 | [Documentation] Disable -> Delete devices via voltctl and verify its removed |
Suchitra Vemuri | 2fa9bba | 2020-01-22 17:38:48 -0800 | [diff] [blame] | 326 | ${olt_device_id}= Get Device ID From SN ${olt_serial_number} |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 327 | ${rc} ${output}= Run and Return Rc and Output |
| 328 | ... ${VOLTCTL_CONFIG}; voltctl device disable ${olt_device_id} |
| 329 | Should Be Equal As Integers ${rc} 0 |
| 330 | Sleep 5s |
| 331 | Wait Until Keyword Succeeds ${timeout} 5s |
| 332 | ... Validate OLT Device DISABLED UNKNOWN REACHABLE ${olt_serial_number} |
| 333 | ${rc} ${output}= Run and Return Rc and Output |
| 334 | ... ${VOLTCTL_CONFIG}; voltctl device delete ${olt_device_id} |
Matteo Scandolo | f6cea38 | 2020-04-20 14:32:00 -0700 | [diff] [blame] | 335 | Run Keyword If ${has_dataplane} Sleep 50s |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 336 | Should Be Equal As Integers ${rc} 0 |
| 337 | Wait Until Keyword Succeeds ${timeout} 5s Validate Device Removed ${olt_device_id} |
| 338 | |
Gayathri.Selvan | 283a63c | 2020-01-23 04:09:18 +0000 | [diff] [blame] | 339 | Repeat Sanity Test |
| 340 | [Documentation] This keyword performs Sanity Test Procedure |
| 341 | ... Sanity test performs authentication, dhcp and pings for all the ONUs given for the POD |
| 342 | ... This keyword can be used to call in any other tests where sanity check is required |
| 343 | ... with wpa reassociation |
| 344 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number} |
| 345 | Set Global Variable ${of_id} |
| 346 | FOR ${I} IN RANGE 0 ${num_onus} |
Suchitra Vemuri | 0300591 | 2020-02-20 18:59:46 -0800 | [diff] [blame] | 347 | Run Keyword and Ignore Error Collect Logs |
Gayathri.Selvan | 283a63c | 2020-01-23 04:09:18 +0000 | [diff] [blame] | 348 | ${src}= Set Variable ${hosts.src[${I}]} |
| 349 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Suchitra Vemuri | 8078b97 | 2020-02-06 19:07:41 -0800 | [diff] [blame] | 350 | ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 351 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
| 352 | # Check ONU port is Enabled in ONOD |
| 353 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s |
Suchitra Vemuri | 760bdd3 | 2020-06-17 12:34:48 -0700 | [diff] [blame] | 354 | ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']} |
Suchitra Vemuri | 8078b97 | 2020-02-06 19:07:41 -0800 | [diff] [blame] | 355 | # Verify EAPOL flows are added for the ONU port |
| 356 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
David K. Bainbridge | c0617c9 | 2020-03-05 21:17:19 -0800 | [diff] [blame] | 357 | ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
Suchitra Vemuri | 8078b97 | 2020-02-06 19:07:41 -0800 | [diff] [blame] | 358 | # Verify ONU state in voltha |
Suchitra Vemuri | d1e27fb | 2020-02-01 16:34:37 -0800 | [diff] [blame] | 359 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device |
Suchitra Vemuri | 81e4f02 | 2020-02-01 13:16:02 -0800 | [diff] [blame] | 360 | ... ENABLED ACTIVE REACHABLE |
| 361 | ... ${src['onu']} onu=True onu_reason=omci-flows-pushed |
Suchitra Vemuri | 8078b97 | 2020-02-06 19:07:41 -0800 | [diff] [blame] | 362 | # Perform Authentication |
Gayathri.Selvan | 283a63c | 2020-01-23 04:09:18 +0000 | [diff] [blame] | 363 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 364 | ... Validate Authentication After Reassociate |
| 365 | ... True ${src['dp_iface_name']} ${src['ip']} ${src['user']} ${src['pass']} |
| 366 | ... ${src['container_type']} ${src['container_name']} |
| 367 | Wait Until Keyword Succeeds ${timeout} 2s |
David K. Bainbridge | c0617c9 | 2020-03-05 21:17:19 -0800 | [diff] [blame] | 368 | ... Verify ONU in AAA-Users ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
Gayathri.Selvan | 283a63c | 2020-01-23 04:09:18 +0000 | [diff] [blame] | 369 | Wait Until Keyword Succeeds ${timeout} 2s |
David K. Bainbridge | c0617c9 | 2020-03-05 21:17:19 -0800 | [diff] [blame] | 370 | ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
Gayathri.Selvan | 283a63c | 2020-01-23 04:09:18 +0000 | [diff] [blame] | 371 | ... volt-add-subscriber-access ${of_id} ${onu_port} |
| 372 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 373 | ... Validate DHCP and Ping True True |
| 374 | ... ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 375 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 376 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 377 | ... ${dst['container_name']} |
| 378 | Wait Until Keyword Succeeds ${timeout} 2s Run Keyword And Continue On Failure |
David K. Bainbridge | c0617c9 | 2020-03-05 21:17:19 -0800 | [diff] [blame] | 379 | ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
Gayathri.Selvan | 283a63c | 2020-01-23 04:09:18 +0000 | [diff] [blame] | 380 | Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id} |
| 381 | Run Keyword and Ignore Error Collect Logs |
| 382 | END |
Gayathri.Selvan | b6a2b54 | 2020-01-24 07:24:23 +0000 | [diff] [blame] | 383 | |
| 384 | Collect Logs |
| 385 | [Documentation] Collect Logs from voltha and onos cli for various commands |
| 386 | Run Keyword and Ignore Error Get Device List from Voltha |
| 387 | Run Keyword and Ignore Error Get Device Output from Voltha ${olt_device_id} |
| 388 | Run Keyword and Ignore Error Get Logical Device Output from Voltha ${logical_id} |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 389 | Get ONOS Status ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
Gayathri.Selvan | f68ea4b | 2020-02-03 07:36:39 +0000 | [diff] [blame] | 390 | |
| 391 | Verify ping is succesful except for given device |
| 392 | [Arguments] ${num_onus} ${exceptional_onu_id} |
| 393 | [Documentation] Checks that ping for all the devices are successful except the given ONU. |
| 394 | ${pingStatus} Set Variable True |
| 395 | FOR ${I} IN RANGE 0 ${num_onus} |
| 396 | ${src}= Set Variable ${hosts.src[${I}]} |
| 397 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 398 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 399 | ${pingStatus} Run Keyword If '${onu_device_id}' == '${exceptional_onu_id}' Set Variable False |
| 400 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 60s 2s |
| 401 | ... Check Ping ${pingStatus} ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 402 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 403 | END |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 404 | |
Andy Bavier | 1923ecc | 2020-06-18 14:06:40 -0700 | [diff] [blame] | 405 | Echo Message to OLT Logs |
| 406 | [Arguments] ${message} |
| 407 | [Documentation] Echoes ${message} into the OLT logs |
Andy Bavier | 6f61361 | 2020-06-19 15:08:30 -0700 | [diff] [blame^] | 408 | Wait Until Keyword Succeeds 60s 2s Execute Remote Command |
| 409 | ... printf '%s\n' '' '' '${message}' '' >> /var/log/openolt.log |
Andy Bavier | 1923ecc | 2020-06-18 14:06:40 -0700 | [diff] [blame] | 410 | ... ${olt_ip} ${olt_user} ${olt_pass} |
Andy Bavier | 6f61361 | 2020-06-19 15:08:30 -0700 | [diff] [blame^] | 411 | Wait Until Keyword Succeeds 60s 2s Execute Remote Command |
| 412 | ... printf '%s\n' '' '' '${message}' '' >> /var/log/dev_mgmt_daemon.log |
Andy Bavier | 1923ecc | 2020-06-18 14:06:40 -0700 | [diff] [blame] | 413 | ... ${olt_ip} ${olt_user} ${olt_pass} |
| 414 | |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 415 | Start Logging |
| 416 | [Arguments] ${label} |
| 417 | [Documentation] Start logging for test ${label} |
| 418 | ${kail_process}= Run Keyword If "${container_log_dir}" != "${None}" Start Process kail -n default |
| 419 | ... -n voltha cwd=${container_log_dir} stdout=${label}-combined.log |
| 420 | Set Test Variable ${kail_process} |
Andy Bavier | 1923ecc | 2020-06-18 14:06:40 -0700 | [diff] [blame] | 421 | Run Keyword If ${has_dataplane} Echo Message to OLT Logs START ${label} |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 422 | |
| 423 | Stop Logging |
| 424 | [Arguments] ${label} |
| 425 | [Documentation] End logging for test; remove logfile if test passed |
| 426 | Run sync |
| 427 | Run Keyword If ${kail_process} Terminate Process ${kail_process} |
| 428 | ${test_logfile}= Run Keyword If "${container_log_dir}" != "${None}" |
| 429 | ... Join Path ${container_log_dir} ${label}-combined.log |
| 430 | Run Keyword If Test Passed Run Keyword If "${test_logfile}" != "${None}" Remove File ${test_logfile} |
Andy Bavier | 1923ecc | 2020-06-18 14:06:40 -0700 | [diff] [blame] | 431 | Run Keyword If ${has_dataplane} Echo Message to OLT Logs END ${label} |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 432 | |
Suchitra Vemuri | a5fa3dd | 2020-02-04 14:38:49 -0800 | [diff] [blame] | 433 | Clean Up Linux |
| 434 | [Documentation] Kill processes and clean up interfaces on src+dst servers |
| 435 | FOR ${I} IN RANGE 0 ${num_onus} |
| 436 | ${src}= Set Variable ${hosts.src[${I}]} |
| 437 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 438 | Run Keyword And Ignore Error Kill Linux Process [w]pa_supplicant ${src['ip']} |
| 439 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 440 | Run Keyword And Ignore Error Kill Linux Process [d]hclient ${src['ip']} |
| 441 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 442 | Run Keyword If '${dst['ip']}' != '${None}' Run Keyword And Ignore Error |
| 443 | ... Kill Linux Process [d]hcpd ${dst['ip']} ${dst['user']} |
| 444 | ... ${dst['pass']} ${dst['container_type']} ${dst['container_name']} |
| 445 | Delete IP Addresses from Interface on Remote Host ${src['dp_iface_name']} ${src['ip']} |
| 446 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 447 | Run Keyword If '${dst['ip']}' != '${None}' Delete Interface on Remote Host |
| 448 | ... ${dst['dp_iface_name']}.${src['s_tag']} ${dst['ip']} ${dst['user']} ${dst['pass']} |
| 449 | ... ${dst['container_type']} ${dst['container_name']} |
| 450 | END |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 451 | |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 452 | Clean WPA Process |
| 453 | [Documentation] Kills wpa_supplicant processes only for all RGs |
| 454 | FOR ${I} IN RANGE 0 ${num_onus} |
| 455 | ${src}= Set Variable ${hosts.src[${I}]} |
| 456 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 457 | Run Keyword And Ignore Error Kill Linux Process [w]pa_supplicant ${src['ip']} |
| 458 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 459 | END |
| 460 | |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 461 | Should Be Larger Than |
| 462 | [Documentation] Verify that value_1 is > value_2 |
| 463 | [Arguments] ${value_1} ${value_2} |
| 464 | Run Keyword If ${value_1} <= ${value_2} |
| 465 | ... Fail The value ${value_1} is not larger than ${value_2} |
| 466 | |
Scott Baker | ee67555 | 2020-02-11 10:43:34 -0800 | [diff] [blame] | 467 | Should Be Larger Than Or Equal To |
| 468 | [Documentation] Verify that value_1 is >= value_2 |
| 469 | [Arguments] ${value_1} ${value_2} |
| 470 | Run Keyword If ${value_1} < ${value_2} |
| 471 | ... Fail The value ${value_1} is not larger than or equal to ${value_2} |
| 472 | |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 473 | Should Be Float |
| 474 | [Documentation] Verify that value is a floating point number type |
| 475 | [Arguments] ${value} |
| 476 | ${type} Evaluate type(${value}).__name__ |
| 477 | Should Be Equal ${type} float |
| 478 | |
Scott Baker | ee67555 | 2020-02-11 10:43:34 -0800 | [diff] [blame] | 479 | Should Be Newer Than Or Equal To |
| 480 | [Documentation] Compare two RFC3339 dates |
| 481 | [Arguments] ${value_1} ${value_2} |
| 482 | ${unix_v1} Parse RFC3339 ${value_1} |
| 483 | ${unix_v2} Parse RFC3339 ${value_2} |
| 484 | Run Keyword If ${unix_v1} < ${unix_v2} |
| 485 | ... Fail The value ${value_1} is not newer than or equal to ${value_2} |
| 486 | |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 487 | Get Current Time |
| 488 | [Documentation] Return the current time in RFC3339 format |
| 489 | ${output}= Run date -u +"%FT%T%:z" |
| 490 | [return] ${output} |
Scott Baker | ee67555 | 2020-02-11 10:43:34 -0800 | [diff] [blame] | 491 | |
| 492 | Parse RFC3339 |
| 493 | [Documentation] Parse an RFC3339 timestamp |
| 494 | [Arguments] ${dateStr} |
| 495 | ${rc} ${output}= Run and Return Rc and Output date --date="${dateStr}" "+%s" |
| 496 | Should Be Equal As Numbers ${rc} 0 |
| 497 | [return] ${output} |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 498 | |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 499 | Get Bandwidth Profile Name For Given Subscriber |
| 500 | [Arguments] ${subscriber_id} ${stream_type}=upstreamBandwidthProfile |
| 501 | [Documentation] Keyword to get the bandwidth details of the given subscriber |
| 502 | ${bandwidth_profile_output}= Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
| 503 | ... volt-programmed-subscribers | grep ${subscriber_id} |
| 504 | @{bandwidth_profile_array}= Split String ${bandwidth_profile_output} , |
| 505 | Log ${bandwidth_profile_array} |
| 506 | FOR ${value} IN @{bandwidth_profile_array} |
| 507 | @{row_value}= Split String ${value} = |
| 508 | ${bandwidth_profile_name}= Set Variable If '${row_value[0]}' == ' ${stream_type}' |
| 509 | ... ${row_value[1]} |
| 510 | ${bandwidth_profile_name}= Convert To String ${bandwidth_profile_name} |
| 511 | Run Keyword If "${bandwidth_profile_name}" != "None" Exit For Loop |
| 512 | END |
| 513 | Log ${bandwidth_profile_name} |
| 514 | [Return] ${bandwidth_profile_name} |
| 515 | |
| 516 | Execute Remote Command |
| 517 | [Documentation] SSH into a remote host and execute a command on the bare host or in a container. |
| 518 | ... This replaces and simplifies the Login And Run Command On Remote System keyword in CORDRobot. |
| 519 | [Arguments] ${cmd} ${ip} ${user} ${pass}=${None} |
| 520 | ... ${container_type}=${None} ${container_name}=${None} |
| 521 | ${conn_id}= SSHLibrary.Open Connection ${ip} |
| 522 | Run Keyword If '${pass}' != '${None}' |
| 523 | ... SSHLibrary.Login ${user} ${pass} |
| 524 | ... ELSE |
| 525 | ... SSHLibrary.Login With Public Key ${user} %{HOME}/.ssh/id_rsa |
| 526 | ${namespace}= Run Keyword If '${container_type}' == 'K8S' SSHLibrary.Execute Command |
| 527 | ... kubectl get pods --all-namespaces | grep ${container_name} | awk '{print $1}' |
Andy Bavier | f6ab19c | 2020-05-14 10:34:47 -0700 | [diff] [blame] | 528 | ${stdout} ${stderr} ${rc}= Run Keyword If '${container_type}' == 'LXC' |
| 529 | ... SSHLibrary.Execute Command lxc exec ${container_name} -- ${cmd} |
| 530 | ... return_stderr=True return_rc=True |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 531 | ... ELSE IF '${container_type}' == 'K8S' |
Andy Bavier | f6ab19c | 2020-05-14 10:34:47 -0700 | [diff] [blame] | 532 | ... SSHLibrary.Execute Command kubectl -n ${namespace} exec ${container_name} -- ${cmd} |
| 533 | ... return_stderr=True return_rc=True |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 534 | ... ELSE |
Andy Bavier | f6ab19c | 2020-05-14 10:34:47 -0700 | [diff] [blame] | 535 | ... SSHLibrary.Execute Command ${cmd} return_stderr=True return_rc=True |
| 536 | |
| 537 | Log ${stdout} |
| 538 | Log ${stderr} |
| 539 | Log ${rc} |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 540 | SSHLibrary.Close Connection |
Andy Bavier | f6ab19c | 2020-05-14 10:34:47 -0700 | [diff] [blame] | 541 | [Return] ${stdout} ${stderr} ${rc} |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 542 | |
| 543 | Run Iperf3 Test Client |
| 544 | [Arguments] ${src} ${server} ${args} |
| 545 | [Documentation] Login to ${src} and run the iperf3 client against ${server} using ${args}. |
| 546 | ... Return a Dictionary containing the results of the test. |
Andy Bavier | f6ab19c | 2020-05-14 10:34:47 -0700 | [diff] [blame] | 547 | ${output} ${stderr} ${rc}= Execute Remote Command iperf3 -J -c ${server} ${args} | jq -M -c '.' |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 548 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
Andy Bavier | f6ab19c | 2020-05-14 10:34:47 -0700 | [diff] [blame] | 549 | Should Be Equal As Integers ${rc} 0 |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 550 | ${object}= Evaluate json.loads(r'''${output}''') json |
| 551 | [Return] ${object} |
Hung-Wei Chiu | e0bec7c | 2020-05-29 22:16:56 +0000 | [diff] [blame] | 552 | |
| 553 | |
| 554 | RestoreONUs |
| 555 | [Documentation] Restore all connected ONUs |
| 556 | [Arguments] ${num_onus} |
| 557 | FOR ${I} IN RANGE 0 ${num_onus} |
| 558 | ${src}= Set Variable ${hosts.src[${I}]} |
Hung-Wei Chiu | cc6e655 | 2020-06-04 12:57:38 -0700 | [diff] [blame] | 559 | ${container_type}= Get Variable Value ${src['container_type']} "null" |
| 560 | ${container_name}= Get Variable Value ${src['container_name']} "null" |
Hung-Wei Chiu | e0bec7c | 2020-05-29 22:16:56 +0000 | [diff] [blame] | 561 | ${onu_type}= Get Variable Value ${src['onu_type']} "null" |
Hung-Wei Chiu | cc6e655 | 2020-06-04 12:57:38 -0700 | [diff] [blame] | 562 | #Get ens6f0 from ens6f0.22 |
| 563 | ${if_name}= Replace String Using Regexp ${src['dp_iface_name']} \\..* \ |
Hung-Wei Chiu | e0bec7c | 2020-05-29 22:16:56 +0000 | [diff] [blame] | 564 | Run Keyword IF '${onu_type}' == 'alpha' AlphaONURestoreDefault ${src['ip']} ${src['user']} |
Hung-Wei Chiu | cc6e655 | 2020-06-04 12:57:38 -0700 | [diff] [blame] | 565 | ... ${src['pass']} ${if_name} admin admin ${container_type} ${container_name} |
Hung-Wei Chiu | e0bec7c | 2020-05-29 22:16:56 +0000 | [diff] [blame] | 566 | END |
| 567 | |
| 568 | AlphaONURestoreDefault |
| 569 | [Documentation] Restore the Alpha ONU to factory setting |
| 570 | [Arguments] ${rg_ip} ${rg_user} ${rg_pass} ${onu_ifname} |
Hung-Wei Chiu | cc6e655 | 2020-06-04 12:57:38 -0700 | [diff] [blame] | 571 | ... ${onu_user} ${onu_pass} ${container_type}=${None} ${container_name}=${None} |
Hung-Wei Chiu | e0bec7c | 2020-05-29 22:16:56 +0000 | [diff] [blame] | 572 | ${output}= Login And Run Command On Remote System sudo ifconfig ${onu_ifname} 192.168.1.3/24 |
Hung-Wei Chiu | cc6e655 | 2020-06-04 12:57:38 -0700 | [diff] [blame] | 573 | ... ${rg_ip} ${rg_user} ${rg_pass} ${container_type} ${container_name} |
Hung-Wei Chiu | e0bec7c | 2020-05-29 22:16:56 +0000 | [diff] [blame] | 574 | ${cmd} Catenate |
| 575 | ... (echo open "192.168.1.1"; sleep 1; |
| 576 | ... echo "${onu_user}"; sleep 1; |
| 577 | ... echo "${onu_pass}"; sleep 1; |
| 578 | ... echo "restoredefault"; sleep 1) | telnet |
| 579 | ${output}= Login And Run Command On Remote System ${cmd} |
Hung-Wei Chiu | cc6e655 | 2020-06-04 12:57:38 -0700 | [diff] [blame] | 580 | ... ${rg_ip} ${rg_user} ${rg_pass} ${container_type} ${container_name} |
Hung-Wei Chiu | e0bec7c | 2020-05-29 22:16:56 +0000 | [diff] [blame] | 581 | Log To Console ${output} |
| 582 | ${output}= Login And Run Command On Remote System sudo ifconfig ${onu_ifname} 0 |
Hung-Wei Chiu | cc6e655 | 2020-06-04 12:57:38 -0700 | [diff] [blame] | 583 | ... ${rg_ip} ${rg_user} ${rg_pass} ${container_type} ${container_name} |