blob: 803ce9858dc0c77ae50d28c7957b3d8ca1cd1f4b [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.
14
15# robot test functions
16
17*** Settings ***
18Documentation Library for various utilities
19Library SSHLibrary
20Library HttpLibrary.HTTP
21Library String
22Library DateTime
23Library Process
24Library Collections
25Library RequestsLibrary
26Library OperatingSystem
27
28*** Keywords ***
Kailash528f7c02019-07-31 10:55:49 -070029Check CLI Tools Configured
30 [Documentation] Tests that use 'voltctl' and 'kubectl' should execute this keyword in suite setup
31 # check voltctl and kubectl configured
Kailash1a871bf2019-08-05 14:20:02 -070032 ${voltctl_rc}= Run And Return RC ${VOLTCTL_CONFIG}; voltctl device list
33 ${kubectl_rc}= Run And Return RC ${KUBECTL_CONFIG}; kubectl get pods
Gilles Depatie675a2062019-10-22 12:44:42 -040034 Run Keyword If ${voltctl_rc} != 0 or ${kubectl_rc} != 0 FATAL ERROR
35 ... VOLTCTL and KUBECTL not configured. Please configure before executing tests.
Gilles Depatieb5682f82019-10-31 10:39:45 -040036
37Send 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 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
50 Run Keyword If ${external_libs} Import Library
51 ... ${CURDIR}/../../../voltha/tests/atests/common/testCaseUtils.py
52 Run Keyword If ${external_libs} Import Resource
53 ... ${CURDIR}/../../../cord-tester/src/test/cord-api/Framework/Subscriber.robot
54 Run Keyword If ${external_libs} Import Resource
55 ... ${CURDIR}/../../../cord-tester/src/test/cord-api/Framework/OLT.robot
56 Run Keyword If ${external_libs} Import Resource
57 ... ${CURDIR}/../../../cord-tester/src/test/cord-api/Framework/DHCP.robot
58 Run Keyword If ${external_libs} Import Resource
59 ... ${CURDIR}/../../../cord-tester/src/test/cord-api/Framework/Kubernetes.robot
60 Set Global Variable ${KUBECTL_CONFIG} export KUBECONFIG=%{KUBECONFIG}
61 Set Global Variable ${VOLTCTL_CONFIG} export VOLTCONFIG=%{VOLTCONFIG}
62 ${k8s_node_ip}= Evaluate ${nodes}[0].get("ip")
63 ${k8s_node_user}= Evaluate ${nodes}[0].get("user")
64 ${k8s_node_pass}= Evaluate ${nodes}[0].get("pass")
65 Check CLI Tools Configured
66 ${onos_auth}= Create List karaf karaf
67 ${HEADERS} Create Dictionary Content-Type=application/json
68 Create Session ONOS http://${k8s_node_ip}:${ONOS_REST_PORT} auth=${ONOS_AUTH}
69 ${olt_ip}= Evaluate ${olts}[0].get("ip")
70 ${olt_user}= Evaluate ${olts}[0].get("user")
71 ${olt_pass}= Evaluate ${olts}[0].get("pass")
72 ${olt_serial_number}= Evaluate ${olts}[0].get("serial")
73 ${num_onus}= Get Length ${hosts.src}
74 ${num_onus}= Convert to String ${num_onus}
75 #send sadis file to onos
76 ${sadis_file}= Evaluate ${sadis}.get("file")
77 Log To Console \nSadis File:${sadis_file}
78 Run Keyword Unless '${sadis_file}' is '${None}' Send File To Onos ${sadis_file} apps/
79 Set Suite Variable ${num_onus}
80 Set Suite Variable ${olt_serial_number}
81 Set Suite Variable ${olt_ip}
82 Set Suite Variable ${olt_user}
83 Set Suite Variable ${olt_pass}
84 Set Suite Variable ${k8s_node_ip}
85 Set Suite Variable ${k8s_node_user}
86 Set Suite Variable ${k8s_node_pass}
87 @{container_list}= Create List adapter-open-olt adapter-open-onu voltha-api-server
88 ... voltha-ro-core voltha-rw-core-11 voltha-rw-core-12 voltha-ofagent
89 Set Suite Variable ${container_list}
90 ${datetime}= Get Current Date
91 Set Suite Variable ${datetime}