blob: a4ad0f4490af00a3ef3a1d417ccfee2a42145828 [file] [log] [blame]
Kailash92764922019-07-25 08:21:39 -07001# 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.
Kailash92764922019-07-25 08:21:39 -070014# robot test functions
15
16*** Settings ***
17Documentation Library for various utilities
18Library SSHLibrary
Kailash92764922019-07-25 08:21:39 -070019Library String
20Library DateTime
21Library Process
22Library Collections
23Library RequestsLibrary
24Library OperatingSystem
25
26*** Keywords ***
Kailash528f7c02019-07-31 10:55:49 -070027Check 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 Williamsa8fe75a2020-01-10 14:25:27 -070030 ${voltctl_rc}= Run And Return RC voltctl device list
31 ${kubectl_rc}= Run And Return RC kubectl get pods
Gilles Depatie675a2062019-10-22 12:44:42 -040032 Run Keyword If ${voltctl_rc} != 0 or ${kubectl_rc} != 0 FATAL ERROR
33 ... VOLTCTL and KUBECTL not configured. Please configure before executing tests.
Gilles Depatieb5682f82019-10-31 10:39:45 -040034
35Send File To Onos
Zack Williamsa8fe75a2020-01-10 14:25:27 -070036 [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 Bavier88cd9f62019-11-26 16:22:33 -070046
47Common Test Suite Setup
48 [Documentation] Setup the test suite
49 # BBSim sanity test doesn't need these imports from other repositories
Andy Bavier88cd9f62019-11-26 16:22:33 -070050 Run Keyword If ${external_libs} Import Resource
Andy Baviera2691752019-11-27 12:18:38 -070051 ... ${CURDIR}/../../cord-tester/src/test/cord-api/Framework/Subscriber.robot
Andy Bavier88cd9f62019-11-26 16:22:33 -070052 Run Keyword If ${external_libs} Import Resource
Andy Baviera2691752019-11-27 12:18:38 -070053 ... ${CURDIR}/../../cord-tester/src/test/cord-api/Framework/OLT.robot
Andy Bavier88cd9f62019-11-26 16:22:33 -070054 Run Keyword If ${external_libs} Import Resource
Andy Baviera2691752019-11-27 12:18:38 -070055 ... ${CURDIR}/../../cord-tester/src/test/cord-api/Framework/DHCP.robot
Andy Bavier88cd9f62019-11-26 16:22:33 -070056 Run Keyword If ${external_libs} Import Resource
Andy Baviera2691752019-11-27 12:18:38 -070057 ... ${CURDIR}/../../cord-tester/src/test/cord-api/Framework/Kubernetes.robot
Andy Bavier88cd9f62019-11-26 16:22:33 -070058 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 Baviera2691752019-11-27 12:18:38 -070074 ${sadis_file}= Get Variable Value ${sadis.file}
Zack Williamsa8fe75a2020-01-10 14:25:27 -070075 Log To Console \nSadis File:${sadis_file}
Andy Bavier88cd9f62019-11-26 16:22:33 -070076 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 gour7f6d5fe2019-11-29 10:56:35 +000089 Set Suite Variable ${datetime}
90
91WPA Reassociate
suraj gour7f6d5fe2019-11-29 10:56:35 +000092 [Documentation] Executes a particular wpa_cli reassociate, which performs force reassociation
Zack Williamsa8fe75a2020-01-10 14:25:27 -070093 [Arguments] ${iface} ${ip} ${user} ${pass}=${None}
94 ... ${container_type}=${None} ${container_name}=${None}
suraj gour7f6d5fe2019-11-29 10:56:35 +000095 #Below for loops are used instead of sleep time, to execute reassociate command and check status
Zack Williamsa8fe75a2020-01-10 14:25:27 -070096 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 gour7f6d5fe2019-11-29 10:56:35 +0000111Validate Authentication After Reassociate
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700112 [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 gour7f6d5fe2019-11-29 10:56:35 +0000117 WPA Reassociate ${iface} ${ip} ${user} ${pass} ${container_type} ${container_name}
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700118 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 gour7f6d5fe2019-11-29 10:56:35 +0000121 Run Keyword If '${auth_pass}' == 'False' Sleep 20s
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700122 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 gourd5cfdbb2019-12-13 12:44:55 +0000125
126Send Dhclient Request To Release Assigned IP
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700127 [Arguments] ${iface} ${ip} ${user} ${path_dhcpleasefile} ${pass}=${None}
128 ... ${container_type}=${None} ${container_name}=${None}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000129 [Documentation] Executes a dhclient with option to release ip against a particular interface on the RG (src)
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700130 ${result}= Login And Run Command On Remote System
131 ... dhclient -nw -r ${iface} && rm ${path_dhcpleasefile}/dhclient.* ${ip} ${user}
suraj gourd5cfdbb2019-12-13 12:44:55 +0000132 ... ${pass} ${container_type} ${container_name}
133 Log ${result}
134 #Should Contain ${result} DHCPRELEASE
135 [Return] ${result}
suraj gour1ecfae92019-12-20 15:11:40 +0000136
137Check Remote File Contents For WPA Logs
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700138 [Arguments] ${file_should_exist} ${file} ${pattern} ${ip} ${user} ${pass}=${None}
139 ... ${container_type}=${None} ${container_name}=${None} ${prompt}=~$
suraj gour1ecfae92019-12-20 15:11:40 +0000140 [Documentation] Checks for particular pattern count in a file
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700141 ${result}= Login And Run Command On Remote System
142 ... cat ${file} | grep '${pattern}' | wc -l ${ip} ${user} ${pass}
suraj gour1ecfae92019-12-20 15:11:40 +0000143 ... ${container_type} ${container_name} ${prompt}
144 [Return] ${result}