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") |
Suchitra Vemuri | b7253a5 | 2020-07-14 22:35:17 -0700 | [diff] [blame] | 65 | ${olt_ssh_ip}= Evaluate ${olts}[0].get("sship") |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 66 | ${olt_user}= Evaluate ${olts}[0].get("user") |
| 67 | ${olt_pass}= Evaluate ${olts}[0].get("pass") |
| 68 | ${olt_serial_number}= Evaluate ${olts}[0].get("serial") |
| 69 | ${num_onus}= Get Length ${hosts.src} |
| 70 | ${num_onus}= Convert to String ${num_onus} |
| 71 | #send sadis file to onos |
Andy Bavier | a269175 | 2019-11-27 12:18:38 -0700 | [diff] [blame] | 72 | ${sadis_file}= Get Variable Value ${sadis.file} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 73 | Log To Console \nSadis File:${sadis_file} |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 74 | Run Keyword Unless '${sadis_file}' is '${None}' Send File To Onos ${sadis_file} apps/ |
| 75 | Set Suite Variable ${num_onus} |
| 76 | Set Suite Variable ${olt_serial_number} |
| 77 | Set Suite Variable ${olt_ip} |
Suchitra Vemuri | b7253a5 | 2020-07-14 22:35:17 -0700 | [diff] [blame] | 78 | Set Suite Variable ${olt_ssh_ip} |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 79 | Set Suite Variable ${olt_user} |
| 80 | Set Suite Variable ${olt_pass} |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 81 | @{container_list}= Create List adapter-open-olt adapter-open-onu voltha-api-server |
| 82 | ... voltha-ro-core voltha-rw-core-11 voltha-rw-core-12 voltha-ofagent |
| 83 | Set Suite Variable ${container_list} |
| 84 | ${datetime}= Get Current Date |
suraj gour | 7f6d5fe | 2019-11-29 10:56:35 +0000 | [diff] [blame] | 85 | Set Suite Variable ${datetime} |
| 86 | |
| 87 | WPA Reassociate |
suraj gour | 7f6d5fe | 2019-11-29 10:56:35 +0000 | [diff] [blame] | 88 | [Documentation] Executes a particular wpa_cli reassociate, which performs force reassociation |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 89 | [Arguments] ${iface} ${ip} ${user} ${pass}=${None} |
| 90 | ... ${container_type}=${None} ${container_name}=${None} |
suraj gour | 7f6d5fe | 2019-11-29 10:56:35 +0000 | [diff] [blame] | 91 | #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] | 92 | FOR ${i} IN RANGE 70 |
| 93 | ${output}= Login And Run Command On Remote System |
| 94 | ... wpa_cli -i ${iface} reassociate ${ip} ${user} |
| 95 | ... ${pass} ${container_type} ${container_name} |
| 96 | ${passed}= Run Keyword And Return Status Should Contain ${output} OK |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 97 | Exit For Loop If ${passed} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 98 | END |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 99 | Should Be True ${passed} Status does not contain 'SUCCESS' |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 100 | FOR ${i} IN RANGE 70 |
| 101 | ${output}= Login And Run Command On Remote System |
Andy Bavier | ae4a17e | 2020-02-25 14:54:36 -0700 | [diff] [blame] | 102 | ... wpa_cli -i ${iface} status | grep SUCCESS ${ip} ${user} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 103 | ... ${pass} ${container_type} ${container_name} |
| 104 | ${passed}= Run Keyword And Return Status Should Contain ${output} SUCCESS |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 105 | Exit For Loop If ${passed} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 106 | END |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 107 | Should Be True ${passed} Status does not contain 'SUCCESS' |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 108 | |
suraj gour | 7f6d5fe | 2019-11-29 10:56:35 +0000 | [diff] [blame] | 109 | Validate Authentication After Reassociate |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 110 | [Arguments] ${auth_pass} ${iface} ${ip} ${user} ${pass}=${None} |
| 111 | ... ${container_type}=${None} ${container_name}=${None} |
| 112 | [Documentation] |
| 113 | ... Executes a particular reassociate request on the RG using wpa_cli. |
| 114 | ... auth_pass determines if authentication should pass |
Andy Bavier | 84834d4 | 2020-02-25 13:49:50 -0700 | [diff] [blame] | 115 | ${wpa_log}= Catenate SEPARATOR=. /tmp/wpa ${iface} log |
| 116 | ${output}= Login And Run Command On Remote System truncate -s 0 ${wpa_log}; cat ${wpa_log} |
| 117 | ... ${ip} ${user} ${pass} ${container_type} ${container_name} |
| 118 | Log ${output} |
| 119 | Should Not Contain ${output} authentication completed successfully |
suraj gour | 7f6d5fe | 2019-11-29 10:56:35 +0000 | [diff] [blame] | 120 | WPA Reassociate ${iface} ${ip} ${user} ${pass} ${container_type} ${container_name} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 121 | Run Keyword If '${auth_pass}' == 'True' Wait Until Keyword Succeeds ${timeout} 2s |
Andy Bavier | 84834d4 | 2020-02-25 13:49:50 -0700 | [diff] [blame] | 122 | ... Check Remote File Contents True ${wpa_log} ${iface}.*authentication completed successfully |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 123 | ... ${ip} ${user} ${pass} ${container_type} ${container_name} |
suraj gour | 7f6d5fe | 2019-11-29 10:56:35 +0000 | [diff] [blame] | 124 | Run Keyword If '${auth_pass}' == 'False' Sleep 20s |
Suchitra Vemuri | 3cb29f8 | 2020-02-25 13:59:58 -0800 | [diff] [blame] | 125 | 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] | 126 | ... ${iface}.*authentication completed successfully ${ip} ${user} ${pass} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 127 | ... ${container_type} ${container_name} |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 128 | |
| 129 | Send Dhclient Request To Release Assigned IP |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 130 | [Arguments] ${iface} ${ip} ${user} ${path_dhcpleasefile} ${pass}=${None} |
| 131 | ... ${container_type}=${None} ${container_name}=${None} |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 132 | [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] | 133 | ${result}= Login And Run Command On Remote System |
| 134 | ... dhclient -nw -r ${iface} && rm ${path_dhcpleasefile}/dhclient.* ${ip} ${user} |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 135 | ... ${pass} ${container_type} ${container_name} |
| 136 | Log ${result} |
| 137 | #Should Contain ${result} DHCPRELEASE |
| 138 | [Return] ${result} |
suraj gour | 1ecfae9 | 2019-12-20 15:11:40 +0000 | [diff] [blame] | 139 | |
| 140 | Check Remote File Contents For WPA Logs |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 141 | [Arguments] ${file_should_exist} ${file} ${pattern} ${ip} ${user} ${pass}=${None} |
| 142 | ... ${container_type}=${None} ${container_name}=${None} ${prompt}=~$ |
suraj gour | 1ecfae9 | 2019-12-20 15:11:40 +0000 | [diff] [blame] | 143 | [Documentation] Checks for particular pattern count in a file |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 144 | ${result}= Login And Run Command On Remote System |
| 145 | ... cat ${file} | grep '${pattern}' | wc -l ${ip} ${user} ${pass} |
suraj gour | 1ecfae9 | 2019-12-20 15:11:40 +0000 | [diff] [blame] | 146 | ... ${container_type} ${container_name} ${prompt} |
| 147 | [Return] ${result} |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 148 | |
| 149 | Perform Sanity Test |
| 150 | [Documentation] This keyword performs Sanity Test Procedure |
| 151 | ... Sanity test performs authentication, dhcp and pings for all the ONUs given for the POD |
| 152 | ... This keyword can be used to call in any other tests where sanity check is required |
| 153 | ... and avoids duplication of code. |
| 154 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number} |
| 155 | Set Global Variable ${of_id} |
Hardik Windlass | 2180763 | 2020-04-14 16:24:55 +0530 | [diff] [blame] | 156 | ${nni_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 157 | ... Get NNI Port in ONOS ${of_id} |
| 158 | Set Global Variable ${nni_port} |
Hardik Windlass | 2a9b159 | 2020-07-23 18:28:13 +0530 | [diff] [blame] | 159 | # Verify Default Meter in ONOS (valid only for ATT) |
| 160 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 161 | ... Verify Default Meter Present in ONOS ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 162 | FOR ${I} IN RANGE 0 ${num_onus} |
| 163 | ${src}= Set Variable ${hosts.src[${I}]} |
| 164 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Suchitra Vemuri | 0300591 | 2020-02-20 18:59:46 -0800 | [diff] [blame] | 165 | Run Keyword and Ignore Error Collect Logs |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 166 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 167 | ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 168 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
Suchitra Vemuri | 8078b97 | 2020-02-06 19:07:41 -0800 | [diff] [blame] | 169 | # Check ONU port is Enabled in ONOS |
| 170 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s |
Suchitra Vemuri | 760bdd3 | 2020-06-17 12:34:48 -0700 | [diff] [blame] | 171 | ... 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] | 172 | # Verify EAPOL flows are added for the ONU port |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 173 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 174 | ... 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] | 175 | # Verify ONU state in voltha |
| 176 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device |
| 177 | ... ENABLED ACTIVE REACHABLE |
| 178 | ... ${src['onu']} onu=True onu_reason=omci-flows-pushed |
| 179 | # Perform Authentication |
Andy Bavier | 84834d4 | 2020-02-25 13:49:50 -0700 | [diff] [blame] | 180 | ${wpa_log}= Run Keyword If ${has_dataplane} Catenate SEPARATOR=. |
| 181 | ... /tmp/wpa ${src['dp_iface_name']} log |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 182 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True |
| 183 | ... ${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] | 184 | ... ${src['container_type']} ${src['container_name']} ${wpa_log} |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 185 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2 |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 186 | ... 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] | 187 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2 |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 188 | ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 189 | ... volt-add-subscriber-access ${of_id} ${onu_port} |
Suchitra Vemuri | 9da4430 | 2020-03-04 14:24:49 -0800 | [diff] [blame] | 190 | # Verify that no pending flows exist for the ONU port |
| 191 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 192 | ... 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] | 193 | # Verify subscriber access flows are added for the ONU port |
| 194 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 195 | ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 196 | ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']} |
Hardik Windlass | 2a9b159 | 2020-07-23 18:28:13 +0530 | [diff] [blame] | 197 | # Verify Meters in ONOS |
| 198 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 199 | ... Verify Meters in ONOS ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} ${onu_port} |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 200 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True |
| 201 | ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 202 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 203 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 204 | ... ${dst['container_name']} |
| 205 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 206 | ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 207 | Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id} |
| 208 | Run Keyword and Ignore Error Collect Logs |
| 209 | END |
| 210 | |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 211 | Perform Sanity Test DT |
| 212 | [Documentation] This keyword performs Sanity Test Procedure for DT Workflow |
| 213 | ... Sanity test performs dhcp and pings (without EAPOL and DHCP flows) for all the ONUs given for the POD |
| 214 | ... This keyword can be used to call in any other tests where sanity check is required |
| 215 | ... and avoids duplication of code. |
Suchitra Vemuri | b598aba | 2020-09-17 21:08:14 -0700 | [diff] [blame] | 216 | ${of_id}= Wait Until Keyword Succeeds 360s 15s Validate OLT Device in ONOS ${olt_serial_number} |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 217 | Set Global Variable ${of_id} |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 218 | ${nni_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 219 | ... Get NNI Port in ONOS ${of_id} |
| 220 | Set Global Variable ${nni_port} |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 221 | FOR ${I} IN RANGE 0 ${num_onus} |
| 222 | ${src}= Set Variable ${hosts.src[${I}]} |
| 223 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 224 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 225 | ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 226 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
| 227 | # Check ONU port is Enabled in ONOS |
| 228 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s |
Suchitra Vemuri | 760bdd3 | 2020-06-17 12:34:48 -0700 | [diff] [blame] | 229 | ... 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] | 230 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2 |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 231 | ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 232 | ... volt-add-subscriber-access ${of_id} ${onu_port} |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 233 | # Verify subscriber access flows are added for the ONU port |
| 234 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
Hardik Windlass | 25e1170 | 2020-03-30 20:05:19 +0530 | [diff] [blame] | 235 | ... Verify Subscriber Access Flows Added For ONU DT ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 236 | ... ${onu_port} ${nni_port} ${src['s_tag']} |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 237 | # Verify ONU state in voltha |
| 238 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device |
| 239 | ... ENABLED ACTIVE REACHABLE |
| 240 | ... ${src['onu']} onu=True onu_reason=omci-flows-pushed |
Hardik Windlass | 2a9b159 | 2020-07-23 18:28:13 +0530 | [diff] [blame] | 241 | # Verify Meters in ONOS |
| 242 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 243 | ... Verify Meters in ONOS ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} ${onu_port} |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 244 | # TODO: Yet to Verify on the GPON based Physical POD (VOL-2652) |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 245 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True |
| 246 | ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 247 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 248 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 249 | ... ${dst['container_name']} |
| 250 | Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id} |
| 251 | Run Keyword and Ignore Error Collect Logs |
| 252 | END |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 253 | # Verify ONOS Flows |
| 254 | # Number of Access Flows on ONOS equals 4 * the Number of Active ONUs (2 for each downstream and upstream) |
| 255 | ${onos_flows_count}= Evaluate 4 * ${num_onus} |
| 256 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
Hardik Windlass | 25e1170 | 2020-03-30 20:05:19 +0530 | [diff] [blame] | 257 | ... Verify Subscriber Access Flows Added Count DT ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 258 | ... ${onos_flows_count} |
Hardik Windlass | fb5eace | 2020-03-26 14:49:01 +0530 | [diff] [blame] | 259 | # Verify VOLTHA Flows |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 260 | # Number of per OLT Flows equals Twice the Number of Active ONUs (each for downstream and upstream) + 1 for LLDP |
| 261 | ${olt_flows}= Evaluate 2 * ${num_onus} + 1 |
| 262 | # Number of per ONU Flows equals 2 (one each for downstream and upstream) |
| 263 | ${onu_flows}= Set Variable 2 |
| 264 | Run Keyword Wait Until Keyword Succeeds ${timeout} 5s Validate OLT Flows ${olt_flows} |
| 265 | ${List_ONU_Serial} Create List |
| 266 | Set Suite Variable ${List_ONU_Serial} |
| 267 | Build ONU SN List ${List_ONU_Serial} |
| 268 | Log ${List_ONU_Serial} |
| 269 | Run Keyword Wait Until Keyword Succeeds ${timeout} 5s Validate ONU Flows |
| 270 | ... ${List_ONU_Serial} ${onu_flows} |
| 271 | |
Suchitra Vemuri | 2f1e07d | 2020-06-26 19:18:01 -0700 | [diff] [blame] | 272 | Perform Sanity Test TT |
| 273 | [Documentation] This keyword performs Sanity Test Procedure for TT Workflow |
| 274 | ... Sanity test performs dhcp and pings (without EAPOL and DHCP flows) for all the ONUs given for the POD |
| 275 | ... This keyword can be used to call in any other tests where sanity check is required |
| 276 | ... and avoids duplication of code. |
Suchitra Vemuri | 85cb7d6 | 2020-07-16 23:46:16 -0700 | [diff] [blame] | 277 | FOR ${I} IN RANGE 0 ${num_onus} |
| 278 | ${src}= Set Variable ${hosts.src[${I}]} |
| 279 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 280 | ${service_type}= Get Variable Value ${src['service_type']} "null" |
| 281 | Run Keyword IF '${service_type}' != 'mcast' Sanity Test TT one ONU ${src} ${dst} |
| 282 | Run Keyword and Ignore Error Collect Logs |
| 283 | END |
| 284 | Run Keyword and Ignore Error Collect Logs |
| 285 | |
| 286 | Sanity Test TT one ONU |
| 287 | [Documentation] This keyword performs sanity test for a single ONU for TT workflow |
| 288 | ... Tests for one ONU |
| 289 | ... Assertions apply to HSIA, VoD, VoIP services |
| 290 | [Arguments] ${src} ${dst} |
Suchitra Vemuri | 2f1e07d | 2020-06-26 19:18:01 -0700 | [diff] [blame] | 291 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number} |
| 292 | Set Global Variable ${of_id} |
| 293 | ${nni_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 294 | ... Get NNI Port in ONOS ${of_id} |
| 295 | Set Global Variable ${nni_port} |
Suchitra Vemuri | 85cb7d6 | 2020-07-16 23:46:16 -0700 | [diff] [blame] | 296 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 297 | ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 298 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
| 299 | # Check ONU port is Enabled in ONOS |
| 300 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s |
| 301 | ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']} |
| 302 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2 |
| 303 | ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
| 304 | ... volt-add-subscriber-access ${of_id} ${onu_port} |
| 305 | Sleep 30s |
| 306 | # Verify ONU state in voltha |
| 307 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device |
| 308 | ... ENABLED ACTIVE REACHABLE |
| 309 | ... ${src['onu']} onu=True onu_reason=omci-flows-pushed |
| 310 | # TODO: Yet to Verify on the GPON based Physical POD (VOL-2652) |
| 311 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True |
| 312 | ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 313 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 314 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 315 | ... ${dst['container_name']} |
Suchitra Vemuri | 16644bd | 2020-10-03 14:06:12 -0700 | [diff] [blame] | 316 | Run Keyword IF ${has_dataplane} |
Suchitra Vemuri | b4d9e8d | 2020-10-05 20:49:21 -0700 | [diff] [blame] | 317 | ... Run Keyword IF '${src['service_type']}'!='hsia' |
Suchitra Vemuri | 4281941 | 2020-10-01 17:45:43 -0700 | [diff] [blame] | 318 | ... Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
Suchitra Vemuri | 8d3b003 | 2020-09-11 17:49:08 -0700 | [diff] [blame] | 319 | ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
Suchitra Vemuri | 4281941 | 2020-10-01 17:45:43 -0700 | [diff] [blame] | 320 | ... ${src['c_tag']} |
Suchitra Vemuri | 85cb7d6 | 2020-07-16 23:46:16 -0700 | [diff] [blame] | 321 | Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id} |
| 322 | Run Keyword and Ignore Error Collect Logs |
| 323 | |
| 324 | Perform Sanity Test TT MCAST |
| 325 | [Documentation] This keyword performs Sanity Test Procedure for TT Workflow |
| 326 | ... Adds subscribers |
| 327 | ... Validates for MCAST |
Suchitra Vemuri | 2f1e07d | 2020-06-26 19:18:01 -0700 | [diff] [blame] | 328 | FOR ${I} IN RANGE 0 ${num_onus} |
| 329 | ${src}= Set Variable ${hosts.src[${I}]} |
| 330 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Suchitra Vemuri | 85cb7d6 | 2020-07-16 23:46:16 -0700 | [diff] [blame] | 331 | ${service_type}= Get Variable Value ${src['service_type']} "null" |
| 332 | Run Keyword IF '${service_type}' == 'mcast' Sanity Test TT MCAST one ONU ${src} |
| 333 | ... ${dst} |
Suchitra Vemuri | 2f1e07d | 2020-06-26 19:18:01 -0700 | [diff] [blame] | 334 | Run Keyword and Ignore Error Collect Logs |
| 335 | END |
Suchitra Vemuri | 85cb7d6 | 2020-07-16 23:46:16 -0700 | [diff] [blame] | 336 | Run Keyword and Ignore Error Collect Logs |
| 337 | |
| 338 | Sanity Test TT MCAST one ONU |
| 339 | [Documentation] This keyword performs sanity test for a single ONU for TT workflow |
| 340 | ... Tests for one ONU |
| 341 | ... Assertions apply to MCAST services |
| 342 | [Arguments] ${src} ${dst} |
| 343 | # Check for iperf and jq tools |
| 344 | ${stdout} ${stderr} ${rc}= Execute Remote Command which iperf jq |
| 345 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} |
| 346 | ... ${src['container_name']} |
| 347 | Pass Execution If ${rc} != 0 Skipping test: iperf / jq not found on the RG |
| 348 | |
| 349 | #Reset the IP on the interface |
| 350 | ${output}= Login And Run Command On Remote System sudo ifconfig ${src['dp_iface_name']} 0 |
| 351 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 352 | # Kill iperf on BNG |
| 353 | ${rg_output}= Run Keyword and Continue On Failure Login And Run Command On Remote System |
| 354 | ... sudo kill -9 `pidof iperf` |
| 355 | ... ${dst['bng_ip']} ${dst['bng_user']} ${dst['bng_pass']} ${dst['container_type']} |
| 356 | ... ${dst['container_name']} |
| 357 | |
| 358 | # Setup RG for Multi-cast test |
| 359 | ${output}= Login And Run Command On Remote System |
| 360 | ... sudo ifconfig ${src['dp_iface_name']} ${src['mcast_rg']} up ; sudo kill -9 `pidof iperf` |
| 361 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 362 | ${output}= Login And Run Command On Remote System |
| 363 | ... sudo ip route add ${src['mcast_grp_subnet_mask']} dev ${src['dp_iface_name']} scope link |
| 364 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 365 | |
| 366 | # Perform operations for adding subscriber |
| 367 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number} |
| 368 | Set Global Variable ${of_id} |
| 369 | ${nni_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 370 | ... Get NNI Port in ONOS ${of_id} |
| 371 | Set Global Variable ${nni_port} |
| 372 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 373 | ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 374 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
| 375 | # Check ONU port is Enabled in ONOS |
| 376 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s |
| 377 | ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']} |
| 378 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2 |
| 379 | ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
| 380 | ... volt-add-subscriber-access ${of_id} ${onu_port} |
| 381 | Sleep 30s |
| 382 | # Verify ONU state in voltha |
| 383 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device |
| 384 | ... ENABLED ACTIVE REACHABLE |
| 385 | ... ${src['onu']} onu=True onu_reason=omci-flows-pushed |
| 386 | |
| 387 | # Setup iperf on the BNG |
| 388 | ${server_output}= Login And Run Command On Remote System |
| 389 | ... sudo iperf -c ${dst['dp_iface_ip_qinq']} -u -T 32 -t 60 -i 1 & |
| 390 | ... ${dst['bng_ip']} ${dst['bng_user']} ${dst['bng_pass']} ${dst['container_type']} |
| 391 | ... ${dst['container_name']} |
| 392 | |
| 393 | # Setup iperf on the RG |
| 394 | ${rg_output}= Run Keyword and Continue On Failure Wait Until Keyword Succeeds 90s 5s |
| 395 | ... Login And Run Command On Remote System |
| 396 | ... rm -rf /tmp/rg_output ; sudo iperf -s -u -B ${dst['dp_iface_ip_qinq']} -i 1 -D >> /tmp/rg_output |
| 397 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 398 | Log ${rg_output} |
| 399 | Sleep 60s |
| 400 | ${output}= Run Keyword and Continue On Failure Wait Until Keyword Succeeds 90s 5s |
| 401 | ... Login And Run Command On Remote System |
| 402 | ... cat /tmp/rg_output | grep KBytes |
| 403 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 404 | Log ${output} |
| 405 | Should Contain ${output} KBytes |
| 406 | |
| 407 | # Kill iperf on BNG |
| 408 | ${rg_output}= Run Keyword and Continue On Failure Login And Run Command On Remote System |
| 409 | ... sudo kill -9 `pidof iperf` |
| 410 | ... ${dst['bng_ip']} ${dst['bng_user']} ${dst['bng_pass']} ${dst['container_type']} |
| 411 | ... ${dst['container_name']} |
| 412 | |
| 413 | # Kill iperf on the RG |
| 414 | ${output}= Run Keyword and Continue On Failure Login And Run Command On Remote System |
| 415 | ... sudo kill -9 `pidof iperf` |
| 416 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 417 | |
Suchitra Vemuri | 2f1e07d | 2020-06-26 19:18:01 -0700 | [diff] [blame] | 418 | |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 419 | Setup |
| 420 | [Documentation] Pre-test Setup |
| 421 | #test for empty device list |
| 422 | Test Empty Device List |
Suchitra Vemuri | 3158f3c | 2020-05-28 17:58:26 -0700 | [diff] [blame] | 423 | #Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds 120s 10s Openolt is Up |
| 424 | #... ${olt_ip} ${olt_user} ${olt_pass} |
Suchitra Vemuri | 1d8e817 | 2020-06-17 17:43:56 -0700 | [diff] [blame] | 425 | Run Keyword If ${has_dataplane} Sleep 230s |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 426 | #create/preprovision device |
| 427 | ${olt_device_id}= Create Device ${olt_ip} ${OLT_PORT} |
| 428 | Set Suite Variable ${olt_device_id} |
| 429 | #validate olt states |
| 430 | Wait Until Keyword Succeeds ${timeout} 5s |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 431 | ... Validate OLT Device PREPROVISIONED UNKNOWN UNKNOWN ${olt_device_id} |
Suchitra Vemuri | a7e8ad2 | 2020-02-11 18:02:40 -0800 | [diff] [blame] | 432 | Sleep 5s |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 433 | Enable Device ${olt_device_id} |
Suchitra Vemuri | cdc32d8 | 2020-07-17 12:24:46 -0700 | [diff] [blame] | 434 | Wait Until Keyword Succeeds 380s 5s |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 435 | ... Validate OLT Device ENABLED ACTIVE REACHABLE ${olt_serial_number} |
| 436 | ${logical_id}= Get Logical Device ID From SN ${olt_serial_number} |
| 437 | Set Suite Variable ${logical_id} |
| 438 | |
Hardik Windlass | aaea340 | 2020-03-10 19:45:45 +0530 | [diff] [blame] | 439 | Validate ONUs After OLT Disable |
| 440 | [Documentation] Validates the ONUs state in Voltha, ONUs port state in ONOS |
| 441 | ... and that pings do not succeed After corresponding OLT is Disabled |
| 442 | FOR ${I} IN RANGE 0 ${num_onus} |
| 443 | ${src}= Set Variable ${hosts.src[${I}]} |
| 444 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 445 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 446 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
| 447 | ... ${of_id} |
| 448 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 449 | ... Validate Device ENABLED DISCOVERED |
| 450 | ... UNREACHABLE ${src['onu']} onu=True onu_reason=stopping-openomci |
| 451 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
Suchitra Vemuri | 760bdd3 | 2020-06-17 12:34:48 -0700 | [diff] [blame] | 452 | ... 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] | 453 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 454 | ... Wait Until Keyword Succeeds 60s 2s |
| 455 | ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 456 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 457 | Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id} |
| 458 | Run Keyword and Ignore Error Collect Logs |
| 459 | END |
| 460 | |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 461 | Delete All Devices and Verify |
| 462 | [Documentation] Remove any devices from VOLTHA and ONOS |
| 463 | # Clear devices from VOLTHA |
| 464 | Disable Devices In Voltha Root=true |
Suchitra Vemuri | 970747f | 2020-03-30 17:31:34 -0700 | [diff] [blame] | 465 | Sleep 5s |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 466 | Wait Until Keyword Succeeds ${timeout} 2s Test Devices Disabled In Voltha Root=true |
| 467 | Delete Devices In Voltha Root=true |
Matteo Scandolo | f6cea38 | 2020-04-20 14:32:00 -0700 | [diff] [blame] | 468 | Run Keyword If ${has_dataplane} Sleep 30s |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 469 | Wait Until Keyword Succeeds ${timeout} 2s Test Empty Device List |
| 470 | # Clear devices from ONOS |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 471 | #Remove All Devices From ONOS |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 472 | #... http://karaf:karaf@${ONOS_REST_IP}:${ONOS_REST_PORT} |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 473 | |
| 474 | Teardown |
| 475 | [Documentation] kills processes and cleans up interfaces on src+dst servers |
| 476 | Run Keyword If ${has_dataplane} Clean Up Linux |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 477 | |
| 478 | Teardown Suite |
| 479 | [Documentation] Clean up device if desired |
| 480 | Run Keyword If ${teardown_device} Delete All Devices and Verify |
| 481 | |
| 482 | Delete Device and Verify |
| 483 | [Documentation] Disable -> Delete devices via voltctl and verify its removed |
Suchitra Vemuri | 2fa9bba | 2020-01-22 17:38:48 -0800 | [diff] [blame] | 484 | ${olt_device_id}= Get Device ID From SN ${olt_serial_number} |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 485 | ${rc} ${output}= Run and Return Rc and Output |
| 486 | ... ${VOLTCTL_CONFIG}; voltctl device disable ${olt_device_id} |
| 487 | Should Be Equal As Integers ${rc} 0 |
| 488 | Sleep 5s |
| 489 | Wait Until Keyword Succeeds ${timeout} 5s |
| 490 | ... Validate OLT Device DISABLED UNKNOWN REACHABLE ${olt_serial_number} |
| 491 | ${rc} ${output}= Run and Return Rc and Output |
| 492 | ... ${VOLTCTL_CONFIG}; voltctl device delete ${olt_device_id} |
Matteo Scandolo | f6cea38 | 2020-04-20 14:32:00 -0700 | [diff] [blame] | 493 | Run Keyword If ${has_dataplane} Sleep 50s |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 494 | Should Be Equal As Integers ${rc} 0 |
| 495 | Wait Until Keyword Succeeds ${timeout} 5s Validate Device Removed ${olt_device_id} |
| 496 | |
Gayathri.Selvan | 283a63c | 2020-01-23 04:09:18 +0000 | [diff] [blame] | 497 | Repeat Sanity Test |
| 498 | [Documentation] This keyword performs Sanity Test Procedure |
| 499 | ... Sanity test performs authentication, dhcp and pings for all the ONUs given for the POD |
| 500 | ... This keyword can be used to call in any other tests where sanity check is required |
| 501 | ... with wpa reassociation |
| 502 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number} |
| 503 | Set Global Variable ${of_id} |
| 504 | FOR ${I} IN RANGE 0 ${num_onus} |
Suchitra Vemuri | 0300591 | 2020-02-20 18:59:46 -0800 | [diff] [blame] | 505 | Run Keyword and Ignore Error Collect Logs |
Gayathri.Selvan | 283a63c | 2020-01-23 04:09:18 +0000 | [diff] [blame] | 506 | ${src}= Set Variable ${hosts.src[${I}]} |
| 507 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Suchitra Vemuri | 8078b97 | 2020-02-06 19:07:41 -0800 | [diff] [blame] | 508 | ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 509 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
| 510 | # Check ONU port is Enabled in ONOD |
| 511 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s |
Suchitra Vemuri | 760bdd3 | 2020-06-17 12:34:48 -0700 | [diff] [blame] | 512 | ... 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] | 513 | # Verify EAPOL flows are added for the ONU port |
| 514 | 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] | 515 | ... 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] | 516 | # Verify ONU state in voltha |
Suchitra Vemuri | d1e27fb | 2020-02-01 16:34:37 -0800 | [diff] [blame] | 517 | 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] | 518 | ... ENABLED ACTIVE REACHABLE |
| 519 | ... ${src['onu']} onu=True onu_reason=omci-flows-pushed |
Suchitra Vemuri | 8078b97 | 2020-02-06 19:07:41 -0800 | [diff] [blame] | 520 | # Perform Authentication |
Gayathri.Selvan | 283a63c | 2020-01-23 04:09:18 +0000 | [diff] [blame] | 521 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 522 | ... Validate Authentication After Reassociate |
| 523 | ... True ${src['dp_iface_name']} ${src['ip']} ${src['user']} ${src['pass']} |
| 524 | ... ${src['container_type']} ${src['container_name']} |
| 525 | Wait Until Keyword Succeeds ${timeout} 2s |
David K. Bainbridge | c0617c9 | 2020-03-05 21:17:19 -0800 | [diff] [blame] | 526 | ... 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] | 527 | Wait Until Keyword Succeeds ${timeout} 2s |
David K. Bainbridge | c0617c9 | 2020-03-05 21:17:19 -0800 | [diff] [blame] | 528 | ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
Gayathri.Selvan | 283a63c | 2020-01-23 04:09:18 +0000 | [diff] [blame] | 529 | ... volt-add-subscriber-access ${of_id} ${onu_port} |
| 530 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 531 | ... Validate DHCP and Ping True True |
| 532 | ... ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 533 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 534 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 535 | ... ${dst['container_name']} |
| 536 | 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] | 537 | ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
Gayathri.Selvan | 283a63c | 2020-01-23 04:09:18 +0000 | [diff] [blame] | 538 | Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id} |
| 539 | Run Keyword and Ignore Error Collect Logs |
| 540 | END |
Gayathri.Selvan | b6a2b54 | 2020-01-24 07:24:23 +0000 | [diff] [blame] | 541 | |
Hardik Windlass | 16cdf96 | 2020-04-29 15:26:50 +0530 | [diff] [blame] | 542 | Validate ONUs for PON OLT Disable |
| 543 | [Arguments] ${olt_peer_list} |
| 544 | [Documentation] This keyword validates that Ping fails for ONUs connected to Disabled OLT PON port |
| 545 | ... And Pings succeed for other Active OLT PON port ONUs |
| 546 | ... Also it removes subscriber for Disabled OLT PON port ONUs to replicate ATT workflow |
| 547 | FOR ${I} IN RANGE 0 ${num_onus} |
| 548 | ${src}= Set Variable ${hosts.src[${I}]} |
| 549 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 550 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 551 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
| 552 | ... ${of_id} |
| 553 | ${matched}= Match ONU in PON OLT Peer List ${olt_peer_list} ${onu_device_id} |
| 554 | Run Keyword If ${matched} |
| 555 | ... Run Keywords |
| 556 | ... Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 557 | ... Validate Device ENABLED DISCOVERED |
| 558 | ... UNREACHABLE ${src['onu']} onu=True onu_reason=stopping-openomci |
| 559 | ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 560 | ... Verify ONU Port Is Disabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']} |
| 561 | ... AND Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 562 | ... Wait Until Keyword Succeeds 60s 2s |
| 563 | ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 564 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} |
| 565 | ... ${src['container_name']} |
| 566 | # Remove Subscriber Access (To replicate ATT workflow) |
| 567 | ... AND Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command ${ONOS_SSH_IP} |
| 568 | ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port} |
| 569 | ... ELSE |
| 570 | ... Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 571 | ... Wait Until Keyword Succeeds 60s 2s |
| 572 | ... Check Ping True ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 573 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} |
| 574 | ... ${src['container_name']} |
| 575 | Run Keyword and Ignore Error Collect Logs |
| 576 | END |
| 577 | |
| 578 | Validate ONUs for PON OLT Enable |
| 579 | [Arguments] ${olt_peer_list} |
| 580 | [Documentation] This keyword validates Ping succeeds for all Enabled/Acitve OLT PON ports |
| 581 | ... Also performs Auth/subscriberAdd/DHCP/Ping for the ONUs on Re-Enabled OLT PON port |
| 582 | FOR ${I} IN RANGE 0 ${num_onus} |
| 583 | ${src}= Set Variable ${hosts.src[${I}]} |
| 584 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 585 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 586 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
| 587 | ... ${of_id} |
| 588 | ${matched}= Match ONU in PON OLT Peer List ${olt_peer_list} ${onu_device_id} |
| 589 | ${wpa_log}= Run Keyword If ${has_dataplane} and ${matched} Catenate SEPARATOR=. |
| 590 | ... /tmp/wpa ${src['dp_iface_name']} log |
| 591 | Run Keyword If ${matched} |
| 592 | ... Run Keywords |
| 593 | # Perform Cleanup |
| 594 | ... Run Keyword If ${has_dataplane} Clean Up Linux ${onu_device_id} |
| 595 | # Verify ONU port status |
| 596 | ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s |
| 597 | ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']} |
| 598 | # Verify EAPOL flows are added for the ONU port |
| 599 | ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 600 | ... Verify Eapol Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
| 601 | # Verify ONU state in voltha |
| 602 | ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 603 | ... Validate Device ENABLED ACTIVE REACHABLE |
| 604 | ... ${src['onu']} onu=True onu_reason=omci-flows-pushed |
| 605 | # Perform Authentication |
| 606 | ... AND Run Keyword If ${has_dataplane} |
| 607 | ... Run Keyword And Continue On Failure Validate Authentication True |
| 608 | ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']} |
| 609 | ... ${src['container_type']} ${src['container_name']} ${wpa_log} |
| 610 | ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2 |
| 611 | ... Verify ONU in AAA-Users ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
| 612 | ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2 |
| 613 | ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
| 614 | ... volt-add-subscriber-access ${of_id} ${onu_port} |
| 615 | # Verify that no pending flows exist for the ONU port |
| 616 | ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 617 | ... Verify No Pending Flows For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
| 618 | # Verify subscriber access flows are added for the ONU port |
| 619 | ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 620 | ... Verify Subscriber Access Flows Added For ONU ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 621 | ... ${onu_port} ${nni_port} ${src['c_tag']} ${src['s_tag']} |
| 622 | ... AND Run Keyword If ${has_dataplane} |
| 623 | ... Run Keyword And Continue On Failure Validate DHCP and Ping True |
| 624 | ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 625 | ... ${src['ip']} ${src['user']} ${src['pass']} |
| 626 | ... ${src['container_type']} ${src['container_name']} |
| 627 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} |
| 628 | ... ${dst['container_type']} ${dst['container_name']} |
| 629 | ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 630 | ... Validate Subscriber DHCP Allocation ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${onu_port} |
| 631 | ... AND Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id} |
| 632 | ... ELSE |
| 633 | ... Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 634 | ... Wait Until Keyword Succeeds 60s 2s |
| 635 | ... Check Ping True ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 636 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} |
| 637 | ... ${src['container_name']} |
| 638 | Run Keyword and Ignore Error Collect Logs |
| 639 | END |
| 640 | |
| 641 | Validate ONUs for PON OLT Disable DT |
| 642 | [Arguments] ${olt_peer_list} |
| 643 | [Documentation] This keyword validates that Ping fails for ONUs connected to Disabled OLT PON port |
| 644 | ... And Pings succeed for other Active OLT PON port ONUs |
| 645 | ... Also it removes subscriber and deletes ONUs for Disabled OLT PON port to replicate DT workflow |
| 646 | FOR ${I} IN RANGE 0 ${num_onus} |
| 647 | ${src}= Set Variable ${hosts.src[${I}]} |
| 648 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 649 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 650 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
| 651 | ... ${of_id} |
| 652 | ${matched}= Match ONU in PON OLT Peer List ${olt_peer_list} ${onu_device_id} |
| 653 | Run Keyword If ${matched} |
| 654 | ... Run Keywords |
| 655 | ... Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 656 | ... Validate Device ENABLED DISCOVERED |
| 657 | ... UNREACHABLE ${src['onu']} onu=True onu_reason=stopping-openomci |
| 658 | ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 659 | ... Verify ONU Port Is Disabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']} |
| 660 | ... AND Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 661 | ... Wait Until Keyword Succeeds 60s 2s |
| 662 | ... Check Ping False ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 663 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} |
| 664 | ... ${src['container_name']} |
| 665 | # Remove Subscriber Access (To replicate DT workflow) |
| 666 | ... AND Wait Until Keyword Succeeds ${timeout} 2s Execute ONOS CLI Command ${ONOS_SSH_IP} |
| 667 | ... ${ONOS_SSH_PORT} volt-remove-subscriber-access ${of_id} ${onu_port} |
| 668 | ... AND Sleep 10s |
| 669 | # Delete ONU Device (To replicate DT workflow) |
| 670 | ... AND Delete Device ${onu_device_id} |
| 671 | ... AND Sleep 5s |
| 672 | ... ELSE |
| 673 | ... Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 674 | ... Wait Until Keyword Succeeds 60s 2s |
| 675 | ... Check Ping True ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 676 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} |
| 677 | ... ${src['container_name']} |
| 678 | Run Keyword and Ignore Error Collect Logs |
| 679 | END |
| 680 | |
| 681 | Validate ONUs for PON OLT Enable DT |
| 682 | [Arguments] ${olt_peer_list} |
| 683 | [Documentation] This keyword validates Ping succeeds for all Enabled/Acitve OLT PON ports |
| 684 | ... Also performs subscriberAdd/DHCP/Ping for the ONUs on Re-Enabled OLT PON port |
| 685 | FOR ${I} IN RANGE 0 ${num_onus} |
| 686 | ${src}= Set Variable ${hosts.src[${I}]} |
| 687 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 688 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 689 | ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} |
| 690 | ... ${of_id} |
| 691 | ${matched}= Match ONU in PON OLT Peer List ${olt_peer_list} ${onu_device_id} |
| 692 | Run Keyword If ${matched} |
| 693 | ... Run Keywords |
| 694 | # Perform Cleanup |
| 695 | ... Run Keyword If ${has_dataplane} Clean Up Linux ${onu_device_id} |
| 696 | # Verify ONU port status |
| 697 | ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s |
| 698 | ... Verify ONU Port Is Enabled ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${src['onu']} |
| 699 | ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2 |
| 700 | ... Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
| 701 | ... volt-add-subscriber-access ${of_id} ${onu_port} |
| 702 | # Verify ONU state in voltha |
| 703 | ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 704 | ... Validate Device ENABLED ACTIVE REACHABLE |
| 705 | ... ${src['onu']} onu=True onu_reason=omci-flows-pushed |
| 706 | # Verify subscriber access flows are added for the ONU port |
| 707 | ... AND Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s |
| 708 | ... Verify Subscriber Access Flows Added For ONU DT ${ONOS_SSH_IP} ${ONOS_SSH_PORT} ${of_id} |
| 709 | ... ${onu_port} ${nni_port} ${src['s_tag']} |
| 710 | ... AND Run Keyword If ${has_dataplane} |
| 711 | ... Run Keyword And Continue On Failure Validate DHCP and Ping True |
| 712 | ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 713 | ... ${src['ip']} ${src['user']} ${src['pass']} |
| 714 | ... ${src['container_type']} ${src['container_name']} |
| 715 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} |
| 716 | ... ${dst['container_type']} ${dst['container_name']} |
| 717 | ... ELSE |
| 718 | ... Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 719 | ... Wait Until Keyword Succeeds 60s 2s |
| 720 | ... Check Ping True ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 721 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} |
| 722 | ... ${src['container_name']} |
| 723 | Run Keyword and Ignore Error Collect Logs |
| 724 | END |
| 725 | |
| 726 | Match ONU in PON OLT Peer List |
| 727 | [Arguments] ${olt_peer_list} ${onu_device_id} |
| 728 | [Documentation] This keyword matches if ONU device is present in OLT PON port peer list |
| 729 | ${matched}= Set Variable False |
| 730 | FOR ${olt_peer} IN @{olt_peer_list} |
| 731 | ${matched}= Set Variable If '${onu_device_id}' == '${olt_peer}' True False |
| 732 | Exit For Loop If ${matched} |
| 733 | END |
| 734 | [Return] ${matched} |
| 735 | |
Gayathri.Selvan | b6a2b54 | 2020-01-24 07:24:23 +0000 | [diff] [blame] | 736 | Collect Logs |
| 737 | [Documentation] Collect Logs from voltha and onos cli for various commands |
| 738 | Run Keyword and Ignore Error Get Device List from Voltha |
| 739 | Run Keyword and Ignore Error Get Device Output from Voltha ${olt_device_id} |
| 740 | Run Keyword and Ignore Error Get Logical Device Output from Voltha ${logical_id} |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 741 | Get ONOS Status ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
Gayathri.Selvan | f68ea4b | 2020-02-03 07:36:39 +0000 | [diff] [blame] | 742 | |
| 743 | Verify ping is succesful except for given device |
| 744 | [Arguments] ${num_onus} ${exceptional_onu_id} |
| 745 | [Documentation] Checks that ping for all the devices are successful except the given ONU. |
| 746 | ${pingStatus} Set Variable True |
| 747 | FOR ${I} IN RANGE 0 ${num_onus} |
| 748 | ${src}= Set Variable ${hosts.src[${I}]} |
| 749 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 750 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 751 | ${pingStatus} Run Keyword If '${onu_device_id}' == '${exceptional_onu_id}' Set Variable False |
| 752 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 60s 2s |
| 753 | ... Check Ping ${pingStatus} ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 754 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 755 | END |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 756 | |
Andy Bavier | 1923ecc | 2020-06-18 14:06:40 -0700 | [diff] [blame] | 757 | Echo Message to OLT Logs |
| 758 | [Arguments] ${message} |
| 759 | [Documentation] Echoes ${message} into the OLT logs |
Andy Bavier | 690ce43 | 2020-06-20 16:31:10 -0700 | [diff] [blame] | 760 | Wait Until Keyword Succeeds 180s 10s Execute Remote Command |
Andy Bavier | 6f61361 | 2020-06-19 15:08:30 -0700 | [diff] [blame] | 761 | ... printf '%s\n' '' '' '${message}' '' >> /var/log/openolt.log |
Suchitra Vemuri | b7253a5 | 2020-07-14 22:35:17 -0700 | [diff] [blame] | 762 | ... ${olt_ssh_ip} ${olt_user} ${olt_pass} |
Andy Bavier | 690ce43 | 2020-06-20 16:31:10 -0700 | [diff] [blame] | 763 | Wait Until Keyword Succeeds 180s 10s Execute Remote Command |
Andy Bavier | 6f61361 | 2020-06-19 15:08:30 -0700 | [diff] [blame] | 764 | ... printf '%s\n' '' '' '${message}' '' >> /var/log/dev_mgmt_daemon.log |
Suchitra Vemuri | b7253a5 | 2020-07-14 22:35:17 -0700 | [diff] [blame] | 765 | ... ${olt_ssh_ip} ${olt_user} ${olt_pass} |
Girish Gowdra | 26711d5 | 2020-07-28 15:57:02 -0700 | [diff] [blame] | 766 | Wait Until Keyword Succeeds 180s 10s Execute Remote Command |
| 767 | ... printf '%s\n' '' '' '${message}' '' >> /var/log/openolt_process_watchdog.log |
| 768 | ... ${olt_ssh_ip} ${olt_user} ${olt_pass} |
Andy Bavier | 1923ecc | 2020-06-18 14:06:40 -0700 | [diff] [blame] | 769 | |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 770 | Start Logging |
| 771 | [Arguments] ${label} |
| 772 | [Documentation] Start logging for test ${label} |
| 773 | ${kail_process}= Run Keyword If "${container_log_dir}" != "${None}" Start Process kail -n default |
| 774 | ... -n voltha cwd=${container_log_dir} stdout=${label}-combined.log |
| 775 | Set Test Variable ${kail_process} |
Andy Bavier | 1923ecc | 2020-06-18 14:06:40 -0700 | [diff] [blame] | 776 | Run Keyword If ${has_dataplane} Echo Message to OLT Logs START ${label} |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 777 | |
| 778 | Stop Logging |
| 779 | [Arguments] ${label} |
| 780 | [Documentation] End logging for test; remove logfile if test passed |
| 781 | Run sync |
| 782 | Run Keyword If ${kail_process} Terminate Process ${kail_process} |
| 783 | ${test_logfile}= Run Keyword If "${container_log_dir}" != "${None}" |
| 784 | ... Join Path ${container_log_dir} ${label}-combined.log |
| 785 | 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] | 786 | Run Keyword If ${has_dataplane} Echo Message to OLT Logs END ${label} |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 787 | |
Suchitra Vemuri | a5fa3dd | 2020-02-04 14:38:49 -0800 | [diff] [blame] | 788 | Clean Up Linux |
| 789 | [Documentation] Kill processes and clean up interfaces on src+dst servers |
Hardik Windlass | 16cdf96 | 2020-04-29 15:26:50 +0530 | [diff] [blame] | 790 | [Arguments] ${onu_id}=${EMPTY} |
Suchitra Vemuri | a5fa3dd | 2020-02-04 14:38:49 -0800 | [diff] [blame] | 791 | FOR ${I} IN RANGE 0 ${num_onus} |
| 792 | ${src}= Set Variable ${hosts.src[${I}]} |
| 793 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Hardik Windlass | 16cdf96 | 2020-04-29 15:26:50 +0530 | [diff] [blame] | 794 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 795 | Continue For Loop If '${onu_id}' != '${EMPTY}' and '${onu_id}' != '${onu_device_id}' |
Andy Bavier | 84b8328 | 2020-06-30 05:47:49 -0700 | [diff] [blame] | 796 | Execute Remote Command sudo pkill wpa_supplicant ${src['ip']} |
Suchitra Vemuri | a5fa3dd | 2020-02-04 14:38:49 -0800 | [diff] [blame] | 797 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
Andy Bavier | 84b8328 | 2020-06-30 05:47:49 -0700 | [diff] [blame] | 798 | Execute Remote Command sudo pkill dhclient ${src['ip']} |
Suchitra Vemuri | a5fa3dd | 2020-02-04 14:38:49 -0800 | [diff] [blame] | 799 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
Andy Bavier | eff938d | 2020-06-29 18:27:49 -0700 | [diff] [blame] | 800 | Execute Remote Command sudo pkill mausezahn ${src['ip']} |
| 801 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 802 | Run Keyword If '${dst['ip']}' != '${None}' Execute Remote Command pkill dhcpd |
| 803 | ... ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} ${dst['container_name']} |
Suchitra Vemuri | a5fa3dd | 2020-02-04 14:38:49 -0800 | [diff] [blame] | 804 | Delete IP Addresses from Interface on Remote Host ${src['dp_iface_name']} ${src['ip']} |
| 805 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 806 | Run Keyword If '${dst['ip']}' != '${None}' Delete Interface on Remote Host |
| 807 | ... ${dst['dp_iface_name']}.${src['s_tag']} ${dst['ip']} ${dst['user']} ${dst['pass']} |
| 808 | ... ${dst['container_type']} ${dst['container_name']} |
Andy Bavier | 84b8328 | 2020-06-30 05:47:49 -0700 | [diff] [blame] | 809 | ${bng_ip}= Get Variable Value ${dst['noroot_ip']} |
| 810 | ${bng_user}= Get Variable Value ${dst['noroot_user']} |
| 811 | ${bng_pass}= Get Variable Value ${dst['noroot_pass']} |
Andy Bavier | f4b7d1d | 2020-06-30 11:14:04 -0700 | [diff] [blame] | 812 | Run Keyword If "${bng_ip}" != "${NONE}" and "${bng_user}" != "${NONE}" and "${bng_pass}" != "${NONE}" |
| 813 | ... Execute Remote Command sudo pkill mausezahn ${bng_ip} ${bng_user} ${bng_pass} |
Andy Bavier | eff938d | 2020-06-29 18:27:49 -0700 | [diff] [blame] | 814 | ... ${dst['container_type']} ${dst['container_name']} |
Suchitra Vemuri | a5fa3dd | 2020-02-04 14:38:49 -0800 | [diff] [blame] | 815 | END |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 816 | |
Suchitra Vemuri | 8d3b003 | 2020-09-11 17:49:08 -0700 | [diff] [blame] | 817 | Clean dhclient |
| 818 | [Documentation] Kills dhclient processes only for all RGs |
| 819 | FOR ${I} IN RANGE 0 ${num_onus} |
| 820 | ${src}= Set Variable ${hosts.src[${I}]} |
| 821 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 822 | Execute Remote Command sudo pkill dhclient ${src['ip']} |
| 823 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 824 | END |
| 825 | |
Suchitra Vemuri | f7a033c | 2020-02-26 17:22:41 -0800 | [diff] [blame] | 826 | Clean WPA Process |
| 827 | [Documentation] Kills wpa_supplicant processes only for all RGs |
| 828 | FOR ${I} IN RANGE 0 ${num_onus} |
| 829 | ${src}= Set Variable ${hosts.src[${I}]} |
| 830 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 831 | Run Keyword And Ignore Error Kill Linux Process [w]pa_supplicant ${src['ip']} |
| 832 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 833 | END |
| 834 | |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 835 | Should Be Larger Than |
| 836 | [Documentation] Verify that value_1 is > value_2 |
| 837 | [Arguments] ${value_1} ${value_2} |
| 838 | Run Keyword If ${value_1} <= ${value_2} |
| 839 | ... Fail The value ${value_1} is not larger than ${value_2} |
| 840 | |
Scott Baker | ee67555 | 2020-02-11 10:43:34 -0800 | [diff] [blame] | 841 | Should Be Larger Than Or Equal To |
| 842 | [Documentation] Verify that value_1 is >= value_2 |
| 843 | [Arguments] ${value_1} ${value_2} |
| 844 | Run Keyword If ${value_1} < ${value_2} |
| 845 | ... Fail The value ${value_1} is not larger than or equal to ${value_2} |
| 846 | |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 847 | Should Be Float |
| 848 | [Documentation] Verify that value is a floating point number type |
| 849 | [Arguments] ${value} |
| 850 | ${type} Evaluate type(${value}).__name__ |
| 851 | Should Be Equal ${type} float |
| 852 | |
Scott Baker | ee67555 | 2020-02-11 10:43:34 -0800 | [diff] [blame] | 853 | Should Be Newer Than Or Equal To |
| 854 | [Documentation] Compare two RFC3339 dates |
| 855 | [Arguments] ${value_1} ${value_2} |
| 856 | ${unix_v1} Parse RFC3339 ${value_1} |
| 857 | ${unix_v2} Parse RFC3339 ${value_2} |
| 858 | Run Keyword If ${unix_v1} < ${unix_v2} |
| 859 | ... Fail The value ${value_1} is not newer than or equal to ${value_2} |
| 860 | |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 861 | Get Current Time |
| 862 | [Documentation] Return the current time in RFC3339 format |
| 863 | ${output}= Run date -u +"%FT%T%:z" |
| 864 | [return] ${output} |
Scott Baker | ee67555 | 2020-02-11 10:43:34 -0800 | [diff] [blame] | 865 | |
| 866 | Parse RFC3339 |
| 867 | [Documentation] Parse an RFC3339 timestamp |
| 868 | [Arguments] ${dateStr} |
| 869 | ${rc} ${output}= Run and Return Rc and Output date --date="${dateStr}" "+%s" |
| 870 | Should Be Equal As Numbers ${rc} 0 |
| 871 | [return] ${output} |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 872 | |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 873 | Get Bandwidth Profile Name For Given Subscriber |
| 874 | [Arguments] ${subscriber_id} ${stream_type}=upstreamBandwidthProfile |
| 875 | [Documentation] Keyword to get the bandwidth details of the given subscriber |
| 876 | ${bandwidth_profile_output}= Execute ONOS CLI Command ${ONOS_SSH_IP} ${ONOS_SSH_PORT} |
| 877 | ... volt-programmed-subscribers | grep ${subscriber_id} |
| 878 | @{bandwidth_profile_array}= Split String ${bandwidth_profile_output} , |
| 879 | Log ${bandwidth_profile_array} |
| 880 | FOR ${value} IN @{bandwidth_profile_array} |
| 881 | @{row_value}= Split String ${value} = |
| 882 | ${bandwidth_profile_name}= Set Variable If '${row_value[0]}' == ' ${stream_type}' |
| 883 | ... ${row_value[1]} |
| 884 | ${bandwidth_profile_name}= Convert To String ${bandwidth_profile_name} |
| 885 | Run Keyword If "${bandwidth_profile_name}" != "None" Exit For Loop |
| 886 | END |
| 887 | Log ${bandwidth_profile_name} |
| 888 | [Return] ${bandwidth_profile_name} |
| 889 | |
| 890 | Execute Remote Command |
| 891 | [Documentation] SSH into a remote host and execute a command on the bare host or in a container. |
| 892 | ... This replaces and simplifies the Login And Run Command On Remote System keyword in CORDRobot. |
| 893 | [Arguments] ${cmd} ${ip} ${user} ${pass}=${None} |
Andy Bavier | eff938d | 2020-06-29 18:27:49 -0700 | [diff] [blame] | 894 | ... ${container_type}=${None} ${container_name}=${None} ${timeout}=${None} |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 895 | ${conn_id}= SSHLibrary.Open Connection ${ip} |
| 896 | Run Keyword If '${pass}' != '${None}' |
| 897 | ... SSHLibrary.Login ${user} ${pass} |
| 898 | ... ELSE |
| 899 | ... SSHLibrary.Login With Public Key ${user} %{HOME}/.ssh/id_rsa |
| 900 | ${namespace}= Run Keyword If '${container_type}' == 'K8S' SSHLibrary.Execute Command |
| 901 | ... kubectl get pods --all-namespaces | grep ${container_name} | awk '{print $1}' |
Andy Bavier | f6ab19c | 2020-05-14 10:34:47 -0700 | [diff] [blame] | 902 | ${stdout} ${stderr} ${rc}= Run Keyword If '${container_type}' == 'LXC' |
| 903 | ... SSHLibrary.Execute Command lxc exec ${container_name} -- ${cmd} |
Andy Bavier | eff938d | 2020-06-29 18:27:49 -0700 | [diff] [blame] | 904 | ... return_stderr=True return_rc=True timeout=${timeout} |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 905 | ... ELSE IF '${container_type}' == 'K8S' |
Andy Bavier | f6ab19c | 2020-05-14 10:34:47 -0700 | [diff] [blame] | 906 | ... SSHLibrary.Execute Command kubectl -n ${namespace} exec ${container_name} -- ${cmd} |
Andy Bavier | eff938d | 2020-06-29 18:27:49 -0700 | [diff] [blame] | 907 | ... return_stderr=True return_rc=True timeout=${timeout} |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 908 | ... ELSE |
Andy Bavier | eff938d | 2020-06-29 18:27:49 -0700 | [diff] [blame] | 909 | ... SSHLibrary.Execute Command ${cmd} return_stderr=True return_rc=True timeout=${timeout} |
Andy Bavier | f6ab19c | 2020-05-14 10:34:47 -0700 | [diff] [blame] | 910 | |
| 911 | Log ${stdout} |
| 912 | Log ${stderr} |
| 913 | Log ${rc} |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 914 | SSHLibrary.Close Connection |
Andy Bavier | f6ab19c | 2020-05-14 10:34:47 -0700 | [diff] [blame] | 915 | [Return] ${stdout} ${stderr} ${rc} |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 916 | |
Suraj Gour | 3365127 | 2020-05-04 10:10:16 +0530 | [diff] [blame] | 917 | Start Remote Command |
| 918 | [Documentation] SSH into a remote host and execute a command on the bare host or in a container. |
| 919 | ... This replaces and simplifies the Login And Run Command On Remote System keyword in CORDRobot. |
| 920 | [Arguments] ${cmd} ${ip} ${user} ${pass}=${None} |
| 921 | ... ${container_type}=${None} ${container_name}=${None} |
| 922 | ${conn_id}= SSHLibrary.Open Connection ${ip} |
| 923 | Run Keyword If '${pass}' != '${None}' |
| 924 | ... SSHLibrary.Login ${user} ${pass} |
| 925 | ... ELSE |
| 926 | ... SSHLibrary.Login With Public Key ${user} %{HOME}/.ssh/id_rsa |
| 927 | ${namespace}= Run Keyword If '${container_type}' == 'K8S' SSHLibrary.Execute Command |
| 928 | ... kubectl get pods --all-namespaces | grep ${container_name} | awk '{print $1}' |
| 929 | Run Keyword If '${container_type}' == 'LXC' |
| 930 | ... SSHLibrary.Start Command lxc exec ${container_name} -- ${cmd} |
| 931 | ... ELSE IF '${container_type}' == 'K8S' |
| 932 | ... SSHLibrary.Start Command kubectl -n ${namespace} exec ${container_name} -- ${cmd} |
| 933 | ... ELSE |
| 934 | ... SSHLibrary.Start Command ${cmd} |
Andy Bavier | 9fb2323 | 2020-06-30 15:12:20 -0700 | [diff] [blame] | 935 | # It seems that closing the connection immediately will sometimes kill the command |
| 936 | Sleep 1s |
Suraj Gour | 3365127 | 2020-05-04 10:10:16 +0530 | [diff] [blame] | 937 | SSHLibrary.Close Connection |
| 938 | |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 939 | Run Iperf3 Test Client |
| 940 | [Arguments] ${src} ${server} ${args} |
| 941 | [Documentation] Login to ${src} and run the iperf3 client against ${server} using ${args}. |
| 942 | ... Return a Dictionary containing the results of the test. |
Andy Bavier | f6ab19c | 2020-05-14 10:34:47 -0700 | [diff] [blame] | 943 | ${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] | 944 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
Andy Bavier | f6ab19c | 2020-05-14 10:34:47 -0700 | [diff] [blame] | 945 | Should Be Equal As Integers ${rc} 0 |
Gayathri.Selvan | 92d1686 | 2020-03-19 14:47:58 +0000 | [diff] [blame] | 946 | ${object}= Evaluate json.loads(r'''${output}''') json |
| 947 | [Return] ${object} |
Hung-Wei Chiu | e0bec7c | 2020-05-29 22:16:56 +0000 | [diff] [blame] | 948 | |
Suchitra Vemuri | 85cb7d6 | 2020-07-16 23:46:16 -0700 | [diff] [blame] | 949 | Run Iperf Test Client for MCAST |
| 950 | [Arguments] ${src} ${server} ${args} |
| 951 | [Documentation] Login to ${src} and run the iperf client against ${server} using ${args}. |
| 952 | ... Return a Dictionary containing the results of the test. |
| 953 | ${output} ${stderr} ${rc}= Execute Remote Command sudo iperf -c ${server} ${args} | jq -M -c '.' |
| 954 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 955 | Should Be Equal As Integers ${rc} 0 |
| 956 | ${object}= Evaluate json.loads(r'''${output}''') json |
| 957 | [Return] ${object} |
| 958 | |
Hung-Wei Chiu | e0bec7c | 2020-05-29 22:16:56 +0000 | [diff] [blame] | 959 | RestoreONUs |
| 960 | [Documentation] Restore all connected ONUs |
| 961 | [Arguments] ${num_onus} |
| 962 | FOR ${I} IN RANGE 0 ${num_onus} |
| 963 | ${src}= Set Variable ${hosts.src[${I}]} |
Hung-Wei Chiu | cc6e655 | 2020-06-04 12:57:38 -0700 | [diff] [blame] | 964 | ${container_type}= Get Variable Value ${src['container_type']} "null" |
| 965 | ${container_name}= Get Variable Value ${src['container_name']} "null" |
Hung-Wei Chiu | e0bec7c | 2020-05-29 22:16:56 +0000 | [diff] [blame] | 966 | ${onu_type}= Get Variable Value ${src['onu_type']} "null" |
Hung-Wei Chiu | cc6e655 | 2020-06-04 12:57:38 -0700 | [diff] [blame] | 967 | #Get ens6f0 from ens6f0.22 |
| 968 | ${if_name}= Replace String Using Regexp ${src['dp_iface_name']} \\..* \ |
Hung-Wei Chiu | e0bec7c | 2020-05-29 22:16:56 +0000 | [diff] [blame] | 969 | Run Keyword IF '${onu_type}' == 'alpha' AlphaONURestoreDefault ${src['ip']} ${src['user']} |
Hung-Wei Chiu | cc6e655 | 2020-06-04 12:57:38 -0700 | [diff] [blame] | 970 | ... ${src['pass']} ${if_name} admin admin ${container_type} ${container_name} |
Hung-Wei Chiu | e0bec7c | 2020-05-29 22:16:56 +0000 | [diff] [blame] | 971 | END |
| 972 | |
| 973 | AlphaONURestoreDefault |
| 974 | [Documentation] Restore the Alpha ONU to factory setting |
| 975 | [Arguments] ${rg_ip} ${rg_user} ${rg_pass} ${onu_ifname} |
Hung-Wei Chiu | cc6e655 | 2020-06-04 12:57:38 -0700 | [diff] [blame] | 976 | ... ${onu_user} ${onu_pass} ${container_type}=${None} ${container_name}=${None} |
Hung-Wei Chiu | e0bec7c | 2020-05-29 22:16:56 +0000 | [diff] [blame] | 977 | ${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] | 978 | ... ${rg_ip} ${rg_user} ${rg_pass} ${container_type} ${container_name} |
Hung-Wei Chiu | e0bec7c | 2020-05-29 22:16:56 +0000 | [diff] [blame] | 979 | ${cmd} Catenate |
| 980 | ... (echo open "192.168.1.1"; sleep 1; |
| 981 | ... echo "${onu_user}"; sleep 1; |
| 982 | ... echo "${onu_pass}"; sleep 1; |
| 983 | ... echo "restoredefault"; sleep 1) | telnet |
| 984 | ${output}= Login And Run Command On Remote System ${cmd} |
Hung-Wei Chiu | cc6e655 | 2020-06-04 12:57:38 -0700 | [diff] [blame] | 985 | ... ${rg_ip} ${rg_user} ${rg_pass} ${container_type} ${container_name} |
Hung-Wei Chiu | e0bec7c | 2020-05-29 22:16:56 +0000 | [diff] [blame] | 986 | Log To Console ${output} |
| 987 | ${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] | 988 | ... ${rg_ip} ${rg_user} ${rg_pass} ${container_type} ${container_name} |
Suraj Gour | 3365127 | 2020-05-04 10:10:16 +0530 | [diff] [blame] | 989 | |
| 990 | Create traffic with each pbit and capture at other end |
| 991 | [Documentation] Generates upstream traffic using Mausezahn tool |
| 992 | ... with each pbit and validates reception at other end using tcpdump |
| 993 | [Arguments] ${target_ip} ${target_iface} ${src_iface} |
| 994 | ... ${packet_count} ${packet_type} ${target_port} ${vlan} ${tcpdump_filter} |
| 995 | ... ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name} |
| 996 | ... ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} |
| 997 | FOR ${pbit} IN RANGE 8 |
Andy Bavier | eff938d | 2020-06-29 18:27:49 -0700 | [diff] [blame] | 998 | Execute Remote Command sudo pkill mausezahn |
Suraj Gour | 3365127 | 2020-05-04 10:10:16 +0530 | [diff] [blame] | 999 | ... ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} |
Andy Bavier | eff938d | 2020-06-29 18:27:49 -0700 | [diff] [blame] | 1000 | ${var1}= Set Variable sudo mausezahn ${src_iface} -B ${target_ip} -c ${packet_count} -d 100m |
Suraj Gour | 3365127 | 2020-05-04 10:10:16 +0530 | [diff] [blame] | 1001 | ${var2}= Set Variable -t ${packet_type} "dp=${target_port}" -p 1472 -Q ${pbit}:${vlan} |
| 1002 | ${cmd}= Set Variable ${var1} ${var2} |
| 1003 | Start Remote Command ${cmd} ${src_ip} ${src_user} ${src_pass} |
| 1004 | ... ${src_container_type} ${src_container_name} |
| 1005 | ${output} ${stderr} ${rc}= Execute Remote Command |
Andy Bavier | eff938d | 2020-06-29 18:27:49 -0700 | [diff] [blame] | 1006 | ... sudo tcpdump -l -U -c 30 -i ${target_iface} -e ${tcpdump_filter} |
Suraj Gour | 3365127 | 2020-05-04 10:10:16 +0530 | [diff] [blame] | 1007 | ... ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name} |
Andy Bavier | eff938d | 2020-06-29 18:27:49 -0700 | [diff] [blame] | 1008 | ... timeout=30 seconds |
| 1009 | Execute Remote Command sudo pkill mausezahn |
Suraj Gour | 3365127 | 2020-05-04 10:10:16 +0530 | [diff] [blame] | 1010 | ... ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} |
| 1011 | # VOL-3262: I'm seeing untagged downstream traffic at RG for pbit 0. According to Girish this is |
| 1012 | # incorrect behavior. Simplify the following check when VOL-3262 is resolved. |
| 1013 | Run Keyword If ${pbit}==0 and "${tcpdump_filter}"=="udp" |
| 1014 | ... Should Match Regexp ${output} \\.${target_port}: UDP, |
| 1015 | ... ELSE Should Match Regexp ${output} , p ${pbit},.*\\.${target_port}: UDP, |
| 1016 | END |