Add robot test basic22 for feature 10887
[osm/tests.git] / robot-systest / testsuite / basic_22-cross_model_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-22] Cross-model 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 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/k8scluster_lib.robot
24
25 Variables    %{ROBOT_DEVOPS_FOLDER}/resources/basic_22-cross_model_relations.py
26
27 Force Tags    basic_22    cluster_ee_config    cluster_relations    daily    regression
28
29 Suite Teardown    Run Keyword And Ignore Error    Suite Cleanup
30
31
32 *** Variables ***
33 # K8s cluster name and version
34 ${k8scluster_name}   k8sbasic_22
35 ${k8scluster_version}   v1
36 ${username}       ubuntu
37 ${password}       ${EMPTY}
38 ${ns_config}      {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] }
39 ${action_name}    touch
40 ${ns_timeout}     15min
41
42
43 *** Test Cases ***
44 Create Charm VNF Descriptor 1
45
46     Create VNFD    '%{PACKAGES_FOLDER}/${vnfd_pkg_1}'
47
48 Create Charm VNF Descriptor 2
49
50     Create VNFD    '%{PACKAGES_FOLDER}/${vnfd_pkg_2}'
51
52 Create Charm NS Descriptor
53
54     Create NSD    '%{PACKAGES_FOLDER}/${nsd_pkg}'
55
56 Add K8s Cluster To OSM
57     Create K8s Cluster  %{K8S_CREDENTIALS}  ${k8scluster_version}  %{VIM_TARGET}  %{VIM_MGMT_NET}  ${k8scluster_name}
58
59 Instantiate Charm Network Service
60
61     ${id}=                Create Network Service    ${nsd_name}    %{VIM_TARGET}    ${ns_name}    ${ns_config}    ${publickey}    ${ns_timeout}
62     Set Suite Variable    ${ns_id}                  ${id}
63
64
65 # TODO Check juju status for relations
66
67
68 Delete NS Instance
69     [Tags]    cleanup
70
71     Delete NS    ${ns_name}
72
73 Remove K8s Cluster from OSM
74     [Tags]   cleanup
75     Delete K8s Cluster  ${k8scluster_name}
76
77 Delete NS Descriptor
78     [Tags]    cleanup
79
80     Delete NSD    ${nsd_name}
81
82
83 Delete VNF Descriptor 1
84     [Tags]    cleanup
85
86     Delete VNFD    ${vnfd_name_1}
87
88 Delete VNF Descriptor 2
89     [Tags]    cleanup
90
91     Delete VNFD    ${vnfd_name_2}
92
93
94 *** Keywords ***
95 Suite Cleanup
96     [Documentation]    Test Suite Cleanup: Deleting descriptors and NS instance
97
98     Run Keyword If Any Tests Failed    Delete NS    ${ns_name}
99
100     Run Keyword If Any Tests Failed    Delete NSD    ${nsd_name}
101
102     Run Keyword If Any Tests Failed    Delete VNFD 1    ${vnfd_name_1}
103
104     Run Keyword If Any Tests Failed    Delete VNFD 2    ${vnfd_name_2}
105