Added test [K8s-04] OpenLDAP
[osm/tests.git] / robot-systest / testsuite / k8s_04-openldap_helm.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 Library   OperatingSystem
15 Library   String
16 Library   Collections
17 Library   Process
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/connectivity_lib.robot
23 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot
24 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/k8scluster_lib.robot
25
26 Variables   %{ROBOT_DEVOPS_FOLDER}/resources/k8s_04-openldap_helm_data.py
27
28 Suite Teardown   Run Keyword And Ignore Error   Test Cleanup
29
30
31 *** Variables ***
32 ${ns_id}   ${EMPTY}
33 ${ns_config}   {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] }
34 ${publickey}   ${EMPTY}
35
36 *** Test Cases ***
37 Create Package For OpenLDAP CNF
38     [Tags]   openldap   sanity   regression
39     Create VNFD   '%{PACKAGES_FOLDER}/${vnfd_pkg}'
40
41 Create Package For OpenLDAP NS
42     [Tags]   openldap   sanity   regression
43     Create NSD   '%{PACKAGES_FOLDER}/${nsd_pkg}'
44
45 Add K8s Cluster To OSM
46     [Tags]   openldap k8scluster   sanity   regression
47     Create K8s Cluster  %{K8S_CREDENTIALS}  ${k8scluster_version}  %{VIM_TARGET}  %{VIM_MGMT_NET}  ${k8scluster_name}
48
49 Create Network Service Instance
50     [Tags]   openldap   sanity   regression
51     ${id}=   Create Network Service   ${nsd_name}   %{VIM_TARGET}   ${ns_name}   ${ns_config}  ${publickey}
52     Set Suite Variable   ${ns_id}   ${id}
53
54 Delete Network Service Instance
55     [Tags]   openldap   sanity   regression   cleanup
56     Delete NS   ${ns_name}
57
58 Remove K8s Cluster from OSM
59     [Tags]   openldap k8scluster   sanity   regression
60     Delete K8s Cluster  ${k8scluster_name}
61
62 Delete NS Descriptor Test
63     [Tags]   openldap   sanity   regression   cleanup
64     Delete NSD   ${nsd_name}
65
66 Delete VNF Descriptor Test
67     [Tags]   openldap   sanity   regression   cleanup
68     Delete VNFD   ${vnfd_name}
69
70
71 *** Keywords ***
72 Test Cleanup
73     [Documentation]  Test Suit Cleanup: Deleting Descriptor, instance and vim
74     Run Keyword If Test Failed  Delete NS   ${ns_name}
75     Run Keyword If Test Failed  Delete NSD   ${nsd_name}
76     Run Keyword If Test Failed  Delete VNFD   ${vnfd_name}
77     Run Keyword If Test Failed  Delete K8s Cluster   ${k8scluster_name}