| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [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 [BASIC-22] Cross-model relations |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 15 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 16 | Library OperatingSystem |
| 17 | Library SSHLibrary |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 18 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 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 |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 24 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 25 | Force Tags basic_22 cluster_ee_config cluster_relations daily regression |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 26 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 27 | Suite Teardown Run Keyword And Ignore Error Suite Cleanup |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 28 | |
| 29 | |
| 30 | *** Variables *** |
| 31 | # K8s cluster name and version |
| 32 | ${k8scluster_name} k8sbasic_22 |
| 33 | ${k8scluster_version} v1 |
| 34 | |
| 35 | # NS and VNF descriptor package folder and ids |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 36 | ${vnfd_pkg_1} charm-packages/cmr_relation_vnf |
| 37 | ${vnfd_pkg_2} charm-packages/cmr_no_relation_vnf |
| 38 | ${nsd_pkg} charm-packages/cmr_relation_ns |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 39 | ${vnfd_name_1} cross_model_relation-vnf |
| 40 | ${vnfd_name_2} cross_model_no_relation-vnf |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 41 | ${nsd_name} cross_model_relation-ns |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 42 | |
| 43 | # NS instance name and configuration |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 44 | ${ns_name} basic_22 |
| 45 | ${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] } |
| 46 | ${ns_timeout} 15min |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 47 | |
| 48 | # SSH keys and username to be used |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 49 | ${publickey} %{HOME}/.ssh/id_rsa.pub |
| 50 | ${privatekey} %{HOME}/.ssh/id_rsa |
| 51 | ${username} ubuntu |
| 52 | ${password} ${EMPTY} |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 53 | |
| 54 | |
| 55 | *** Test Cases *** |
| 56 | Create Charm VNF Descriptor 1 |
| 57 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 58 | Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg_1}' |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 59 | |
| 60 | Create Charm VNF Descriptor 2 |
| 61 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 62 | Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg_2}' |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 63 | |
| 64 | Create Charm NS Descriptor |
| 65 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 66 | Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}' |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 67 | |
| 68 | Add K8s Cluster To OSM |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 69 | Create K8s Cluster %{K8S_CREDENTIALS} ${k8scluster_version} %{VIM_TARGET} %{VIM_MGMT_NET} ${k8scluster_name} |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 70 | |
| 71 | Instantiate Charm Network Service |
| 72 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 73 | ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey} ${ns_timeout} |
| 74 | Set Suite Variable ${ns_id} ${id} |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 75 | |
| 76 | |
| 77 | # TODO Check juju status for relations |
| 78 | |
| 79 | |
| 80 | Delete NS Instance |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 81 | [Tags] cleanup |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 82 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 83 | Delete NS ${ns_name} |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 84 | |
| 85 | Remove K8s Cluster from OSM |
| 86 | [Tags] cleanup |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 87 | Delete K8s Cluster ${k8scluster_name} |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 88 | |
| 89 | Delete NS Descriptor |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 90 | [Tags] cleanup |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 91 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 92 | Delete NSD ${nsd_name} |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 93 | |
| 94 | |
| 95 | Delete VNF Descriptor 1 |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 96 | [Tags] cleanup |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 97 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 98 | Delete VNFD ${vnfd_name_1} |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 99 | |
| 100 | Delete VNF Descriptor 2 |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 101 | [Tags] cleanup |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 102 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 103 | Delete VNFD ${vnfd_name_2} |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 104 | |
| 105 | |
| 106 | *** Keywords *** |
| 107 | Suite Cleanup |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 108 | [Documentation] Test Suite Cleanup: Deleting descriptors and NS instance |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 109 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 110 | Run Keyword If Any Tests Failed Delete NS ${ns_name} |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 111 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 112 | Run Keyword If Any Tests Failed Delete NSD ${nsd_name} |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 113 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 114 | Run Keyword If Any Tests Failed Delete VNFD 1 ${vnfd_name_1} |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 115 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 116 | Run Keyword If Any Tests Failed Delete VNFD 2 ${vnfd_name_2} |
| David Garcia | 006f584 | 2021-11-11 18:05:52 +0100 | [diff] [blame] | 117 | |