| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +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 [HACKFEST-CLOUDINIT] Basic NS with two multi-VDU VNF with cloudinit |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 15 | |
| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +0200 | [diff] [blame] | 16 | Library OperatingSystem |
| 17 | Library String |
| 18 | Library Collections |
| 19 | Library Process |
| 20 | Library SSHLibrary |
| 21 | |
| 22 | Resource %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_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/connectivity_lib.robot |
| 26 | Resource %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot |
| 27 | |
| garciadeblas | 7f1bdbc | 2021-04-27 10:21:57 +0200 | [diff] [blame] | 28 | Force Tags hackfest_cloudinit cluster_main daily regression sanity |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 29 | |
| garciadeblas | d225e55 | 2020-10-02 16:10:14 +0000 | [diff] [blame] | 30 | Suite Teardown Run Keyword And Ignore Error Suite Cleanup |
| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +0200 | [diff] [blame] | 31 | |
| 32 | |
| 33 | *** Variables *** |
| almagia | b4697d3 | 2021-05-25 08:56:17 +0200 | [diff] [blame] | 34 | # NS and VNF descriptor package folder and ids |
| 35 | ${vnfd_pkg} hackfest_cloudinit_vnf |
| 36 | ${vnfd_name} hackfest_cloudinit-vnf |
| 37 | ${nsd_pkg} hackfest_cloudinit_ns |
| 38 | ${nsd_name} hackfest_cloudinit-ns |
| 39 | |
| 40 | # NS instance name and configuration |
| 41 | ${ns_name} hfcloudinit |
| 42 | ${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] } |
| 43 | |
| 44 | # SSH user and password |
| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +0200 | [diff] [blame] | 45 | ${username} ubuntu |
| garciaale | d2532d3 | 2020-11-19 21:05:13 +0000 | [diff] [blame] | 46 | ${password} osm4u |
| almagia | b4697d3 | 2021-05-25 08:56:17 +0200 | [diff] [blame] | 47 | |
| 48 | ${ns_id} ${EMPTY} |
| aguilard | f257829 | 2022-03-29 15:26:43 +0000 | [diff] [blame] | 49 | ${vnf_member_index} vnf1 |
| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +0200 | [diff] [blame] | 50 | ${vnf_ip_addr} ${EMPTY} |
| almagia | b4697d3 | 2021-05-25 08:56:17 +0200 | [diff] [blame] | 51 | |
| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +0200 | [diff] [blame] | 52 | |
| 53 | *** Test Cases *** |
| 54 | Create Hackfest Cloudinit VNF Descriptor |
| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +0200 | [diff] [blame] | 55 | |
| 56 | Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}' |
| 57 | |
| 58 | |
| 59 | Create Hackfest Cloudinit NS Descriptor |
| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +0200 | [diff] [blame] | 60 | |
| 61 | Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}' |
| 62 | |
| 63 | |
| 64 | Network Service Instance Test |
| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +0200 | [diff] [blame] | 65 | |
| garciaale | d2532d3 | 2020-11-19 21:05:13 +0000 | [diff] [blame] | 66 | ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${EMPTY} |
| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +0200 | [diff] [blame] | 67 | Set Suite Variable ${ns_id} ${id} |
| 68 | |
| 69 | |
| 70 | Get Vnf Ip Address |
| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +0200 | [diff] [blame] | 71 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 72 | ${ip_addr} Get Vnf Management Ip Address ${ns_id} ${vnf_member_index} |
| garciadeblas | 321726f | 2022-12-21 11:43:06 +0100 | [diff] [blame] | 73 | Log ${ip_addr} |
| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +0200 | [diff] [blame] | 74 | Set Suite Variable ${vnf_ip_addr} ${ip_addr} |
| 75 | |
| 76 | |
| 77 | Test SSH Access |
| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +0200 | [diff] [blame] | 78 | |
| 79 | Sleep 30s Waiting ssh daemon to be up |
| almagia | b4697d3 | 2021-05-25 08:56:17 +0200 | [diff] [blame] | 80 | Test SSH Connection ${vnf_ip_addr} ${username} ${password} ${EMPTY} |
| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +0200 | [diff] [blame] | 81 | |
| 82 | |
| 83 | Check Remote File Injected Via Cloud-init |
| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +0200 | [diff] [blame] | 84 | |
| almagia | b4697d3 | 2021-05-25 08:56:17 +0200 | [diff] [blame] | 85 | ${stdout}= Execute Remote Command Check Rc Return Output ${vnf_ip_addr} ${username} ${password} ${EMPTY} sudo cat /root/helloworld.txt |
| garciadeblas | 321726f | 2022-12-21 11:43:06 +0100 | [diff] [blame] | 86 | Log ${stdout} |
| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +0200 | [diff] [blame] | 87 | |
| 88 | |
| 89 | Delete NS Instance Test |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 90 | [Tags] cleanup |
| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +0200 | [diff] [blame] | 91 | |
| 92 | Delete NS ${ns_name} |
| 93 | |
| 94 | |
| 95 | Delete NS Descriptor Test |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 96 | [Tags] cleanup |
| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +0200 | [diff] [blame] | 97 | |
| 98 | Delete NSD ${nsd_name} |
| 99 | |
| 100 | |
| 101 | Delete VNF Descriptor Test |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 102 | [Tags] cleanup |
| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +0200 | [diff] [blame] | 103 | |
| 104 | Delete VNFD ${vnfd_name} |
| 105 | |
| 106 | |
| 107 | *** Keywords *** |
| garciadeblas | d225e55 | 2020-10-02 16:10:14 +0000 | [diff] [blame] | 108 | Suite Cleanup |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 109 | [Documentation] Test Suit Cleanup: Deleting Descriptor, instance and vim |
| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +0200 | [diff] [blame] | 110 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 111 | Run Keyword If Any Tests Failed Delete NS ${ns_name} |
| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +0200 | [diff] [blame] | 112 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 113 | Run Keyword If Any Tests Failed Delete NSD ${nsd_name} |
| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +0200 | [diff] [blame] | 114 | |
| garciadeblas | f4ebaa8 | 2022-06-23 13:33:26 +0200 | [diff] [blame] | 115 | Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name} |
| Felipe Vicens | f96bb45 | 2020-06-22 08:12:30 +0200 | [diff] [blame] | 116 | |
| 117 | |