blob: 5be48001138e6ef64b0bf347982f601998dd5b11 [file] [log] [blame]
calvinosanc19b272c52020-07-03 17:28:12 +02001# Copyright 2020 Canonical Ltd.
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*** Settings ***
16Library OperatingSystem
17Library String
18Library Collections
19Library Process
20Library SSHLibrary
21Library %{ROBOT_DEVOPS_FOLDER}/lib/renderTemplate.py
22
23Resource %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot
24Resource %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot
25Resource %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot
26Resource %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot
27
28Variables %{ROBOT_DEVOPS_FOLDER}/resources/k8s_01-create_k8s_cluster_data.py
29
30Suite Teardown Run Keyword And Ignore Error Test Cleanup
31
32
33*** Variables ***
34${username} ubuntu
35${password} ${EMPTY}
36
37
38*** Test Cases ***
39Render a template
calvinosanc106147e92020-07-17 18:36:35 +020040 [Tags] newK8sCluster regression
calvinosanc19b272c52020-07-03 17:28:12 +020041
42 ${stdout}= Render template %{ROBOT_DEVOPS_FOLDER}/resources/${template} %{ROBOT_DEVOPS_FOLDER}/resources/${config_file} IP_VM1=%{IP_VM1} IP_VM2=%{IP_VM2} IP_VM3=%{IP_VM3} IP_VM4=%{IP_VM4} IP_JUJU=%{IP_JUJU} NETWORK=%{VIM_MGMT_NET}
43 Log To Console \n${stdout}
44
45Create Controller VNF Descriptor
calvinosanc106147e92020-07-17 18:36:35 +020046 [Tags] newK8sCluster regression
calvinosanc19b272c52020-07-03 17:28:12 +020047
48 Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg1}'
49
50Create Machines VNF Descriptor
calvinosanc106147e92020-07-17 18:36:35 +020051 [Tags] newK8sCluster regression
calvinosanc19b272c52020-07-03 17:28:12 +020052
53 Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg2}'
54
55Create K8s Cluster NS Descriptor
calvinosanc106147e92020-07-17 18:36:35 +020056 [Tags] newK8sCluster regression
calvinosanc19b272c52020-07-03 17:28:12 +020057
58 Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}'
59
60Instantiate K8s Cluster Network Service
calvinosanc106147e92020-07-17 18:36:35 +020061 [Tags] newK8sCluster regression
calvinosanc19b272c52020-07-03 17:28:12 +020062
63 ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ns_config=${EMPTY} publickey=${publickey} ns_launch_max_wait_time=70min config_file=%{ROBOT_DEVOPS_FOLDER}/resources/${config_file}
64 Set Suite Variable ${ns_id} ${id}
65
66Get Management Ip Addresses
calvinosanc106147e92020-07-17 18:36:35 +020067 [Tags] newK8sCluster regression
calvinosanc19b272c52020-07-03 17:28:12 +020068
69 ${ip_addr_1} Get Vnf Management Ip Address ${ns_id} ${vnf_member_index_1}
70 log ${ip_addr_1}
71 Set Suite Variable ${vnf_1_ip_addr} ${ip_addr_1}
72 ${ip_addr_2} Get Vnf Management Ip Address ${ns_id} ${vnf_member_index_2}
73 log ${ip_addr_2}
74 Set Suite Variable ${vnf_2_ip_addr} ${ip_addr_2}
75 ${ip_addr_3} Get Vnf Management Ip Address ${ns_id} ${vnf_member_index_3}
76 log ${ip_addr_3}
77 Set Suite Variable ${vnf_3_ip_addr} ${ip_addr_3}
78 ${ip_addr_4} Get Vnf Management Ip Address ${ns_id} ${vnf_member_index_4}
79 log ${ip_addr_4}
80 Set Suite Variable ${vnf_4_ip_addr} ${ip_addr_4}
81 ${ip_addr_5} Get Vnf Management Ip Address ${ns_id} ${vnf_member_index_5}
82 log ${ip_addr_5}
83 Set Suite Variable ${vnf_5_ip_addr} ${ip_addr_5}
84
85Test SSH Access
calvinosanc106147e92020-07-17 18:36:35 +020086 [Tags] newK8sCluster regression
calvinosanc19b272c52020-07-03 17:28:12 +020087
88 Variable Should Exist ${vnf_1_ip_addr} msg=IP address of the management VNF '${vnf_member_index_1}' is not available
89 Variable Should Exist ${vnf_2_ip_addr} msg=IP address of the management VNF '${vnf_member_index_2}' is not available
90 Variable Should Exist ${vnf_3_ip_addr} msg=IP address of the management VNF '${vnf_member_index_3}' is not available
91 Variable Should Exist ${vnf_4_ip_addr} msg=IP address of the management VNF '${vnf_member_index_4}' is not available
92 Variable Should Exist ${vnf_5_ip_addr} msg=IP address of the management VNF '${vnf_member_index_5}' is not available
93 Sleep 30s Waiting ssh daemon to be up
94 Test SSH Connection ${vnf_1_ip_addr} ${username} ${password} ${privatekey}
95 Test SSH Connection ${vnf_2_ip_addr} ${username} ${password} ${privatekey}
96 Test SSH Connection ${vnf_3_ip_addr} ${username} ${password} ${privatekey}
97 Test SSH Connection ${vnf_4_ip_addr} ${username} ${password} ${privatekey}
98 Test SSH Connection ${vnf_5_ip_addr} ${username} ${password} ${privatekey}
99
100Check kubeconfig file
calvinosanc106147e92020-07-17 18:36:35 +0200101 [Tags] newK8sCluster regression
calvinosanc19b272c52020-07-03 17:28:12 +0200102
103 Check If remote File Exists ${vnf_5_ip_addr} ${username} ${password} ${privatekey} ${kubeconfig_file}
104
105Delete NS Instance
calvinosanc106147e92020-07-17 18:36:35 +0200106 [Tags] newK8sCluster regression cleanup
calvinosanc19b272c52020-07-03 17:28:12 +0200107
108 Delete NS ${ns_name}
109
110
111Delete NS Descriptor
calvinosanc106147e92020-07-17 18:36:35 +0200112 [Tags] newK8sCluster regression cleanup
calvinosanc19b272c52020-07-03 17:28:12 +0200113
114 Delete NSD ${nsd_name}
115
116
117Delete Controller VNF Descriptor
calvinosanc106147e92020-07-17 18:36:35 +0200118 [Tags] newK8sCluster regression cleanup
calvinosanc19b272c52020-07-03 17:28:12 +0200119
120 Delete VNFD ${vnfd_name1}
121
122Delete Machines VNF Descriptor
calvinosanc106147e92020-07-17 18:36:35 +0200123 [Tags] newK8sCluster regression cleanup
calvinosanc19b272c52020-07-03 17:28:12 +0200124
125 Delete VNFD ${vnfd_name2}
126
127
128*** Keywords ***
129Test Cleanup
130 [Documentation] Test Suite Cleanup: Deleting descriptors and NS instance
131
132 Run Keyword If Test Failed Delete NS ${ns_name}
calvinosanc19b272c52020-07-03 17:28:12 +0200133 Run Keyword If Test Failed Delete NSD ${nsd_name}
calvinosanc19b272c52020-07-03 17:28:12 +0200134 Run Keyword If Test Failed Delete VNFD ${vnfd_name}