| garciaale | 0e69625 | 2020-09-24 18:04:27 +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 [EPA-02] Support for additional EPA capabilities. |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 15 | |
| 16 | Library OperatingSystem |
| 17 | Library String |
| 18 | Library Collections |
| 19 | Library SSHLibrary |
| 20 | |
| 21 | Resource %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot |
| 22 | Resource %{ROBOT_DEVOPS_FOLDER}/lib/vnf_lib.robot |
| 23 | Resource %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot |
| 24 | Resource %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot |
| 25 | Resource %{ROBOT_DEVOPS_FOLDER}/lib/openstack_lib.robot |
| 26 | |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 27 | Force Tags epa_02 cluster_epa daily regression |
| 28 | |
| garciadeblas | d225e55 | 2020-10-02 16:10:14 +0000 | [diff] [blame] | 29 | Suite Teardown Run Keyword And Ignore Error Suite Cleanup |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 30 | |
| 31 | |
| 32 | *** Variables *** |
| almagia | b4697d3 | 2021-05-25 08:56:17 +0200 | [diff] [blame] | 33 | # NS and VNF descriptor package folder and ids |
| 34 | ${vnfd_pkg} epa_quota_vnf |
| 35 | ${vnfd_name} epa_quota-vnf |
| 36 | ${nsd_pkg} epa_quota_ns |
| 37 | ${nsd_name} epa_quota-ns |
| 38 | |
| 39 | # NS instance name and configuration |
| 40 | ${ns_name} epa_02-epa_quota_test |
| 41 | ${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] } |
| 42 | |
| 43 | # SSH public keys file |
| 44 | ${publickey} %{HOME}/.ssh/id_rsa.pub |
| 45 | |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 46 | ${ns_id} ${EMPTY} |
| 47 | ${vnf_server_id} ${EMPTY} |
| 48 | ${flavor_properties} ${EMPTY} |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 49 | ${success_return_code} 0 |
| 50 | |
| 51 | |
| 52 | *** Test Cases *** |
| 53 | Create VNF Descriptor |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 54 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 55 | Remove Environment Variable OVERRIDES |
| 56 | Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}' |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 57 | |
| 58 | |
| 59 | Create NS Descriptor |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 60 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 61 | Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}' |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 62 | |
| 63 | |
| 64 | Instantiate Network Service |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 65 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 66 | ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey} |
| 67 | Set Suite Variable ${ns_id} ${id} |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 68 | |
| 69 | |
| 70 | Get VNF Server ID |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 71 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 72 | ${vnfs_list}= Get Ns Vnf List ${ns_id} |
| 73 | ${vim_id}= Get VNF VIM ID ${vnfs_list}[0] |
| garciadeblas | 321726f | 2022-12-21 11:43:06 +0100 | [diff] [blame] | 74 | Log ${vim_id} |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 75 | Set Suite Variable ${vnf_server_id} ${vim_id} |
| 76 | |
| 77 | |
| 78 | Get Server Flavor Properties |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 79 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 80 | ${flavor_id}= Get Server Flavor ID ${vnf_server_id} |
| 81 | ${properties}= Get Flavor Properties ${flavor_id} |
| garciadeblas | 321726f | 2022-12-21 11:43:06 +0100 | [diff] [blame] | 82 | Log ${properties} |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 83 | Set Suite Variable ${flavor_properties} ${properties} |
| 84 | |
| 85 | |
| 86 | Check Flavor Quota Properties |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 87 | |
| 88 | ${rc}= Run and Return RC echo ${flavor_properties} | grep "cpu_shares_level=custom" |
| 89 | Should Be Equal As Integers ${rc} ${success_return_code} |
| 90 | ${rc}= Run and Return RC echo ${flavor_properties} | grep "disk_io_shares_level=custom" |
| 91 | Should Be Equal As Integers ${rc} ${success_return_code} |
| 92 | ${rc}= Run and Return RC echo ${flavor_properties} | grep "memory_shares_level=custom" |
| 93 | Should Be Equal As Integers ${rc} ${success_return_code} |
| 94 | |
| 95 | |
| 96 | Delete NS Instance |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 97 | [Tags] cleanup |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 98 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 99 | Delete NS ${ns_name} |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 100 | |
| 101 | |
| 102 | Delete NS Descriptor |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 103 | [Tags] cleanup |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 104 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 105 | Delete NSD ${nsd_name} |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 106 | |
| 107 | |
| 108 | Delete VNF Descriptor |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 109 | [Tags] cleanup |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 110 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 111 | Delete VNFD ${vnfd_name} |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 112 | |
| 113 | |
| 114 | *** Keywords *** |
| garciadeblas | d225e55 | 2020-10-02 16:10:14 +0000 | [diff] [blame] | 115 | Suite Cleanup |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 116 | [Documentation] Test Suite Cleanup: Deleting descriptors and NS instance |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 117 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 118 | Run Keyword If Any Tests Failed Delete NS ${ns_name} |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 119 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 120 | Run Keyword If Any Tests Failed Delete NSD ${nsd_name} |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 121 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 122 | Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name} |
| garciaale | 0e69625 | 2020-09-24 18:04:27 +0000 | [diff] [blame] | 123 | |