blob: 50f0851096265507ef07dc8bdda7a13843e6740f [file] [log] [blame]
Dominik Fleischmannb72faf32020-07-23 12:25:20 +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 [BASIC-13] NS Relations
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
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020023
24Variables %{ROBOT_DEVOPS_FOLDER}/resources/basic_13-ns_relations.py
25
garciadeblas4cf45d72021-04-08 13:52:22 +020026Force Tags basic_13 cluster_ee_config cluster_relations daily regression
27
garciadeblasd225e552020-10-02 16:10:14 +000028Suite Teardown Run Keyword And Ignore Error Suite Cleanup
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020029
30
31*** Variables ***
32${username} ubuntu
33${password} ${EMPTY}
34${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] }
35${action_name} touch
36${vnf_member_index_1} 1
37${vnf_member_index_2} 2
38${day_1_file_name} /home/ubuntu/first-touch
39${day_2_file_name_1} /home/ubuntu/mytouch1
40${day_2_file_name_2} /home/ubuntu/mytouch2
41${ns_timeout} 15min
42
43
44*** Test Cases ***
45Create Charm VNF Descriptor Provides
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020046
47 Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg1}'
48
49
50Create Charm VNF Descriptor Requires
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020051
52 Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg2}'
53
54
55Create Charm NS Descriptor
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020056
57 Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}'
58
59
60Instantiate Charm Network Service
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020061
62 ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey} ${ns_timeout}
63 Set Suite Variable ${ns_id} ${id}
64
65
66# TODO Check juju status for relations
67
68
69Delete NS Instance
garciadeblas4cf45d72021-04-08 13:52:22 +020070 [Tags] cleanup
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020071
72 Delete NS ${ns_name}
73
74
75Delete NS Descriptor
garciadeblas4cf45d72021-04-08 13:52:22 +020076 [Tags] cleanup
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020077
78 Delete NSD ${nsd_name}
79
80
81Delete VNF Descriptor Provides
garciadeblas4cf45d72021-04-08 13:52:22 +020082 [Tags] cleanup
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020083
84 Delete VNFD ${vnfd_name1}
85
86
87Delete VNF Descriptor Requires
garciadeblas4cf45d72021-04-08 13:52:22 +020088 [Tags] cleanup
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020089
90 Delete VNFD ${vnfd_name2}
91
92
93*** Keywords ***
garciadeblasd225e552020-10-02 16:10:14 +000094Suite Cleanup
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020095 [Documentation] Test Suite Cleanup: Deleting descriptors and NS instance
96
garciadeblasd225e552020-10-02 16:10:14 +000097 Run Keyword If Any Tests Failed Delete NS ${ns_name}
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020098
garciadeblasd225e552020-10-02 16:10:14 +000099 Run Keyword If Any Tests Failed Delete NSD ${nsd_name}
Dominik Fleischmannb72faf32020-07-23 12:25:20 +0200100
garciadeblasd225e552020-10-02 16:10:14 +0000101 Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name}
Dominik Fleischmannb72faf32020-07-23 12:25:20 +0200102