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 |
| 25 | |
| 26 | *** Keywords *** |
Kailash | 528f7c0 | 2019-07-31 10:55:49 -0700 | [diff] [blame] | 27 | Check CLI Tools Configured |
| 28 | [Documentation] Tests that use 'voltctl' and 'kubectl' should execute this keyword in suite setup |
| 29 | # check voltctl and kubectl configured |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 30 | ${voltctl_rc}= Run And Return RC voltctl device list |
| 31 | ${kubectl_rc}= Run And Return RC kubectl get pods |
Gilles Depatie | 675a206 | 2019-10-22 12:44:42 -0400 | [diff] [blame] | 32 | Run Keyword If ${voltctl_rc} != 0 or ${kubectl_rc} != 0 FATAL ERROR |
| 33 | ... VOLTCTL and KUBECTL not configured. Please configure before executing tests. |
Gilles Depatie | b5682f8 | 2019-10-31 10:39:45 -0400 | [diff] [blame] | 34 | |
| 35 | Send File To Onos |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 36 | [Documentation] Send the content of the file to Onos to selected section of configuration |
| 37 | ... using Post Request |
| 38 | [Arguments] ${CONFIG_FILE} ${section} |
| 39 | ${Headers}= Create Dictionary Content-Type application/json |
| 40 | ${File_Data}= OperatingSystem.Get File ${CONFIG_FILE} |
| 41 | Log ${Headers} |
| 42 | Log ${File_Data} |
| 43 | ${resp}= Post Request ONOS |
| 44 | ... /onos/v1/network/configuration/${section} headers=${Headers} data=${File_Data} |
| 45 | Should Be Equal As Strings ${resp.status_code} 200 |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 46 | |
| 47 | Common Test Suite Setup |
| 48 | [Documentation] Setup the test suite |
| 49 | # BBSim sanity test doesn't need these imports from other repositories |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 50 | Run Keyword If ${external_libs} Import Resource |
Andy Bavier | a269175 | 2019-11-27 12:18:38 -0700 | [diff] [blame] | 51 | ... ${CURDIR}/../../cord-tester/src/test/cord-api/Framework/Subscriber.robot |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 52 | Run Keyword If ${external_libs} Import Resource |
Andy Bavier | a269175 | 2019-11-27 12:18:38 -0700 | [diff] [blame] | 53 | ... ${CURDIR}/../../cord-tester/src/test/cord-api/Framework/OLT.robot |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 54 | Run Keyword If ${external_libs} Import Resource |
Andy Bavier | a269175 | 2019-11-27 12:18:38 -0700 | [diff] [blame] | 55 | ... ${CURDIR}/../../cord-tester/src/test/cord-api/Framework/DHCP.robot |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 56 | Run Keyword If ${external_libs} Import Resource |
Andy Bavier | a269175 | 2019-11-27 12:18:38 -0700 | [diff] [blame] | 57 | ... ${CURDIR}/../../cord-tester/src/test/cord-api/Framework/Kubernetes.robot |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 58 | Set Global Variable ${KUBECTL_CONFIG} export KUBECONFIG=%{KUBECONFIG} |
| 59 | Set Global Variable ${VOLTCTL_CONFIG} export VOLTCONFIG=%{VOLTCONFIG} |
| 60 | ${k8s_node_ip}= Evaluate ${nodes}[0].get("ip") |
| 61 | ${k8s_node_user}= Evaluate ${nodes}[0].get("user") |
| 62 | ${k8s_node_pass}= Evaluate ${nodes}[0].get("pass") |
| 63 | Check CLI Tools Configured |
| 64 | ${onos_auth}= Create List karaf karaf |
| 65 | ${HEADERS} Create Dictionary Content-Type=application/json |
| 66 | Create Session ONOS http://${k8s_node_ip}:${ONOS_REST_PORT} auth=${ONOS_AUTH} |
| 67 | ${olt_ip}= Evaluate ${olts}[0].get("ip") |
| 68 | ${olt_user}= Evaluate ${olts}[0].get("user") |
| 69 | ${olt_pass}= Evaluate ${olts}[0].get("pass") |
| 70 | ${olt_serial_number}= Evaluate ${olts}[0].get("serial") |
| 71 | ${num_onus}= Get Length ${hosts.src} |
| 72 | ${num_onus}= Convert to String ${num_onus} |
| 73 | #send sadis file to onos |
Andy Bavier | a269175 | 2019-11-27 12:18:38 -0700 | [diff] [blame] | 74 | ${sadis_file}= Get Variable Value ${sadis.file} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 75 | Log To Console \nSadis File:${sadis_file} |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 76 | Run Keyword Unless '${sadis_file}' is '${None}' Send File To Onos ${sadis_file} apps/ |
| 77 | Set Suite Variable ${num_onus} |
| 78 | Set Suite Variable ${olt_serial_number} |
| 79 | Set Suite Variable ${olt_ip} |
| 80 | Set Suite Variable ${olt_user} |
| 81 | Set Suite Variable ${olt_pass} |
| 82 | Set Suite Variable ${k8s_node_ip} |
| 83 | Set Suite Variable ${k8s_node_user} |
| 84 | Set Suite Variable ${k8s_node_pass} |
| 85 | @{container_list}= Create List adapter-open-olt adapter-open-onu voltha-api-server |
| 86 | ... voltha-ro-core voltha-rw-core-11 voltha-rw-core-12 voltha-ofagent |
| 87 | Set Suite Variable ${container_list} |
| 88 | ${datetime}= Get Current Date |
suraj gour | 7f6d5fe | 2019-11-29 10:56:35 +0000 | [diff] [blame] | 89 | Set Suite Variable ${datetime} |
| 90 | |
| 91 | WPA Reassociate |
suraj gour | 7f6d5fe | 2019-11-29 10:56:35 +0000 | [diff] [blame] | 92 | [Documentation] Executes a particular wpa_cli reassociate, which performs force reassociation |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 93 | [Arguments] ${iface} ${ip} ${user} ${pass}=${None} |
| 94 | ... ${container_type}=${None} ${container_name}=${None} |
suraj gour | 7f6d5fe | 2019-11-29 10:56:35 +0000 | [diff] [blame] | 95 | #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] | 96 | FOR ${i} IN RANGE 70 |
| 97 | ${output}= Login And Run Command On Remote System |
| 98 | ... wpa_cli -i ${iface} reassociate ${ip} ${user} |
| 99 | ... ${pass} ${container_type} ${container_name} |
| 100 | ${passed}= Run Keyword And Return Status Should Contain ${output} OK |
| 101 | Run Keyword If ${passed} Exit For Loop |
| 102 | END |
| 103 | FOR ${i} IN RANGE 70 |
| 104 | ${output}= Login And Run Command On Remote System |
| 105 | ... wpa_cli status | grep SUCCESS ${ip} ${user} |
| 106 | ... ${pass} ${container_type} ${container_name} |
| 107 | ${passed}= Run Keyword And Return Status Should Contain ${output} SUCCESS |
| 108 | Run Keyword If ${passed} Exit For Loop |
| 109 | END |
| 110 | |
suraj gour | 7f6d5fe | 2019-11-29 10:56:35 +0000 | [diff] [blame] | 111 | Validate Authentication After Reassociate |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 112 | [Arguments] ${auth_pass} ${iface} ${ip} ${user} ${pass}=${None} |
| 113 | ... ${container_type}=${None} ${container_name}=${None} |
| 114 | [Documentation] |
| 115 | ... Executes a particular reassociate request on the RG using wpa_cli. |
| 116 | ... auth_pass determines if authentication should pass |
suraj gour | 7f6d5fe | 2019-11-29 10:56:35 +0000 | [diff] [blame] | 117 | WPA Reassociate ${iface} ${ip} ${user} ${pass} ${container_type} ${container_name} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 118 | Run Keyword If '${auth_pass}' == 'True' Wait Until Keyword Succeeds ${timeout} 2s |
| 119 | ... Check Remote File Contents True /tmp/wpa.log authentication completed successfully |
| 120 | ... ${ip} ${user} ${pass} ${container_type} ${container_name} |
suraj gour | 7f6d5fe | 2019-11-29 10:56:35 +0000 | [diff] [blame] | 121 | Run Keyword If '${auth_pass}' == 'False' Sleep 20s |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 122 | Run Keyword If '${auth_pass}' == 'False' Check Remote File Contents False /tmp/wpa.log |
| 123 | ... authentication completed successfully ${ip} ${user} ${pass} |
| 124 | ... ${container_type} ${container_name} |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 125 | |
| 126 | Send Dhclient Request To Release Assigned IP |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 127 | [Arguments] ${iface} ${ip} ${user} ${path_dhcpleasefile} ${pass}=${None} |
| 128 | ... ${container_type}=${None} ${container_name}=${None} |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 129 | [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] | 130 | ${result}= Login And Run Command On Remote System |
| 131 | ... dhclient -nw -r ${iface} && rm ${path_dhcpleasefile}/dhclient.* ${ip} ${user} |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 132 | ... ${pass} ${container_type} ${container_name} |
| 133 | Log ${result} |
| 134 | #Should Contain ${result} DHCPRELEASE |
| 135 | [Return] ${result} |
suraj gour | 1ecfae9 | 2019-12-20 15:11:40 +0000 | [diff] [blame] | 136 | |
| 137 | Check Remote File Contents For WPA Logs |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 138 | [Arguments] ${file_should_exist} ${file} ${pattern} ${ip} ${user} ${pass}=${None} |
| 139 | ... ${container_type}=${None} ${container_name}=${None} ${prompt}=~$ |
suraj gour | 1ecfae9 | 2019-12-20 15:11:40 +0000 | [diff] [blame] | 140 | [Documentation] Checks for particular pattern count in a file |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 141 | ${result}= Login And Run Command On Remote System |
| 142 | ... cat ${file} | grep '${pattern}' | wc -l ${ip} ${user} ${pass} |
suraj gour | 1ecfae9 | 2019-12-20 15:11:40 +0000 | [diff] [blame] | 143 | ... ${container_type} ${container_name} ${prompt} |
| 144 | [Return] ${result} |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 145 | |
| 146 | Perform Sanity Test |
| 147 | [Documentation] This keyword performs Sanity Test Procedure |
| 148 | ... Sanity test performs authentication, dhcp and pings for all the ONUs given for the POD |
| 149 | ... This keyword can be used to call in any other tests where sanity check is required |
| 150 | ... and avoids duplication of code. |
| 151 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number} |
| 152 | Set Global Variable ${of_id} |
| 153 | FOR ${I} IN RANGE 0 ${num_onus} |
| 154 | ${src}= Set Variable ${hosts.src[${I}]} |
| 155 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 156 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 157 | ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 158 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
Suchitra Vemuri | 8078b97 | 2020-02-06 19:07:41 -0800 | [diff] [blame] | 159 | # Check ONU port is Enabled in ONOS |
| 160 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s |
| 161 | ... Verify ONU Port Is Enabled ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port} |
| 162 | # Verify EAPOL flows are added for the ONU port |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 163 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 164 | ... Verify Eapol Flows Added For ONU ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port} |
Suchitra Vemuri | 8078b97 | 2020-02-06 19:07:41 -0800 | [diff] [blame] | 165 | # Verify ONU state in voltha |
| 166 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 5s Validate Device |
| 167 | ... ENABLED ACTIVE REACHABLE |
| 168 | ... ${src['onu']} onu=True onu_reason=omci-flows-pushed |
| 169 | # Perform Authentication |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 170 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate Authentication True |
| 171 | ... ${src['dp_iface_name']} wpa_supplicant.conf ${src['ip']} ${src['user']} ${src['pass']} |
| 172 | ... ${src['container_type']} ${src['container_name']} |
| 173 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2 |
| 174 | ... Verify ONU in AAA-Users ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port} |
| 175 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2 |
| 176 | ... Execute ONOS CLI Command ${k8s_node_ip} ${ONOS_SSH_PORT} |
| 177 | ... volt-add-subscriber-access ${of_id} ${onu_port} |
| 178 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure Validate DHCP and Ping True |
| 179 | ... True ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 180 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 181 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 182 | ... ${dst['container_name']} |
| 183 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 184 | ... Validate Subscriber DHCP Allocation ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port} |
| 185 | Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id} |
| 186 | Run Keyword and Ignore Error Collect Logs |
| 187 | END |
| 188 | |
| 189 | Setup |
| 190 | [Documentation] Pre-test Setup |
| 191 | #test for empty device list |
| 192 | Test Empty Device List |
| 193 | Run Keyword If ${has_dataplane} Wait Until Keyword Succeeds 120s 10s Openolt is Up |
| 194 | ... ${olt_ip} ${olt_user} ${olt_pass} |
| 195 | Sleep 60s |
| 196 | #create/preprovision device |
| 197 | ${olt_device_id}= Create Device ${olt_ip} ${OLT_PORT} |
| 198 | Set Suite Variable ${olt_device_id} |
| 199 | #validate olt states |
| 200 | Wait Until Keyword Succeeds ${timeout} 5s |
| 201 | ... Validate OLT Device PREPROVISIONED UNKNOWN UNKNOWN ${EMPTY} ${olt_device_id} |
Suchitra Vemuri | a7e8ad2 | 2020-02-11 18:02:40 -0800 | [diff] [blame] | 202 | Sleep 5s |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 203 | Enable Device ${olt_device_id} |
| 204 | Wait Until Keyword Succeeds ${timeout} 5s |
| 205 | ... Validate OLT Device ENABLED ACTIVE REACHABLE ${olt_serial_number} |
| 206 | ${logical_id}= Get Logical Device ID From SN ${olt_serial_number} |
| 207 | Set Suite Variable ${logical_id} |
| 208 | |
| 209 | Delete All Devices and Verify |
| 210 | [Documentation] Remove any devices from VOLTHA and ONOS |
| 211 | # Clear devices from VOLTHA |
| 212 | Disable Devices In Voltha Root=true |
| 213 | Wait Until Keyword Succeeds ${timeout} 2s Test Devices Disabled In Voltha Root=true |
| 214 | Delete Devices In Voltha Root=true |
| 215 | Wait Until Keyword Succeeds ${timeout} 2s Test Empty Device List |
| 216 | # Clear devices from ONOS |
| 217 | Remove All Devices From ONOS |
| 218 | ... http://karaf:karaf@${k8s_node_ip}:${ONOS_REST_PORT} |
| 219 | |
| 220 | Teardown |
| 221 | [Documentation] kills processes and cleans up interfaces on src+dst servers |
| 222 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 223 | Run Keyword If ${external_libs} Run Keyword and Ignore Error |
| 224 | ... Log Kubernetes Containers Logs Since Time |
| 225 | ... ${datetime} ${container_list} |
| 226 | |
| 227 | Teardown Suite |
| 228 | [Documentation] Clean up device if desired |
| 229 | Run Keyword If ${teardown_device} Delete All Devices and Verify |
| 230 | |
| 231 | Delete Device and Verify |
| 232 | [Documentation] Disable -> Delete devices via voltctl and verify its removed |
Suchitra Vemuri | 2fa9bba | 2020-01-22 17:38:48 -0800 | [diff] [blame] | 233 | ${olt_device_id}= Get Device ID From SN ${olt_serial_number} |
Gayathri.Selvan | ee4a91b | 2020-01-17 06:49:53 +0000 | [diff] [blame] | 234 | ${rc} ${output}= Run and Return Rc and Output |
| 235 | ... ${VOLTCTL_CONFIG}; voltctl device disable ${olt_device_id} |
| 236 | Should Be Equal As Integers ${rc} 0 |
| 237 | Sleep 5s |
| 238 | Wait Until Keyword Succeeds ${timeout} 5s |
| 239 | ... Validate OLT Device DISABLED UNKNOWN REACHABLE ${olt_serial_number} |
| 240 | ${rc} ${output}= Run and Return Rc and Output |
| 241 | ... ${VOLTCTL_CONFIG}; voltctl device delete ${olt_device_id} |
| 242 | Sleep 50s |
| 243 | Should Be Equal As Integers ${rc} 0 |
| 244 | Wait Until Keyword Succeeds ${timeout} 5s Validate Device Removed ${olt_device_id} |
| 245 | |
Gayathri.Selvan | 283a63c | 2020-01-23 04:09:18 +0000 | [diff] [blame] | 246 | Repeat Sanity Test |
| 247 | [Documentation] This keyword performs Sanity Test Procedure |
| 248 | ... Sanity test performs authentication, dhcp and pings for all the ONUs given for the POD |
| 249 | ... This keyword can be used to call in any other tests where sanity check is required |
| 250 | ... with wpa reassociation |
| 251 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS ${olt_serial_number} |
| 252 | Set Global Variable ${of_id} |
| 253 | FOR ${I} IN RANGE 0 ${num_onus} |
| 254 | ${src}= Set Variable ${hosts.src[${I}]} |
| 255 | ${dst}= Set Variable ${hosts.dst[${I}]} |
Suchitra Vemuri | 8078b97 | 2020-02-06 19:07:41 -0800 | [diff] [blame] | 256 | ${onu_port}= Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 257 | ... Get ONU Port in ONOS ${src['onu']} ${of_id} |
| 258 | # Check ONU port is Enabled in ONOD |
| 259 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 120s 2s |
| 260 | ... Verify ONU Port Is Enabled ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port} |
| 261 | # Verify EAPOL flows are added for the ONU port |
| 262 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s |
| 263 | ... Verify Eapol Flows Added For ONU ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port} |
| 264 | # Verify ONU state in voltha |
Suchitra Vemuri | d1e27fb | 2020-02-01 16:34:37 -0800 | [diff] [blame] | 265 | 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] | 266 | ... ENABLED ACTIVE REACHABLE |
| 267 | ... ${src['onu']} onu=True onu_reason=omci-flows-pushed |
Suchitra Vemuri | 8078b97 | 2020-02-06 19:07:41 -0800 | [diff] [blame] | 268 | # Perform Authentication |
Gayathri.Selvan | 283a63c | 2020-01-23 04:09:18 +0000 | [diff] [blame] | 269 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 270 | ... Validate Authentication After Reassociate |
| 271 | ... True ${src['dp_iface_name']} ${src['ip']} ${src['user']} ${src['pass']} |
| 272 | ... ${src['container_type']} ${src['container_name']} |
| 273 | Wait Until Keyword Succeeds ${timeout} 2s |
| 274 | ... Verify ONU in AAA-Users ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port} |
| 275 | Wait Until Keyword Succeeds ${timeout} 2s |
| 276 | ... Execute ONOS CLI Command ${k8s_node_ip} ${ONOS_SSH_PORT} |
| 277 | ... volt-add-subscriber-access ${of_id} ${onu_port} |
| 278 | Run Keyword If ${has_dataplane} Run Keyword And Continue On Failure |
| 279 | ... Validate DHCP and Ping True True |
| 280 | ... ${src['dp_iface_name']} ${src['s_tag']} ${src['c_tag']} ${dst['dp_iface_ip_qinq']} |
| 281 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 282 | ... ${dst['dp_iface_name']} ${dst['ip']} ${dst['user']} ${dst['pass']} ${dst['container_type']} |
| 283 | ... ${dst['container_name']} |
| 284 | Wait Until Keyword Succeeds ${timeout} 2s Run Keyword And Continue On Failure |
| 285 | ... Validate Subscriber DHCP Allocation ${k8s_node_ip} ${ONOS_SSH_PORT} ${onu_port} |
| 286 | Run Keyword and Ignore Error Get Device Output from Voltha ${onu_device_id} |
| 287 | Run Keyword and Ignore Error Collect Logs |
| 288 | END |
Gayathri.Selvan | b6a2b54 | 2020-01-24 07:24:23 +0000 | [diff] [blame] | 289 | |
| 290 | Collect Logs |
| 291 | [Documentation] Collect Logs from voltha and onos cli for various commands |
| 292 | Run Keyword and Ignore Error Get Device List from Voltha |
| 293 | Run Keyword and Ignore Error Get Device Output from Voltha ${olt_device_id} |
| 294 | Run Keyword and Ignore Error Get Logical Device Output from Voltha ${logical_id} |
| 295 | Run Keyword If ${external_libs} Get ONOS Status ${k8s_node_ip} |
Gayathri.Selvan | f68ea4b | 2020-02-03 07:36:39 +0000 | [diff] [blame] | 296 | |
| 297 | Verify ping is succesful except for given device |
| 298 | [Arguments] ${num_onus} ${exceptional_onu_id} |
| 299 | [Documentation] Checks that ping for all the devices are successful except the given ONU. |
| 300 | ${pingStatus} Set Variable True |
| 301 | FOR ${I} IN RANGE 0 ${num_onus} |
| 302 | ${src}= Set Variable ${hosts.src[${I}]} |
| 303 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 304 | ${onu_device_id}= Get Device ID From SN ${src['onu']} |
| 305 | ${pingStatus} Run Keyword If '${onu_device_id}' == '${exceptional_onu_id}' Set Variable False |
| 306 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds 60s 2s |
| 307 | ... Check Ping ${pingStatus} ${dst['dp_iface_ip_qinq']} ${src['dp_iface_name']} |
| 308 | ... ${src['ip']} ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 309 | END |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 310 | |
| 311 | Announce Message |
| 312 | [Arguments] ${message} |
| 313 | [Documentation] Announce a message that will be picked up by the log aggregator |
Andy Bavier | 1af971b | 2020-02-05 14:26:21 -0700 | [diff] [blame] | 314 | Run Process kubectl run announcer -ti --rm --restart Never --image ubuntu |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 315 | ... bash -- -c echo; sleep 1; echo ${message}; sleep 1; date --rfc-3339\=n ; sleep 1; echo; sleep 1 |
Suchitra Vemuri | a5fa3dd | 2020-02-04 14:38:49 -0800 | [diff] [blame] | 316 | |
Andy Bavier | abeba26 | 2020-02-07 16:22:16 -0700 | [diff] [blame] | 317 | Start Logging |
| 318 | [Arguments] ${label} |
| 319 | [Documentation] Start logging for test ${label} |
| 320 | ${kail_process}= Run Keyword If "${container_log_dir}" != "${None}" Start Process kail -n default |
| 321 | ... -n voltha cwd=${container_log_dir} stdout=${label}-combined.log |
| 322 | Set Test Variable ${kail_process} |
| 323 | |
| 324 | Stop Logging |
| 325 | [Arguments] ${label} |
| 326 | [Documentation] End logging for test; remove logfile if test passed |
| 327 | Run sync |
| 328 | Run Keyword If ${kail_process} Terminate Process ${kail_process} |
| 329 | ${test_logfile}= Run Keyword If "${container_log_dir}" != "${None}" |
| 330 | ... Join Path ${container_log_dir} ${label}-combined.log |
| 331 | Run Keyword If Test Passed Run Keyword If "${test_logfile}" != "${None}" Remove File ${test_logfile} |
| 332 | |
Suchitra Vemuri | a5fa3dd | 2020-02-04 14:38:49 -0800 | [diff] [blame] | 333 | Clean Up Linux |
| 334 | [Documentation] Kill processes and clean up interfaces on src+dst servers |
| 335 | FOR ${I} IN RANGE 0 ${num_onus} |
| 336 | ${src}= Set Variable ${hosts.src[${I}]} |
| 337 | ${dst}= Set Variable ${hosts.dst[${I}]} |
| 338 | Run Keyword And Ignore Error Kill Linux Process [w]pa_supplicant ${src['ip']} |
| 339 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 340 | Run Keyword And Ignore Error Kill Linux Process [d]hclient ${src['ip']} |
| 341 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 342 | Run Keyword If '${dst['ip']}' != '${None}' Run Keyword And Ignore Error |
| 343 | ... Kill Linux Process [d]hcpd ${dst['ip']} ${dst['user']} |
| 344 | ... ${dst['pass']} ${dst['container_type']} ${dst['container_name']} |
| 345 | Delete IP Addresses from Interface on Remote Host ${src['dp_iface_name']} ${src['ip']} |
| 346 | ... ${src['user']} ${src['pass']} ${src['container_type']} ${src['container_name']} |
| 347 | Run Keyword If '${dst['ip']}' != '${None}' Delete Interface on Remote Host |
| 348 | ... ${dst['dp_iface_name']}.${src['s_tag']} ${dst['ip']} ${dst['user']} ${dst['pass']} |
| 349 | ... ${dst['container_type']} ${dst['container_name']} |
| 350 | END |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 351 | |
| 352 | Should Be Larger Than |
| 353 | [Documentation] Verify that value_1 is > value_2 |
| 354 | [Arguments] ${value_1} ${value_2} |
| 355 | Run Keyword If ${value_1} <= ${value_2} |
| 356 | ... Fail The value ${value_1} is not larger than ${value_2} |
| 357 | |
| 358 | Should Be Float |
| 359 | [Documentation] Verify that value is a floating point number type |
| 360 | [Arguments] ${value} |
| 361 | ${type} Evaluate type(${value}).__name__ |
| 362 | Should Be Equal ${type} float |
| 363 | |
| 364 | Get Current Time |
| 365 | [Documentation] Return the current time in RFC3339 format |
| 366 | ${output}= Run date -u +"%FT%T%:z" |
| 367 | [return] ${output} |