| 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 | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 14 | Documentation [K8s-04] Openldap Helm chart. |
| 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 | |
| aguilarherna | c0b3a8e | 2021-05-12 08:56:23 +0000 | [diff] [blame] | 28 | Variables %{ROBOT_DEVOPS_FOLDER}/resources/k8s_04-openldap_helm_data.py |
| 29 | |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 30 | Force Tags k8s_04 cluster_k8s daily regression sanity |
| 31 | |
| garciadeblas | d225e55 | 2020-10-02 16:10:14 +0000 | [diff] [blame] | 32 | Suite Teardown Run Keyword And Ignore Error Suite Cleanup |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 33 | |
| 34 | |
| 35 | *** Variables *** |
| aguilarherna | 576487e | 2021-05-05 15:47:11 +0000 | [diff] [blame] | 36 | ${ns_id} ${EMPTY} |
| aguilarherna | c0b3a8e | 2021-05-12 08:56:23 +0000 | [diff] [blame] | 37 | ${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] } |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 38 | ${publickey} ${EMPTY} |
| aguilarherna | 045bd33 | 2021-03-25 10:25:59 +0100 | [diff] [blame] | 39 | ${vnf_member_index} openldap |
| 40 | ${kdu_name} ldap |
| 41 | ${upgrade_action} upgrade |
| 42 | ${rollback_action} rollback |
| 43 | ${replica_count} 3 |
| 44 | |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 45 | |
| 46 | *** Test Cases *** |
| 47 | Create Package For OpenLDAP CNF |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 48 | Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}' |
| 49 | |
| 50 | Create Package For OpenLDAP NS |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 51 | Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}' |
| 52 | |
| 53 | Add K8s Cluster To OSM |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 54 | Create K8s Cluster %{K8S_CREDENTIALS} ${k8scluster_version} %{VIM_TARGET} %{VIM_MGMT_NET} ${k8scluster_name} |
| 55 | |
| 56 | Create Network Service Instance |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 57 | ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey} |
| 58 | Set Suite Variable ${ns_id} ${id} |
| 59 | |
| aguilarherna | 045bd33 | 2021-03-25 10:25:59 +0100 | [diff] [blame] | 60 | Get Vnf Id |
| aguilarherna | 045bd33 | 2021-03-25 10:25:59 +0100 | [diff] [blame] | 61 | Variable Should Exist ${ns_id} msg=Network service instance is not available |
| 62 | @{vnfr_list}= Get Ns Vnfr Ids ${ns_id} |
| 63 | Log List ${vnfr_list} |
| 64 | Set Suite Variable ${vnf_id} ${vnfr_list}[0] |
| 65 | |
| 66 | Execute Upgrade Operation |
| aguilarherna | 045bd33 | 2021-03-25 10:25:59 +0100 | [diff] [blame] | 67 | Variable Should Exist ${ns_id} msg=Network service instance is not available |
| 68 | ${ns_op_id}= Execute NS K8s Action ${ns_name} ${upgrade_action} ${vnf_member_index} ${kdu_name} replicaCount=${replica_count} |
| 69 | |
| 70 | Check Replicas After Upgrade Operation |
| aguilarherna | 045bd33 | 2021-03-25 10:25:59 +0100 | [diff] [blame] | 71 | Variable Should Exist ${ns_id} msg=Network service instance is not available |
| 72 | ${count}= Get Vnf Kdu Replica Count ${vnf_id} ${kdu_name} |
| 73 | log ${count} |
| 74 | Should Be Equal As Integers ${count} ${replica_count} |
| 75 | |
| 76 | Execute Rollback Operation |
| aguilarherna | 045bd33 | 2021-03-25 10:25:59 +0100 | [diff] [blame] | 77 | Variable Should Exist ${ns_id} msg=Network service instance is not available |
| 78 | ${ns_op_id}= Execute NS K8s Action ${ns_name} ${rollback_action} ${vnf_member_index} ${kdu_name} |
| 79 | |
| 80 | Check Replicas After Rollback Operation |
| aguilarherna | 045bd33 | 2021-03-25 10:25:59 +0100 | [diff] [blame] | 81 | Variable Should Exist ${ns_id} msg=Network service instance is not available |
| 82 | ${count}= Get Vnf Kdu Replica Count ${vnf_id} ${kdu_name} |
| 83 | log ${count} |
| 84 | Should Be Empty ${count} |
| 85 | |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 86 | Delete Network Service Instance |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 87 | [Tags] cleanup |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 88 | Delete NS ${ns_name} |
| 89 | |
| 90 | Remove K8s Cluster from OSM |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 91 | [Tags] cleanup |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 92 | Delete K8s Cluster ${k8scluster_name} |
| 93 | |
| 94 | Delete NS Descriptor Test |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 95 | [Tags] cleanup |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 96 | Delete NSD ${nsd_name} |
| 97 | |
| 98 | Delete VNF Descriptor Test |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 99 | [Tags] cleanup |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 100 | Delete VNFD ${vnfd_name} |
| 101 | |
| 102 | |
| 103 | *** Keywords *** |
| garciadeblas | d225e55 | 2020-10-02 16:10:14 +0000 | [diff] [blame] | 104 | Suite Cleanup |
| ramonsalguer | 13b1074 | 2020-07-19 19:27:59 +0000 | [diff] [blame] | 105 | [Documentation] Test Suit Cleanup: Deleting Descriptor, instance and vim |
| garciadeblas | d225e55 | 2020-10-02 16:10:14 +0000 | [diff] [blame] | 106 | Run Keyword If Any Tests Failed Delete NS ${ns_name} |
| 107 | Run Keyword If Any Tests Failed Delete NSD ${nsd_name} |
| 108 | Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name} |
| 109 | Run Keyword If Any Tests Failed Delete K8s Cluster ${k8scluster_name} |