| Dominik Fleischmann | b72faf3 | 2020-07-23 12:25:20 +0200 | [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 *** |
| 14 | Documentation [BASIC-14] VNF Relations |
| 15 | |
| 16 | Library OperatingSystem |
| 17 | Library SSHLibrary |
| 18 | |
| 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 |
| Dominik Fleischmann | b72faf3 | 2020-07-23 12:25:20 +0200 | [diff] [blame] | 23 | |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 24 | Force Tags basic_14 cluster_ee_config cluster_relations daily regression |
| 25 | |
| garciadeblas | d225e55 | 2020-10-02 16:10:14 +0000 | [diff] [blame] | 26 | Suite Teardown Run Keyword And Ignore Error Suite Cleanup |
| Dominik Fleischmann | b72faf3 | 2020-07-23 12:25:20 +0200 | [diff] [blame] | 27 | |
| 28 | |
| 29 | *** Variables *** |
| almagia | b4697d3 | 2021-05-25 08:56:17 +0200 | [diff] [blame] | 30 | # NS and VNF descriptor package folder and ids |
| 31 | ${vnfd_pkg} charm-packages/vnf_relations_vnf |
| 32 | ${vnfd_name} vnf_relations-vnf |
| 33 | ${nsd_pkg} charm-packages/vnf_relations_ns |
| 34 | ${nsd_name} vnf_relations-ns |
| 35 | |
| 36 | # NS instance name and configuration |
| 37 | ${ns_name} basic_14_vnf_relations_test |
| Dominik Fleischmann | b72faf3 | 2020-07-23 12:25:20 +0200 | [diff] [blame] | 38 | ${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] } |
| Dominik Fleischmann | b72faf3 | 2020-07-23 12:25:20 +0200 | [diff] [blame] | 39 | ${ns_timeout} 15min |
| 40 | |
| almagia | b4697d3 | 2021-05-25 08:56:17 +0200 | [diff] [blame] | 41 | # SSH public keys file |
| 42 | ${publickey} %{HOME}/.ssh/id_rsa.pub |
| 43 | |
| Dominik Fleischmann | b72faf3 | 2020-07-23 12:25:20 +0200 | [diff] [blame] | 44 | |
| 45 | *** Test Cases *** |
| 46 | Create Charm VNF Descriptor |
| Dominik Fleischmann | b72faf3 | 2020-07-23 12:25:20 +0200 | [diff] [blame] | 47 | |
| 48 | Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}' |
| 49 | |
| 50 | |
| 51 | Create Charm NS Descriptor |
| Dominik Fleischmann | b72faf3 | 2020-07-23 12:25:20 +0200 | [diff] [blame] | 52 | |
| 53 | Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}' |
| 54 | |
| 55 | |
| 56 | Instantiate Charm Network Service |
| Dominik Fleischmann | b72faf3 | 2020-07-23 12:25:20 +0200 | [diff] [blame] | 57 | |
| 58 | ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey} ${ns_timeout} |
| 59 | Set Suite Variable ${ns_id} ${id} |
| 60 | |
| 61 | |
| 62 | # TODO Check juju status for relations |
| 63 | |
| 64 | |
| 65 | Delete NS Instance |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 66 | [Tags] cleanup |
| Dominik Fleischmann | b72faf3 | 2020-07-23 12:25:20 +0200 | [diff] [blame] | 67 | |
| 68 | Delete NS ${ns_name} |
| 69 | |
| 70 | |
| 71 | Delete NS Descriptor |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 72 | [Tags] cleanup |
| Dominik Fleischmann | b72faf3 | 2020-07-23 12:25:20 +0200 | [diff] [blame] | 73 | |
| 74 | Delete NSD ${nsd_name} |
| 75 | |
| 76 | |
| 77 | Delete VNF Descriptor Provides |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 78 | [Tags] cleanup |
| Dominik Fleischmann | b72faf3 | 2020-07-23 12:25:20 +0200 | [diff] [blame] | 79 | |
| 80 | Delete VNFD ${vnfd_name} |
| 81 | |
| 82 | |
| 83 | *** Keywords *** |
| garciadeblas | d225e55 | 2020-10-02 16:10:14 +0000 | [diff] [blame] | 84 | Suite Cleanup |
| Dominik Fleischmann | b72faf3 | 2020-07-23 12:25:20 +0200 | [diff] [blame] | 85 | [Documentation] Test Suite Cleanup: Deleting descriptors and NS instance |
| 86 | |
| garciadeblas | d225e55 | 2020-10-02 16:10:14 +0000 | [diff] [blame] | 87 | Run Keyword If Any Tests Failed Delete NS ${ns_name} |
| Dominik Fleischmann | b72faf3 | 2020-07-23 12:25:20 +0200 | [diff] [blame] | 88 | |
| garciadeblas | d225e55 | 2020-10-02 16:10:14 +0000 | [diff] [blame] | 89 | Run Keyword If Any Tests Failed Delete NSD ${nsd_name} |
| Dominik Fleischmann | b72faf3 | 2020-07-23 12:25:20 +0200 | [diff] [blame] | 90 | |
| garciadeblas | d225e55 | 2020-10-02 16:10:14 +0000 | [diff] [blame] | 91 | Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name} |
| Dominik Fleischmann | b72faf3 | 2020-07-23 12:25:20 +0200 | [diff] [blame] | 92 | |