blob: 5ea838ab3c12454eaf1f91a13a3a25fb18fcc9de [file] [log] [blame]
Dominik Fleischmannb71f9fb2020-07-17 16:50:52 +02001# Licensed under the Apache License, Version 2.0 (the "License");
2# you may not use this file except in compliance with the License.
3# You may obtain a copy of the License at
4#
5# http://www.apache.org/licenses/LICENSE-2.0
6#
7# Unless required by applicable law or agreed to in writing, software
8# distributed under the License is distributed on an "AS IS" BASIS,
9# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10# See the License for the specific language governing permissions and
11# limitations under the License.
12
13*** Settings ***
14Documentation [K8s-05] K8s Proxy Charm.
15
16Library OperatingSystem
17Library SSHLibrary
18
19Resource %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot
20Resource %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot
21Resource %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot
22Resource %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot
23
garciadeblas4cf45d72021-04-08 13:52:22 +020024Force Tags k8s_05 cluster_ee_config cluster_k8s_charms daily regression
25
garciadeblasd225e552020-10-02 16:10:14 +000026Suite Teardown Run Keyword And Ignore Error Suite Cleanup
Dominik Fleischmannb71f9fb2020-07-17 16:50:52 +020027
28
29*** Variables ***
almagiab4697d32021-05-25 08:56:17 +020030# NS and VNF descriptor package folder and ids
31${vnfd_pkg} charm-packages/k8s_proxy_charm_vnf
32${vnfd_name} k8s_proxy_charm-vnf
33${nsd_pkg} charm-packages/k8s_proxy_charm_ns
34${nsd_name} k8s_proxy_charm-ns
35
36# NS instance name and configuration
37${ns_name} k8s_05-k8s_proxy_charm
38${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] }
39${ns_timeout} 15min
40
41# SSH keys and username to be used
42${publickey} %{HOME}/.ssh/id_rsa.pub
43${privatekey} %{HOME}/.ssh/id_rsa
Dominik Fleischmannb71f9fb2020-07-17 16:50:52 +020044${username} ubuntu
45${password} ${EMPTY}
almagiab4697d32021-05-25 08:56:17 +020046
Dominik Fleischmannb71f9fb2020-07-17 16:50:52 +020047${action_name} touch
48${vnf_member_index_1} 1
49${vnf_member_index_2} 2
50${day_1_file_name} /home/ubuntu/first-touch
51${day_2_file_name_1} /home/ubuntu/mytouch1
52${day_2_file_name_2} /home/ubuntu/mytouch2
Dominik Fleischmannb71f9fb2020-07-17 16:50:52 +020053
54
55*** Test Cases ***
56Create Charm VNF Descriptor
Dominik Fleischmannb71f9fb2020-07-17 16:50:52 +020057
58 Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}'
59
60
61Create Charm NS Descriptor
Dominik Fleischmannb71f9fb2020-07-17 16:50:52 +020062
63 Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}'
64
65
66Instantiate Charm Network Service
Dominik Fleischmannb71f9fb2020-07-17 16:50:52 +020067
68 ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey} ${ns_timeout}
69 Set Suite Variable ${ns_id} ${id}
70
71
72Get Management Ip Addresses
Dominik Fleischmannb71f9fb2020-07-17 16:50:52 +020073
74 ${ip_addr_1} Get Vnf Management Ip Address ${ns_id} ${vnf_member_index_1}
75 log ${ip_addr_1}
76 Set Suite Variable ${vnf_1_ip_addr} ${ip_addr_1}
77 ${ip_addr_2} Get Vnf Management Ip Address ${ns_id} ${vnf_member_index_2}
78 log ${ip_addr_2}
79 Set Suite Variable ${vnf_2_ip_addr} ${ip_addr_2}
80
81
82Test SSH Access
Dominik Fleischmannb71f9fb2020-07-17 16:50:52 +020083
84 Variable Should Exist ${vnf_1_ip_addr} msg=IP address of the management VNF '${vnf_member_index_1}' is not available
85 Variable Should Exist ${vnf_2_ip_addr} msg=IP address of the management VNF '${vnf_member_index_2}' is not available
86 Sleep 30s Waiting ssh daemon to be up
87 Test SSH Connection ${vnf_1_ip_addr} ${username} ${password} ${privatekey}
88 Test SSH Connection ${vnf_2_ip_addr} ${username} ${password} ${privatekey}
89
90
91Check Remote Files Created Via Day 1 Operations
92 [Documentation] The Charm VNF has a Day 1 operation that creates a file named ${day_1_file_name}.
93 ... This test checks whether that files have been created or not.
Dominik Fleischmannb71f9fb2020-07-17 16:50:52 +020094
95 Check If remote File Exists ${vnf_1_ip_addr} ${username} ${password} ${privatekey} ${day_1_file_name}
96 Check If remote File Exists ${vnf_2_ip_addr} ${username} ${password} ${privatekey} ${day_1_file_name}
97
98
99Execute Day 2 Operations
100 [Documentation] Performs one Day 2 operation per VNF that creates a new file.
Dominik Fleischmannb71f9fb2020-07-17 16:50:52 +0200101
102 Variable Should Exist ${ns_id} msg=Network service instance is not available
103 ${ns_op_id_1}= Execute NS Action ${ns_name} ${action_name} ${vnf_member_index_1} filename=${day_2_file_name_1}
104 ${ns_op_id_2}= Execute NS Action ${ns_name} ${action_name} ${vnf_member_index_2} filename=${day_2_file_name_2}
105
106
107Check Remote Files Created Via Day 2 Operations
108 [Documentation] Check whether the files created in the previous test via Day 2 operations exist or not.
Dominik Fleischmannb71f9fb2020-07-17 16:50:52 +0200109
110 Check If remote File Exists ${vnf_1_ip_addr} ${username} ${password} ${privatekey} ${day_2_file_name_1}
111 Check If remote File Exists ${vnf_2_ip_addr} ${username} ${password} ${privatekey} ${day_2_file_name_2}
112
113
114Delete NS Instance
garciadeblas4cf45d72021-04-08 13:52:22 +0200115 [Tags] cleanup
Dominik Fleischmannb71f9fb2020-07-17 16:50:52 +0200116
117 Delete NS ${ns_name}
118
119
120Delete NS Descriptor
garciadeblas4cf45d72021-04-08 13:52:22 +0200121 [Tags] cleanup
Dominik Fleischmannb71f9fb2020-07-17 16:50:52 +0200122
123 Delete NSD ${nsd_name}
124
125
126Delete VNF Descriptor
garciadeblas4cf45d72021-04-08 13:52:22 +0200127 [Tags] cleanup
Dominik Fleischmannb71f9fb2020-07-17 16:50:52 +0200128
129 Delete VNFD ${vnfd_name}
130
131
132*** Keywords ***
garciadeblasd225e552020-10-02 16:10:14 +0000133Suite Cleanup
Dominik Fleischmannb71f9fb2020-07-17 16:50:52 +0200134 [Documentation] Test Suite Cleanup: Deleting descriptors and NS instance
135
garciadeblasd225e552020-10-02 16:10:14 +0000136 Run Keyword If Any Tests Failed Delete NS ${ns_name}
Dominik Fleischmannb71f9fb2020-07-17 16:50:52 +0200137
garciadeblasd225e552020-10-02 16:10:14 +0000138 Run Keyword If Any Tests Failed Delete NSD ${nsd_name}
Dominik Fleischmannb71f9fb2020-07-17 16:50:52 +0200139
garciadeblasd225e552020-10-02 16:10:14 +0000140 Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name}
Dominik Fleischmannb71f9fb2020-07-17 16:50:52 +0200141