Updated VNF member identifier
[osm/tests.git] / robot-systest / testsuite / basic_13-ns_relations.robot
1 #   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 ***
14 Documentation     [BASIC-13] NS Relations
15
16 Library   OperatingSystem
17 Library   SSHLibrary
18
19 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot
20 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot
21 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot
22 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot
23
24 Force Tags   basic_13    cluster_ee_config   cluster_relations   daily   regression
25
26 Suite Teardown   Run Keyword And Ignore Error   Suite Cleanup
27
28
29 *** Variables ***
30 # 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
46 ${username}   ubuntu
47 ${password}   ${EMPTY}
48
49 ${action_name}   touch
50 ${vnf_member_index_1}   vnf1
51 ${vnf_member_index_2}   vnf2
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
55
56
57 *** Test Cases ***
58 Create Charm VNF Descriptor Provides
59
60     Create VNFD  '%{PACKAGES_FOLDER}/${vnfd_pkg1}'
61
62
63 Create Charm VNF Descriptor Requires
64
65     Create VNFD  '%{PACKAGES_FOLDER}/${vnfd_pkg2}'
66
67
68 Create Charm NS Descriptor
69
70     Create NSD  '%{PACKAGES_FOLDER}/${nsd_pkg}'
71
72
73 Instantiate Charm Network Service
74
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
82 Delete NS Instance
83     [Tags]   cleanup
84
85     Delete NS  ${ns_name}
86
87
88 Delete NS Descriptor
89     [Tags]   cleanup
90
91     Delete NSD  ${nsd_name}
92
93
94 Delete VNF Descriptor Provides
95     [Tags]   cleanup
96
97     Delete VNFD  ${vnfd_name1}
98
99
100 Delete VNF Descriptor Requires
101     [Tags]   cleanup
102
103     Delete VNFD  ${vnfd_name2}
104
105
106 *** Keywords ***
107 Suite Cleanup
108     [Documentation]  Test Suite Cleanup: Deleting descriptors and NS instance
109
110     Run Keyword If Any Tests Failed  Delete NS  ${ns_name}
111
112     Run Keyword If Any Tests Failed  Delete NSD  ${nsd_name}
113
114     Run Keyword If Any Tests Failed  Delete VNFD  ${vnfd_name}
115