| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +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 *** |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 14 | Documentation [BASIC-11] Native Charms |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 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 |
| 23 | |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 24 | Force Tags basic_11 cluster_ee_config cluster_relations daily regression sanity |
| 25 | |
| garciadeblas | d225e55 | 2020-10-02 16:10:14 +0000 | [diff] [blame] | 26 | Suite Teardown Run Keyword And Ignore Error Suite Cleanup |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +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/native_charm_vnf |
| 32 | ${vnfd_name} native_charm-vnf |
| 33 | ${nsd_pkg} charm-packages/native_charm_ns |
| 34 | ${nsd_name} native_charm-ns |
| 35 | |
| 36 | # NS instance name and configuration |
| 37 | ${ns_name} basic_11_native_charms |
| 38 | ${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] } |
| 39 | ${ns_timeout} 15min |
| 40 | |
| 41 | # SSH keys and username to be used |
| 42 | ${publickey} %{HOME}/.ssh/id_rsa.pub |
| 43 | ${privatekey} %{HOME}/.ssh/id_rsa |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 44 | ${username} ubuntu |
| 45 | ${password} ${EMPTY} |
| almagia | b4697d3 | 2021-05-25 08:56:17 +0200 | [diff] [blame] | 46 | |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 47 | ${action_name} touch |
| aguilard | f257829 | 2022-03-29 15:26:43 +0000 | [diff] [blame] | 48 | ${vnf_member_index_1} vnf1 |
| 49 | ${vnf_member_index_2} vnf2 |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 50 | ${day_1_file_name} /home/ubuntu/first-touch |
| 51 | ${day_2_file_name_1} /home/ubuntu/mytouch1 |
| 52 | ${day_2_file_name_2} /home/ubuntu/mytouch2 |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 53 | |
| 54 | |
| 55 | *** Test Cases *** |
| 56 | Create Charm VNF Descriptor |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 57 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 58 | Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}' |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 59 | |
| 60 | |
| 61 | Create Charm NS Descriptor |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 62 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 63 | Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}' |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 64 | |
| 65 | |
| 66 | Instantiate Charm Network Service |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 67 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 68 | ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey} ${ns_timeout} |
| 69 | Set Suite Variable ${ns_id} ${id} |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 70 | |
| 71 | |
| 72 | Get Management Ip Addresses |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 73 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 74 | ${ip_addr_1} Get Vnf Management Ip Address ${ns_id} ${vnf_member_index_1} |
| garciadeblas | 321726f | 2022-12-21 11:43:06 +0100 | [diff] [blame] | 75 | Log ${ip_addr_1} |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 76 | Set Suite Variable ${vnf_1_ip_addr} ${ip_addr_1} |
| 77 | ${ip_addr_2} Get Vnf Management Ip Address ${ns_id} ${vnf_member_index_2} |
| garciadeblas | 321726f | 2022-12-21 11:43:06 +0100 | [diff] [blame] | 78 | Log ${ip_addr_2} |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 79 | Set Suite Variable ${vnf_2_ip_addr} ${ip_addr_2} |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 80 | |
| 81 | |
| 82 | Test SSH Access |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 83 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 84 | Variable Should Exist ${vnf_1_ip_addr} msg=IP address of the management VNF '${vnf_member_index_1}' is not available |
| 85 | Variable Should Exist ${vnf_2_ip_addr} msg=IP address of the management VNF '${vnf_member_index_2}' is not available |
| 86 | Sleep 30s Waiting ssh daemon to be up |
| 87 | Test SSH Connection ${vnf_1_ip_addr} ${username} ${password} ${privatekey} |
| 88 | Test SSH Connection ${vnf_2_ip_addr} ${username} ${password} ${privatekey} |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 89 | |
| 90 | |
| 91 | Check Remote Files Created Via Day 1 Operations |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 92 | [Documentation] The Charm VNF has a Day 1 operation that creates a file named ${day_1_file_name}. |
| 93 | ... This test checks whether that files have been created or not. |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 94 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 95 | Check If remote File Exists ${vnf_1_ip_addr} ${username} ${password} ${privatekey} ${day_1_file_name} |
| 96 | Check If remote File Exists ${vnf_2_ip_addr} ${username} ${password} ${privatekey} ${day_1_file_name} |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 97 | |
| 98 | |
| 99 | Delete NS Instance |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 100 | [Tags] cleanup |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 101 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 102 | Delete NS ${ns_name} |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 103 | |
| 104 | |
| 105 | Delete NS Descriptor |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 106 | [Tags] cleanup |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 107 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 108 | Delete NSD ${nsd_name} |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 109 | |
| 110 | |
| 111 | Delete VNF Descriptor |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 112 | [Tags] cleanup |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 113 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 114 | Delete VNFD ${vnfd_name} |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 115 | |
| 116 | |
| 117 | *** Keywords *** |
| garciadeblas | d225e55 | 2020-10-02 16:10:14 +0000 | [diff] [blame] | 118 | Suite Cleanup |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 119 | [Documentation] Test Suite Cleanup: Deleting descriptors and NS instance |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 120 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 121 | Run Keyword If Any Tests Failed Delete NS ${ns_name} |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 122 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 123 | Run Keyword If Any Tests Failed Delete NSD ${nsd_name} |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 124 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 125 | Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name} |
| Dominik Fleischmann | 46186c8 | 2020-07-23 13:28:01 +0200 | [diff] [blame] | 126 | |