blob: 04c0cff3e24e7704c09b1a4d7984a089e05cf0cf [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
23Resource %{ROBOT_DEVOPS_FOLDER}/lib/juju_lib.robot
24
25Variables %{ROBOT_DEVOPS_FOLDER}/resources/basic_13-ns_relations.py
26
27Suite Teardown Run Keyword And Ignore Error Test Cleanup
28
29
30*** Variables ***
31${username} ubuntu
32${password} ${EMPTY}
33${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] }
34${action_name} touch
35${vnf_member_index_1} 1
36${vnf_member_index_2} 2
37${day_1_file_name} /home/ubuntu/first-touch
38${day_2_file_name_1} /home/ubuntu/mytouch1
39${day_2_file_name_2} /home/ubuntu/mytouch2
40${ns_timeout} 15min
41
42
43*** Test Cases ***
44Create Charm VNF Descriptor Provides
45 [Tags] ns_relations charm sanity regression
46
47 Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg1}'
48
49
50Create Charm VNF Descriptor Requires
51 [Tags] ns_relations charm sanity regression
52
53 Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg2}'
54
55
56Create Charm NS Descriptor
57 [Tags] ns_relations charm sanity regression
58
59 Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}'
60
61
62Instantiate Charm Network Service
63 [Tags] ns_relations charm sanity regression
64
65 ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey} ${ns_timeout}
66 Set Suite Variable ${ns_id} ${id}
67
68
69# TODO Check juju status for relations
70
71
72Delete NS Instance
73 [Tags] ns_relations charm sanity regression cleanup
74
75 Delete NS ${ns_name}
76
77
78Delete NS Descriptor
79 [Tags] ns_relations charm sanity regression cleanup
80
81 Delete NSD ${nsd_name}
82
83
84Delete VNF Descriptor Provides
85 [Tags] ns_relations charm sanity regression cleanup
86
87 Delete VNFD ${vnfd_name1}
88
89
90Delete VNF Descriptor Requires
91 [Tags] ns_relations charm sanity regression cleanup
92
93 Delete VNFD ${vnfd_name2}
94
95
96*** Keywords ***
97Test Cleanup
98 [Documentation] Test Suite Cleanup: Deleting descriptors and NS instance
99
100 Run Keyword If Test Failed Delete NS ${ns_name}
101
102 Run Keyword If Test Failed Delete NSD ${nsd_name}
103
104 Run Keyword If Test Failed Delete VNFD ${vnfd_name}
105