| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 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 *** |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 14 | Documentation [K8s-04] Openldap Helm chart. |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 15 | |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 16 | Library OperatingSystem |
| 17 | Library String |
| 18 | Library Collections |
| 19 | Library Process |
| 20 | |
| 21 | Resource %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot |
| 22 | Resource %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot |
| 23 | Resource %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot |
| 24 | Resource %{ROBOT_DEVOPS_FOLDER}/lib/connectivity_lib.robot |
| 25 | Resource %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot |
| 26 | Resource %{ROBOT_DEVOPS_FOLDER}/lib/k8scluster_lib.robot |
| 27 | |
| garciadeblas | d2c2d3e | 2022-08-09 10:20:08 +0200 | [diff] [blame^] | 28 | Force Tags k8s_04 cluster_k8s daily regression sanity |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 29 | |
| garciadeblas | d225e55 | 2020-10-02 16:10:14 +0000 | [diff] [blame] | 30 | Suite Teardown Run Keyword And Ignore Error Suite Cleanup |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 31 | |
| 32 | |
| 33 | *** Variables *** |
| almagia | b4697d3 | 2021-05-25 08:56:17 +0200 | [diff] [blame] | 34 | # K8s cluster name and version |
| aguilard | d6a44ef | 2021-09-14 17:46:17 +0200 | [diff] [blame] | 35 | ${k8scluster_name} k8s04 |
| almagia | b4697d3 | 2021-05-25 08:56:17 +0200 | [diff] [blame] | 36 | ${k8scluster_version} v1 |
| 37 | |
| 38 | # NS and VNF descriptor package folder and ids |
| Mark Beierl | 5871033 | 2022-08-03 14:14:14 -0400 | [diff] [blame] | 39 | ${vnfd_pkg} openldap_knf |
| almagia | b4697d3 | 2021-05-25 08:56:17 +0200 | [diff] [blame] | 40 | ${vnfd_name} openldap_knf |
| Mark Beierl | 5871033 | 2022-08-03 14:14:14 -0400 | [diff] [blame] | 41 | ${nsd_pkg} openldap_ns |
| almagia | b4697d3 | 2021-05-25 08:56:17 +0200 | [diff] [blame] | 42 | ${nsd_name} openldap_ns |
| 43 | |
| 44 | # NS instance name and configuration |
| 45 | ${ns_name} ldap |
| David Garcia | afc1b0f | 2022-05-11 16:04:26 +0200 | [diff] [blame] | 46 | ${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}} ] } ] } |
| almagia | b4697d3 | 2021-05-25 08:56:17 +0200 | [diff] [blame] | 47 | |
| 48 | ${ns_id} ${EMPTY} |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 49 | ${publickey} ${EMPTY} |
| aguilarherna | 045bd33 | 2021-03-25 10:25:59 +0100 | [diff] [blame] | 50 | ${vnf_member_index} openldap |
| 51 | ${kdu_name} ldap |
| 52 | ${upgrade_action} upgrade |
| 53 | ${rollback_action} rollback |
| 54 | ${replica_count} 3 |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 55 | |
| 56 | *** Test Cases *** |
| 57 | Create Package For OpenLDAP CNF |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 58 | [Tags] prepare |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 59 | Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}' |
| 60 | |
| 61 | Create Package For OpenLDAP NS |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 62 | [Tags] prepare |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 63 | Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}' |
| 64 | |
| 65 | Add K8s Cluster To OSM |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 66 | [Tags] prepare |
| 67 | Create K8s Cluster %{K8S_CREDENTIALS} ${k8scluster_version} %{VIM_TARGET} %{VIM_MGMT_NET} ${k8scluster_name} |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 68 | |
| 69 | Create Network Service Instance |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 70 | [Tags] prepare |
| 71 | ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey} |
| rodriguezgar | fbedfe0 | 2022-02-24 20:05:42 +0100 | [diff] [blame] | 72 | |
| 73 | Get Ns Id |
| 74 | [Tags] verify |
| 75 | ${id}= Get Ns Id ${ns_name} |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 76 | Set Suite Variable ${ns_id} ${id} |
| 77 | |
| aguilarherna | 045bd33 | 2021-03-25 10:25:59 +0100 | [diff] [blame] | 78 | Get Vnf Id |
| rodriguezgar | fbedfe0 | 2022-02-24 20:05:42 +0100 | [diff] [blame] | 79 | [Tags] verify |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 80 | Variable Should Exist ${ns_id} msg=Network service instance is not available |
| 81 | @{vnfr_list}= Get Ns Vnfr Ids ${ns_id} |
| 82 | Log List ${vnfr_list} |
| 83 | Set Suite Variable ${vnf_id} ${vnfr_list}[0] |
| aguilarherna | 045bd33 | 2021-03-25 10:25:59 +0100 | [diff] [blame] | 84 | |
| 85 | Execute Upgrade Operation |
| rodriguezgar | fbedfe0 | 2022-02-24 20:05:42 +0100 | [diff] [blame] | 86 | [Tags] verify |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 87 | Variable Should Exist ${ns_id} msg=Network service instance is not available |
| 88 | ${ns_op_id}= Execute NS K8s Action ${ns_name} ${upgrade_action} ${vnf_member_index} ${kdu_name} replicaCount=${replica_count} |
| aguilarherna | 045bd33 | 2021-03-25 10:25:59 +0100 | [diff] [blame] | 89 | |
| 90 | Check Replicas After Upgrade Operation |
| rodriguezgar | fbedfe0 | 2022-02-24 20:05:42 +0100 | [diff] [blame] | 91 | [Tags] verify |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 92 | Variable Should Exist ${ns_id} msg=Network service instance is not available |
| aguilarherna | 045bd33 | 2021-03-25 10:25:59 +0100 | [diff] [blame] | 93 | ${count}= Get Vnf Kdu Replica Count ${vnf_id} ${kdu_name} |
| 94 | log ${count} |
| 95 | Should Be Equal As Integers ${count} ${replica_count} |
| 96 | |
| 97 | Execute Rollback Operation |
| rodriguezgar | fbedfe0 | 2022-02-24 20:05:42 +0100 | [diff] [blame] | 98 | [Tags] verify |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 99 | Variable Should Exist ${ns_id} msg=Network service instance is not available |
| 100 | ${ns_op_id}= Execute NS K8s Action ${ns_name} ${rollback_action} ${vnf_member_index} ${kdu_name} |
| aguilarherna | 045bd33 | 2021-03-25 10:25:59 +0100 | [diff] [blame] | 101 | |
| 102 | Check Replicas After Rollback Operation |
| rodriguezgar | fbedfe0 | 2022-02-24 20:05:42 +0100 | [diff] [blame] | 103 | [Tags] verify |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 104 | Variable Should Exist ${ns_id} msg=Network service instance is not available |
| aguilarherna | 045bd33 | 2021-03-25 10:25:59 +0100 | [diff] [blame] | 105 | ${count}= Get Vnf Kdu Replica Count ${vnf_id} ${kdu_name} |
| 106 | log ${count} |
| 107 | Should Be Empty ${count} |
| 108 | |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 109 | Delete Network Service Instance |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 110 | [Tags] cleanup |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 111 | Delete NS ${ns_name} |
| 112 | |
| 113 | Remove K8s Cluster from OSM |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 114 | [Tags] cleanup |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 115 | Delete K8s Cluster ${k8scluster_name} |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 116 | |
| 117 | Delete NS Descriptor Test |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 118 | [Tags] cleanup |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 119 | Delete NSD ${nsd_name} |
| 120 | |
| 121 | Delete VNF Descriptor Test |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 122 | [Tags] cleanup |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 123 | Delete VNFD ${vnfd_name} |
| 124 | |
| 125 | |
| 126 | *** Keywords *** |
| garciadeblas | d225e55 | 2020-10-02 16:10:14 +0000 | [diff] [blame] | 127 | Suite Cleanup |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 128 | [Documentation] Test Suit Cleanup: Deleting Descriptor, instance and vim |
| 129 | Run Keyword If Any Tests Failed Delete NS ${ns_name} |
| 130 | Run Keyword If Any Tests Failed Delete NSD ${nsd_name} |
| 131 | Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name} |
| 132 | Run Keyword If Any Tests Failed Delete K8s Cluster ${k8scluster_name} |