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