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. |
| 14 | |
| 15 | # robot test functions |
| 16 | |
| 17 | *** Settings *** |
| 18 | Documentation Library for various utilities |
| 19 | Library SSHLibrary |
| 20 | Library HttpLibrary.HTTP |
| 21 | Library String |
| 22 | Library DateTime |
| 23 | Library Process |
| 24 | Library Collections |
| 25 | Library RequestsLibrary |
| 26 | Library OperatingSystem |
| 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 |
Kailash | 1a871bf | 2019-08-05 14:20:02 -0700 | [diff] [blame] | 32 | ${voltctl_rc}= Run And Return RC ${VOLTCTL_CONFIG}; voltctl device list |
| 33 | ${kubectl_rc}= Run And Return RC ${KUBECTL_CONFIG}; 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 |
| 38 | [Documentation] Send the content of the file to Onos to selected section of configuration using Post Request |
| 39 | [Arguments] ${CONFIG_FILE} ${section} |
| 40 | ${Headers}= Create Dictionary Content-Type application/json |
| 41 | ${File_Data}= Get Binary File ${CONFIG_FILE} |
| 42 | Log ${Headers} |
| 43 | Log ${File_Data} |
| 44 | ${resp}= Post Request ONOS /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 |
| 50 | Run Keyword If ${external_libs} Import Library |
Andy Bavier | a269175 | 2019-11-27 12:18:38 -0700 | [diff] [blame] | 51 | ... ${CURDIR}/../../voltha/tests/atests/common/testCaseUtils.py |
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/Subscriber.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/OLT.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/DHCP.robot |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 58 | Run Keyword If ${external_libs} Import Resource |
Andy Bavier | a269175 | 2019-11-27 12:18:38 -0700 | [diff] [blame] | 59 | ... ${CURDIR}/../../cord-tester/src/test/cord-api/Framework/Kubernetes.robot |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 60 | Set Global Variable ${KUBECTL_CONFIG} export KUBECONFIG=%{KUBECONFIG} |
| 61 | Set Global Variable ${VOLTCTL_CONFIG} export VOLTCONFIG=%{VOLTCONFIG} |
Andy Bavier | a269175 | 2019-11-27 12:18:38 -0700 | [diff] [blame] | 62 | Set Global Variable ${export_kubeconfig} export KUBECONFIG=%{KUBECONFIG} |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 63 | ${k8s_node_ip}= Evaluate ${nodes}[0].get("ip") |
| 64 | ${k8s_node_user}= Evaluate ${nodes}[0].get("user") |
| 65 | ${k8s_node_pass}= Evaluate ${nodes}[0].get("pass") |
| 66 | Check CLI Tools Configured |
| 67 | ${onos_auth}= Create List karaf karaf |
| 68 | ${HEADERS} Create Dictionary Content-Type=application/json |
| 69 | Create Session ONOS http://${k8s_node_ip}:${ONOS_REST_PORT} auth=${ONOS_AUTH} |
| 70 | ${olt_ip}= Evaluate ${olts}[0].get("ip") |
| 71 | ${olt_user}= Evaluate ${olts}[0].get("user") |
| 72 | ${olt_pass}= Evaluate ${olts}[0].get("pass") |
| 73 | ${olt_serial_number}= Evaluate ${olts}[0].get("serial") |
| 74 | ${num_onus}= Get Length ${hosts.src} |
| 75 | ${num_onus}= Convert to String ${num_onus} |
| 76 | #send sadis file to onos |
Andy Bavier | a269175 | 2019-11-27 12:18:38 -0700 | [diff] [blame] | 77 | ${sadis_file}= Get Variable Value ${sadis.file} |
Andy Bavier | 88cd9f6 | 2019-11-26 16:22:33 -0700 | [diff] [blame] | 78 | Log To Console \nSadis File:${sadis_file} |
| 79 | Run Keyword Unless '${sadis_file}' is '${None}' Send File To Onos ${sadis_file} apps/ |
| 80 | Set Suite Variable ${num_onus} |
| 81 | Set Suite Variable ${olt_serial_number} |
| 82 | Set Suite Variable ${olt_ip} |
| 83 | Set Suite Variable ${olt_user} |
| 84 | Set Suite Variable ${olt_pass} |
| 85 | Set Suite Variable ${k8s_node_ip} |
| 86 | Set Suite Variable ${k8s_node_user} |
| 87 | Set Suite Variable ${k8s_node_pass} |
| 88 | @{container_list}= Create List adapter-open-olt adapter-open-onu voltha-api-server |
| 89 | ... voltha-ro-core voltha-rw-core-11 voltha-rw-core-12 voltha-ofagent |
| 90 | Set Suite Variable ${container_list} |
| 91 | ${datetime}= Get Current Date |
suraj gour | 7f6d5fe | 2019-11-29 10:56:35 +0000 | [diff] [blame] | 92 | Set Suite Variable ${datetime} |
| 93 | |
| 94 | WPA Reassociate |
| 95 | [Arguments] ${iface} ${ip} ${user} ${pass}=${None} ${container_type}=${None} ${container_name}=${None} |
| 96 | [Documentation] Executes a particular wpa_cli reassociate, which performs force reassociation |
| 97 | #Below for loops are used instead of sleep time, to execute reassociate command and check status |
| 98 | : FOR ${i} IN RANGE 70 |
| 99 | \ ${output}= Login And Run Command On Remote System wpa_cli -i ${iface} reassociate ${ip} ${user} |
| 100 | ... ${pass} ${container_type} ${container_name} |
| 101 | \ ${passed}= Run Keyword And Return Status Should Contain ${output} OK |
| 102 | \ Run Keyword If ${passed} Exit For Loop |
| 103 | : FOR ${i} IN RANGE 70 |
| 104 | \ ${output}= Login And Run Command On Remote System wpa_cli status | grep SUCCESS ${ip} ${user} |
| 105 | ... ${pass} ${container_type} ${container_name} |
| 106 | \ ${passed}= Run Keyword And Return Status Should Contain ${output} SUCCESS |
| 107 | \ Run Keyword If ${passed} Exit For Loop |
| 108 | |
| 109 | Validate Authentication After Reassociate |
| 110 | [Arguments] ${auth_pass} ${iface} ${ip} ${user} ${pass}=${None} ${container_type}=${None} ${container_name}=${None} |
| 111 | [Documentation] Executes a particular reassociate request on the RG using wpa_cli. auth_pass determines if authentication should pass |
| 112 | WPA Reassociate ${iface} ${ip} ${user} ${pass} ${container_type} ${container_name} |
| 113 | Run Keyword If '${auth_pass}' == 'True' Wait Until Keyword Succeeds ${timeout} 2s Check Remote File Contents |
| 114 | ... True /tmp/wpa.log authentication completed successfully ${ip} ${user} ${pass} |
| 115 | ... ${container_type} ${container_name} |
| 116 | Run Keyword If '${auth_pass}' == 'False' Sleep 20s |
| 117 | Run Keyword If '${auth_pass}' == 'False' Check Remote File Contents False /tmp/wpa.log |
| 118 | ... authentication completed successfully ${ip} ${user} ${pass} ${container_type} ${container_name} |
suraj gour | d5cfdbb | 2019-12-13 12:44:55 +0000 | [diff] [blame] | 119 | |
| 120 | Send Dhclient Request To Release Assigned IP |
| 121 | [Arguments] ${iface} ${ip} ${user} ${path_dhcpleasefile} ${pass}=${None} ${container_type}=${None} |
| 122 | ... ${container_name}=${None} |
| 123 | [Documentation] Executes a dhclient with option to release ip against a particular interface on the RG (src) |
| 124 | ${result}= Login And Run Command On Remote System dhclient -nw -r ${iface} && rm ${path_dhcpleasefile}/dhclient.* ${ip} ${user} |
| 125 | ... ${pass} ${container_type} ${container_name} |
| 126 | Log ${result} |
| 127 | #Should Contain ${result} DHCPRELEASE |
| 128 | [Return] ${result} |
suraj gour | 1ecfae9 | 2019-12-20 15:11:40 +0000 | [diff] [blame] | 129 | |
| 130 | Check Remote File Contents For WPA Logs |
| 131 | [Arguments] ${file_should_exist} ${file} ${pattern} ${ip} ${user} ${pass}=${None} ${container_type}=${None} |
| 132 | ... ${container_name}=${None} ${prompt}=~$ |
| 133 | [Documentation] Checks for particular pattern count in a file |
| 134 | ${result}= Login And Run Command On Remote System cat ${file} | grep '${pattern}' | wc -l ${ip} ${user} ${pass} |
| 135 | ... ${container_type} ${container_name} ${prompt} |
| 136 | [Return] ${result} |