blob: 092074a13aed8cdb62c024880b41ebf9b5547ee8 [file] [log] [blame]
Felipe Vicensf96bb452020-06-22 08:12:30 +02001# 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 ***
garciadeblasf4ebaa82022-06-23 13:33:26 +020014Documentation [HACKFEST-BASIC] Basic NS with a single-VDU VNF
garciadeblas4cf45d72021-04-08 13:52:22 +020015
Felipe Vicensf96bb452020-06-22 08:12:30 +020016Library OperatingSystem
17Library String
18Library Collections
19Library Process
20Library SSHLibrary
21
22Resource %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot
23Resource %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot
24Resource %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot
25Resource %{ROBOT_DEVOPS_FOLDER}/lib/connectivity_lib.robot
26Resource %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot
27
garciadeblas7f1bdbc2021-04-27 10:21:57 +020028Force Tags hackfest_basic cluster_main daily regression sanity
garciadeblas4cf45d72021-04-08 13:52:22 +020029
garciadeblasd225e552020-10-02 16:10:14 +000030Suite Teardown Run Keyword And Ignore Error Suite Cleanup
Felipe Vicensf96bb452020-06-22 08:12:30 +020031
32
33*** Variables ***
almagiab4697d32021-05-25 08:56:17 +020034# NS and VNF descriptor package folder and ids
35${vnfd_pkg} hackfest_basic_vnf
36${vnfd_name} hackfest_basic-vnf
37${nsd_pkg} hackfest_basic_ns
38${nsd_name} hackfest_basic-ns
39
40# NS instance name and configuration
41${ns_name} hfbasic
42${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] }
43
44# SSH keys and username to be used
45${publickey} %{HOME}/.ssh/id_rsa.pub
46${privatekey} %{HOME}/.ssh/id_rsa
Felipe Vicensf96bb452020-06-22 08:12:30 +020047${username} ubuntu
48${password} ${EMPTY}
almagiab4697d32021-05-25 08:56:17 +020049
50${ns_id} ${EMPTY}
aguilardf2578292022-03-29 15:26:43 +000051${vnf_member_index} vnf
Felipe Vicensf96bb452020-06-22 08:12:30 +020052${vnf_ip_addr} ${EMPTY}
almagiab4697d32021-05-25 08:56:17 +020053
Felipe Vicensf96bb452020-06-22 08:12:30 +020054
55*** Test Cases ***
56Create Hackfest Basic VNF Descriptor
Felipe Vicensf96bb452020-06-22 08:12:30 +020057
58 Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}'
59
60
61Create Hackfest Basic NS Descriptor
Felipe Vicensf96bb452020-06-22 08:12:30 +020062
63 Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}'
64
65Network Service Instance Test
Felipe Vicensf96bb452020-06-22 08:12:30 +020066
67 ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey}
68 Set Suite Variable ${ns_id} ${id}
69
70
71Get Vnf Ip Address
Felipe Vicensf96bb452020-06-22 08:12:30 +020072
garciadeblasf4ebaa82022-06-23 13:33:26 +020073 ${ip_addr} Get Vnf Management Ip Address ${ns_id} ${vnf_member_index}
Felipe Vicensf96bb452020-06-22 08:12:30 +020074 log ${ip_addr}
75 Set Suite Variable ${vnf_ip_addr} ${ip_addr}
76
77Test Ping
garciadeblasf4ebaa82022-06-23 13:33:26 +020078 Test Connectivity ${vnf_ip_addr}
Felipe Vicensf96bb452020-06-22 08:12:30 +020079
80Test SSH Access
Felipe Vicensf96bb452020-06-22 08:12:30 +020081 Sleep 30s Waiting ssh daemon to be up
garciadeblasf4ebaa82022-06-23 13:33:26 +020082 Test SSH Connection ${vnf_ip_addr} ${username} ${password} ${privatekey}
Felipe Vicensf96bb452020-06-22 08:12:30 +020083
84Delete NS Instance Test
garciadeblas4cf45d72021-04-08 13:52:22 +020085 [Tags] cleanup
Felipe Vicensf96bb452020-06-22 08:12:30 +020086
87 Delete NS ${ns_name}
88
89
90Delete NS Descriptor Test
garciadeblas4cf45d72021-04-08 13:52:22 +020091 [Tags] cleanup
Felipe Vicensf96bb452020-06-22 08:12:30 +020092
93 Delete NSD ${nsd_name}
94
95
96Delete VNF Descriptor Test
garciadeblas4cf45d72021-04-08 13:52:22 +020097 [Tags] cleanup
Felipe Vicensf96bb452020-06-22 08:12:30 +020098
99 Delete VNFD ${vnfd_name}
100
101
102*** Keywords ***
garciadeblasd225e552020-10-02 16:10:14 +0000103Suite Cleanup
garciadeblasf4ebaa82022-06-23 13:33:26 +0200104 [Documentation] Test Suit Cleanup: Deleting Descriptor, instance and vim
Felipe Vicensf96bb452020-06-22 08:12:30 +0200105
garciadeblasf4ebaa82022-06-23 13:33:26 +0200106 Run Keyword If Any Tests Failed Delete NS ${ns_name}
Felipe Vicensf96bb452020-06-22 08:12:30 +0200107
garciadeblasf4ebaa82022-06-23 13:33:26 +0200108 Run Keyword If Any Tests Failed Delete NSD ${nsd_name}
Felipe Vicensf96bb452020-06-22 08:12:30 +0200109
garciadeblasf4ebaa82022-06-23 13:33:26 +0200110 Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name}
Felipe Vicensf96bb452020-06-22 08:12:30 +0200111
112