blob: 214bbc6839fb0ee9831d086fbfb176d67d791ad3 [file] [log] [blame]
ramonsalguer13b10742020-07-19 19:27:59 +00001# 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 ***
garciadeblasf4ebaa82022-06-23 13:33:26 +020014Documentation [K8s-04] Openldap Helm chart.
garciadeblas4cf45d72021-04-08 13:52:22 +020015
ramonsalguer13b10742020-07-19 19:27:59 +000016Library OperatingSystem
17Library String
18Library Collections
19Library Process
20
21Resource %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot
22Resource %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot
23Resource %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot
24Resource %{ROBOT_DEVOPS_FOLDER}/lib/connectivity_lib.robot
25Resource %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot
26Resource %{ROBOT_DEVOPS_FOLDER}/lib/k8scluster_lib.robot
27
garciadeblasd2c2d3e2022-08-09 10:20:08 +020028Force Tags k8s_04 cluster_k8s daily regression sanity
garciadeblas4cf45d72021-04-08 13:52:22 +020029
garciadeblasd225e552020-10-02 16:10:14 +000030Suite Teardown Run Keyword And Ignore Error Suite Cleanup
ramonsalguer13b10742020-07-19 19:27:59 +000031
32
33*** Variables ***
almagiab4697d32021-05-25 08:56:17 +020034# NS and VNF descriptor package folder and ids
Mark Beierl58710332022-08-03 14:14:14 -040035${vnfd_pkg} openldap_knf
almagiab4697d32021-05-25 08:56:17 +020036${vnfd_name} openldap_knf
Mark Beierl58710332022-08-03 14:14:14 -040037${nsd_pkg} openldap_ns
almagiab4697d32021-05-25 08:56:17 +020038${nsd_name} openldap_ns
39
40# NS instance name and configuration
41${ns_name} ldap
David Garciaafc1b0f2022-05-11 16:04:26 +020042${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}}], additionalParamsForVnf: [ {member-vnf-index: openldap, additionalParamsForKdu: [ {kdu_name: ldap, additionalParams: {service: {type: LoadBalancer }, adminPassword: admin}} ] } ] }
almagiab4697d32021-05-25 08:56:17 +020043
44${ns_id} ${EMPTY}
ramonsalguer13b10742020-07-19 19:27:59 +000045${publickey} ${EMPTY}
aguilarherna045bd332021-03-25 10:25:59 +010046${vnf_member_index} openldap
47${kdu_name} ldap
48${upgrade_action} upgrade
49${rollback_action} rollback
50${replica_count} 3
ramonsalguer13b10742020-07-19 19:27:59 +000051
52*** Test Cases ***
53Create Package For OpenLDAP CNF
garciadeblasf4ebaa82022-06-23 13:33:26 +020054 [Tags] prepare
ramonsalguer13b10742020-07-19 19:27:59 +000055 Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}'
56
57Create Package For OpenLDAP NS
garciadeblasf4ebaa82022-06-23 13:33:26 +020058 [Tags] prepare
ramonsalguer13b10742020-07-19 19:27:59 +000059 Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}'
60
ramonsalguer13b10742020-07-19 19:27:59 +000061Create Network Service Instance
garciadeblasf4ebaa82022-06-23 13:33:26 +020062 [Tags] prepare
63 ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey}
rodriguezgarfbedfe02022-02-24 20:05:42 +010064
65Get Ns Id
66 [Tags] verify
67 ${id}= Get Ns Id ${ns_name}
ramonsalguer13b10742020-07-19 19:27:59 +000068 Set Suite Variable ${ns_id} ${id}
69
aguilarherna045bd332021-03-25 10:25:59 +010070Get Vnf Id
rodriguezgarfbedfe02022-02-24 20:05:42 +010071 [Tags] verify
garciadeblasf4ebaa82022-06-23 13:33:26 +020072 Variable Should Exist ${ns_id} msg=Network service instance is not available
73 @{vnfr_list}= Get Ns Vnfr Ids ${ns_id}
74 Log List ${vnfr_list}
75 Set Suite Variable ${vnf_id} ${vnfr_list}[0]
aguilarherna045bd332021-03-25 10:25:59 +010076
77Execute Upgrade Operation
rodriguezgarfbedfe02022-02-24 20:05:42 +010078 [Tags] verify
garciadeblasf4ebaa82022-06-23 13:33:26 +020079 Variable Should Exist ${ns_id} msg=Network service instance is not available
80 ${ns_op_id}= Execute NS K8s Action ${ns_name} ${upgrade_action} ${vnf_member_index} ${kdu_name} replicaCount=${replica_count}
aguilarherna045bd332021-03-25 10:25:59 +010081
82Check Replicas After Upgrade Operation
rodriguezgarfbedfe02022-02-24 20:05:42 +010083 [Tags] verify
garciadeblasf4ebaa82022-06-23 13:33:26 +020084 Variable Should Exist ${ns_id} msg=Network service instance is not available
aguilarherna045bd332021-03-25 10:25:59 +010085 ${count}= Get Vnf Kdu Replica Count ${vnf_id} ${kdu_name}
garciadeblas321726f2022-12-21 11:43:06 +010086 Log ${count}
aguilarherna045bd332021-03-25 10:25:59 +010087 Should Be Equal As Integers ${count} ${replica_count}
88
89Execute Rollback Operation
rodriguezgarfbedfe02022-02-24 20:05:42 +010090 [Tags] verify
garciadeblasf4ebaa82022-06-23 13:33:26 +020091 Variable Should Exist ${ns_id} msg=Network service instance is not available
92 ${ns_op_id}= Execute NS K8s Action ${ns_name} ${rollback_action} ${vnf_member_index} ${kdu_name}
aguilarherna045bd332021-03-25 10:25:59 +010093
94Check Replicas After Rollback Operation
rodriguezgarfbedfe02022-02-24 20:05:42 +010095 [Tags] verify
garciadeblasf4ebaa82022-06-23 13:33:26 +020096 Variable Should Exist ${ns_id} msg=Network service instance is not available
aguilarherna045bd332021-03-25 10:25:59 +010097 ${count}= Get Vnf Kdu Replica Count ${vnf_id} ${kdu_name}
garciadeblas321726f2022-12-21 11:43:06 +010098 Log ${count}
aguilarherna045bd332021-03-25 10:25:59 +010099 Should Be Empty ${count}
100
ramonsalguer13b10742020-07-19 19:27:59 +0000101Delete Network Service Instance
garciadeblas4cf45d72021-04-08 13:52:22 +0200102 [Tags] cleanup
ramonsalguer13b10742020-07-19 19:27:59 +0000103 Delete NS ${ns_name}
104
ramonsalguer13b10742020-07-19 19:27:59 +0000105Delete NS Descriptor Test
garciadeblas4cf45d72021-04-08 13:52:22 +0200106 [Tags] cleanup
ramonsalguer13b10742020-07-19 19:27:59 +0000107 Delete NSD ${nsd_name}
108
109Delete VNF Descriptor Test
garciadeblas4cf45d72021-04-08 13:52:22 +0200110 [Tags] cleanup
ramonsalguer13b10742020-07-19 19:27:59 +0000111 Delete VNFD ${vnfd_name}
112
113
114*** Keywords ***
garciadeblasd225e552020-10-02 16:10:14 +0000115Suite Cleanup
garciadeblasf4ebaa82022-06-23 13:33:26 +0200116 [Documentation] Test Suit Cleanup: Deleting Descriptor, instance and vim
117 Run Keyword If Any Tests Failed Delete NS ${ns_name}
118 Run Keyword If Any Tests Failed Delete NSD ${nsd_name}
119 Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name}