| Alexis Romero | dd1b09d | 2022-03-16 06:51:43 +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-24] VNF with two VDUs belonging to an Openstack server group |
| Alexis Romero | dd1b09d | 2022-03-16 06:51:43 +0100 | [diff] [blame] | 15 | |
| 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/vnf_lib.robot |
| 25 | Resource %{ROBOT_DEVOPS_FOLDER}/lib/openstack_lib.robot |
| 26 | |
| 27 | Force Tags basic_24 cluster_main daily regression |
| 28 | |
| 29 | |
| 30 | Suite Teardown Run Keyword And Ignore Error Suite Cleanup |
| 31 | |
| 32 | |
| 33 | *** Variables *** |
| 34 | # NS and VNF descriptor package folder and ids |
| 35 | ${vnfd_pkg} affinity_basic_vnf |
| 36 | ${vnfd_name} affinity_basic-vnf |
| 37 | ${nsd_pkg} affinity_basic_ns |
| 38 | ${nsd_name} affinity_basic-ns |
| 39 | |
| 40 | # NS instance name and configuration |
| 41 | ${ns_name} basic_24 |
| 42 | ${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] } |
| 43 | |
| 44 | # SSH keys and username to be used |
| 45 | ${publickey} %{HOME}/.ssh/id_rsa.pub |
| 46 | ${privatekey} %{HOME}/.ssh/id_rsa |
| 47 | ${username} ubuntu |
| 48 | ${password} ${EMPTY} |
| 49 | |
| 50 | ${ns_id} ${EMPTY} |
| 51 | ${vnf_member_index} affinity-basic-1 |
| 52 | ${success_return_code} 0 |
| 53 | |
| 54 | *** Test Cases *** |
| 55 | Create VNF Package |
| 56 | |
| 57 | Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}' |
| 58 | |
| 59 | |
| 60 | Create NS Package |
| 61 | |
| 62 | Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}' |
| 63 | |
| 64 | |
| 65 | Network Service Instance Test |
| 66 | |
| 67 | ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey} |
| 68 | Set Suite Variable ${ns_id} ${id} |
| 69 | |
| 70 | |
| 71 | Check Vnf Affinity Groups |
| 72 | |
| 73 | Variable Should Exist ${ns_id} msg=NS is not available |
| 74 | ${vnf_id} Get Vnf Id ${ns_id} ${vnf_member_index} |
| 75 | @{vdur_id_list} Get VDU list from VNF ${vnf_id} |
| 76 | FOR ${vdur_id} IN @{vdur_id_list} |
| 77 | ${server_group_name} Get VDU Affinity Group Name ${ns_name} ${vnf_id} ${vdur_id} |
| 78 | ${vm_vim_id} Get VDU VIM Id ${vnf_id} ${vdur_id} |
| 79 | Check VM In Server Group ${vm_vim_id} ${server_group_name} |
| 80 | END |
| 81 | |
| 82 | |
| 83 | Delete NS Instance Test |
| 84 | [Tags] cleanup |
| 85 | |
| 86 | Delete NS ${ns_name} |
| 87 | |
| 88 | |
| 89 | Delete NS Descriptor Test |
| 90 | [Tags] cleanup |
| 91 | |
| 92 | Delete NSD ${nsd_name} |
| 93 | |
| 94 | |
| 95 | Delete VNF Descriptor Test |
| 96 | [Tags] cleanup |
| 97 | |
| 98 | Delete VNFD ${vnfd_name} |
| 99 | |
| 100 | |
| 101 | *** Keywords *** |
| 102 | Suite Cleanup |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame^] | 103 | [Documentation] Test Suit Cleanup: Deleting Descriptor, instance and vim |
| Alexis Romero | dd1b09d | 2022-03-16 06:51:43 +0100 | [diff] [blame] | 104 | |
| 105 | Run Keyword If Any Tests Failed Delete NS ${ns_name} |
| 106 | |
| 107 | Run Keyword If Any Tests Failed Delete NSD ${nsd_name} |
| 108 | |
| 109 | Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name} |
| 110 | |