blob: fe0fe974a14e342a70b8294dde4cb4f6157f6912 [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
garciadeblas4cf45d72021-04-08 13:52:22 +020024Force Tags basic_13 cluster_ee_config cluster_relations daily regression
25
garciadeblasd225e552020-10-02 16:10:14 +000026Suite Teardown Run Keyword And Ignore Error Suite Cleanup
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020027
28
29*** Variables ***
almagiab4697d32021-05-25 08:56:17 +020030# NS and VNF descriptor package folder and ids
31${vnfd_pkg1} charm-packages/ns_relations_provides_vnf
32${vnfd_pkg2} charm-packages/ns_relations_requires_vnf
33${vnfd_name1} ns_relations_provides-vnf
34${vnfd_name2} ns_relations_requires-vnf
35${nsd_pkg} charm-packages/ns_relations_ns
36${nsd_name} ns_relations-ns
37
38# NS instance name and configuration
39${ns_name} basic_13_ns_relations_test
40${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] }
41${ns_timeout} 15min
42
43# SSH keys and username to be used
44${publickey} %{HOME}/.ssh/id_rsa.pub
45${privatekey} %{HOME}/.ssh/id_rsa
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020046${username} ubuntu
47${password} ${EMPTY}
almagiab4697d32021-05-25 08:56:17 +020048
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020049${action_name} touch
50${vnf_member_index_1} 1
51${vnf_member_index_2} 2
52${day_1_file_name} /home/ubuntu/first-touch
53${day_2_file_name_1} /home/ubuntu/mytouch1
54${day_2_file_name_2} /home/ubuntu/mytouch2
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020055
56
57*** Test Cases ***
58Create Charm VNF Descriptor Provides
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020059
60 Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg1}'
61
62
63Create Charm VNF Descriptor Requires
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020064
65 Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg2}'
66
67
68Create Charm NS Descriptor
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020069
70 Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}'
71
72
73Instantiate Charm Network Service
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020074
75 ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey} ${ns_timeout}
76 Set Suite Variable ${ns_id} ${id}
77
78
79# TODO Check juju status for relations
80
81
82Delete NS Instance
garciadeblas4cf45d72021-04-08 13:52:22 +020083 [Tags] cleanup
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020084
85 Delete NS ${ns_name}
86
87
88Delete NS Descriptor
garciadeblas4cf45d72021-04-08 13:52:22 +020089 [Tags] cleanup
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020090
91 Delete NSD ${nsd_name}
92
93
94Delete VNF Descriptor Provides
garciadeblas4cf45d72021-04-08 13:52:22 +020095 [Tags] cleanup
Dominik Fleischmannb72faf32020-07-23 12:25:20 +020096
97 Delete VNFD ${vnfd_name1}
98
99
100Delete VNF Descriptor Requires
garciadeblas4cf45d72021-04-08 13:52:22 +0200101 [Tags] cleanup
Dominik Fleischmannb72faf32020-07-23 12:25:20 +0200102
103 Delete VNFD ${vnfd_name2}
104
105
106*** Keywords ***
garciadeblasd225e552020-10-02 16:10:14 +0000107Suite Cleanup
Dominik Fleischmannb72faf32020-07-23 12:25:20 +0200108 [Documentation] Test Suite Cleanup: Deleting descriptors and NS instance
109
garciadeblasd225e552020-10-02 16:10:14 +0000110 Run Keyword If Any Tests Failed Delete NS ${ns_name}
Dominik Fleischmannb72faf32020-07-23 12:25:20 +0200111
garciadeblasd225e552020-10-02 16:10:14 +0000112 Run Keyword If Any Tests Failed Delete NSD ${nsd_name}
Dominik Fleischmannb72faf32020-07-23 12:25:20 +0200113
garciadeblasd225e552020-10-02 16:10:14 +0000114 Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name}
Dominik Fleischmannb72faf32020-07-23 12:25:20 +0200115