| garciaale | 764873c | 2020-07-02 17:42:00 -0400 | [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 [EPA-01] EPA+SRIOV without underlay. |
| 15 | |
| 16 | Library OperatingSystem |
| 17 | Library String |
| 18 | Library Collections |
| 19 | Library SSHLibrary |
| 20 | |
| 21 | Resource %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot |
| 22 | Resource %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot |
| 23 | Resource %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot |
| 24 | Resource %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot |
| 25 | |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 26 | Force Tags epa_01 cluster_epa daily regression |
| 27 | |
| garciadeblas | d225e55 | 2020-10-02 16:10:14 +0000 | [diff] [blame] | 28 | Suite Teardown Run Keyword And Ignore Error Suite Cleanup |
| garciaale | 764873c | 2020-07-02 17:42:00 -0400 | [diff] [blame] | 29 | |
| 30 | |
| 31 | *** Variables *** |
| almagia | b4697d3 | 2021-05-25 08:56:17 +0200 | [diff] [blame] | 32 | # NS and VNF descriptor package folder and ids |
| 33 | ${vnfd_pkg} hackfest_basic_sriov_vnf |
| 34 | ${vnfd_name} hackfest_basic_sriov-vnf |
| 35 | ${nsd_pkg} hackfest_basic_sriov_ns |
| 36 | ${nsd_name} hackfest_basic_sriov-ns |
| 37 | |
| 38 | # NS instance name and configuration |
| 39 | ${ns_name} epa_01-epa_sriov_test |
| 40 | ${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] } |
| garciaale | 764873c | 2020-07-02 17:42:00 -0400 | [diff] [blame] | 41 | ${ns_id} ${EMPTY} |
| almagia | b4697d3 | 2021-05-25 08:56:17 +0200 | [diff] [blame] | 42 | |
| 43 | # SSH keys and username to be used |
| 44 | ${publickey} %{HOME}/.ssh/id_rsa.pub |
| 45 | ${privatekey} %{HOME}/.ssh/id_rsa |
| garciaale | 764873c | 2020-07-02 17:42:00 -0400 | [diff] [blame] | 46 | ${username} ubuntu |
| 47 | ${password} osm4u |
| 48 | ${vnf_member_index} 1 |
| 49 | ${vnf_ip_addr} ${EMPTY} |
| almagia | b4697d3 | 2021-05-25 08:56:17 +0200 | [diff] [blame] | 50 | |
| garciaale | 764873c | 2020-07-02 17:42:00 -0400 | [diff] [blame] | 51 | |
| 52 | |
| 53 | *** Test Cases *** |
| 54 | Create VNF Descriptor |
| garciaale | 764873c | 2020-07-02 17:42:00 -0400 | [diff] [blame] | 55 | |
| 56 | Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}' |
| 57 | |
| 58 | |
| 59 | Create NS Descriptor |
| garciaale | 764873c | 2020-07-02 17:42:00 -0400 | [diff] [blame] | 60 | |
| 61 | Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}' |
| 62 | |
| 63 | |
| 64 | Instantiate Network Service |
| garciaale | 764873c | 2020-07-02 17:42:00 -0400 | [diff] [blame] | 65 | |
| 66 | ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey} |
| 67 | Set Suite Variable ${ns_id} ${id} |
| 68 | |
| 69 | |
| 70 | Get VNF IP Address |
| garciaale | 764873c | 2020-07-02 17:42:00 -0400 | [diff] [blame] | 71 | |
| 72 | ${ip_addr}= Get Vnf Management Ip Address ${ns_id} ${vnf_member_index} |
| 73 | log ${ip_addr} |
| 74 | Set Suite Variable ${vnf_ip_addr} ${ip_addr} |
| 75 | |
| 76 | |
| 77 | Check SR-IOV Interface |
| garciaale | 764873c | 2020-07-02 17:42:00 -0400 | [diff] [blame] | 78 | |
| 79 | Sleep 30 seconds Waiting for SSH daemon to be up |
| 80 | Execute Remote Command Check Rc Return Output ${vnf_ip_addr} ${username} ${password} ${privatekey} lspci | grep "Ethernet controller" | grep -v "Virtio" |
| 81 | |
| 82 | Delete NS Instance |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 83 | [Tags] cleanup |
| garciaale | 764873c | 2020-07-02 17:42:00 -0400 | [diff] [blame] | 84 | |
| 85 | Delete NS ${ns_name} |
| 86 | |
| 87 | |
| 88 | Delete NS Descriptor |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 89 | [Tags] cleanup |
| garciaale | 764873c | 2020-07-02 17:42:00 -0400 | [diff] [blame] | 90 | |
| 91 | Delete NSD ${nsd_name} |
| 92 | |
| 93 | |
| 94 | Delete VNF Descriptor |
| garciadeblas | 4cf45d7 | 2021-04-08 13:52:22 +0200 | [diff] [blame] | 95 | [Tags] cleanup |
| garciaale | 764873c | 2020-07-02 17:42:00 -0400 | [diff] [blame] | 96 | |
| 97 | Delete VNFD ${vnfd_name} |
| 98 | |
| 99 | |
| 100 | *** Keywords *** |
| garciadeblas | d225e55 | 2020-10-02 16:10:14 +0000 | [diff] [blame] | 101 | Suite Cleanup |
| garciaale | 764873c | 2020-07-02 17:42:00 -0400 | [diff] [blame] | 102 | [Documentation] Test Suite Cleanup: Deleting descriptors and NS instance |
| 103 | |
| garciadeblas | d225e55 | 2020-10-02 16:10:14 +0000 | [diff] [blame] | 104 | Run Keyword If Any Tests Failed Delete NS ${ns_name} |
| garciaale | 764873c | 2020-07-02 17:42:00 -0400 | [diff] [blame] | 105 | |
| garciadeblas | d225e55 | 2020-10-02 16:10:14 +0000 | [diff] [blame] | 106 | Run Keyword If Any Tests Failed Delete NSD ${nsd_name} |
| garciaale | 764873c | 2020-07-02 17:42:00 -0400 | [diff] [blame] | 107 | |
| garciadeblas | d225e55 | 2020-10-02 16:10:14 +0000 | [diff] [blame] | 108 | Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name} |
| garciaale | 764873c | 2020-07-02 17:42:00 -0400 | [diff] [blame] | 109 | |