blob: c9db674147ebfc7b8d1e2bb034ccc76675b626e0 [file] [log] [blame]
garciaale0e696252020-09-24 18:04:27 +00001# 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 ***
14Documentation [EPA-02] Support for additional EPA capabilities.
15
16Library OperatingSystem
17Library String
18Library Collections
19Library SSHLibrary
20
21Resource %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot
22Resource %{ROBOT_DEVOPS_FOLDER}/lib/vnf_lib.robot
23Resource %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot
24Resource %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot
25Resource %{ROBOT_DEVOPS_FOLDER}/lib/openstack_lib.robot
26
27Variables %{ROBOT_DEVOPS_FOLDER}/resources/epa_02-additional_capabilities_data.py
28
garciadeblasd225e552020-10-02 16:10:14 +000029Suite Teardown Run Keyword And Ignore Error Suite Cleanup
garciaale0e696252020-09-24 18:04:27 +000030
31
32*** Variables ***
33${ns_id} ${EMPTY}
34${vnf_server_id} ${EMPTY}
35${flavor_properties} ${EMPTY}
36${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] }
37${success_return_code} 0
38
39
40*** Test Cases ***
41Create VNF Descriptor
42 [Tags] epa_capabilities sanity regression
43
aguilarherna347a7792020-11-16 18:18:25 +010044 Remove Environment Variable OVERRIDES
garciaale0e696252020-09-24 18:04:27 +000045 Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}'
46
47
48Create NS Descriptor
49 [Tags] epa_capabilities sanity regression
50
51 Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}'
52
53
54Instantiate Network Service
55 [Tags] epa_capabilities sanity regression
56
57 ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey}
58 Set Suite Variable ${ns_id} ${id}
59
60
61Get VNF Server ID
62 [Tags] epa_capabilities sanity regression
63
64 ${vnfs_list}= Get Ns Vnf List ${ns_id}
65 ${vim_id}= Get VNF VIM ID ${vnfs_list}[0]
66 log ${vim_id}
67 Set Suite Variable ${vnf_server_id} ${vim_id}
68
69
70Get Server Flavor Properties
71 [Tags] epa_capabilities sanity regression
72
73 ${flavor_id}= Get Server Flavor ID ${vnf_server_id}
74 ${properties}= Get Flavor Properties ${flavor_id}
75 log ${properties}
76 Set Suite Variable ${flavor_properties} ${properties}
77
78
79Check Flavor Quota Properties
80 [Tags] epa_capabilities sanity regression
81
82 ${rc}= Run and Return RC echo ${flavor_properties} | grep "cpu_shares_level=custom"
83 Should Be Equal As Integers ${rc} ${success_return_code}
84 ${rc}= Run and Return RC echo ${flavor_properties} | grep "disk_io_shares_level=custom"
85 Should Be Equal As Integers ${rc} ${success_return_code}
86 ${rc}= Run and Return RC echo ${flavor_properties} | grep "memory_shares_level=custom"
87 Should Be Equal As Integers ${rc} ${success_return_code}
88
89
90Delete NS Instance
91 [Tags] epa_capabilities sanity regression cleanup
92
93 Delete NS ${ns_name}
94
95
96Delete NS Descriptor
97 [Tags] epa_capabilities sanity regression cleanup
98
99 Delete NSD ${nsd_name}
100
101
102Delete VNF Descriptor
103 [Tags] epa_capabilities sanity regression cleanup
104
105 Delete VNFD ${vnfd_name}
106
107
108*** Keywords ***
garciadeblasd225e552020-10-02 16:10:14 +0000109Suite Cleanup
garciaale0e696252020-09-24 18:04:27 +0000110 [Documentation] Test Suite Cleanup: Deleting descriptors and NS instance
111
garciadeblasd225e552020-10-02 16:10:14 +0000112 Run Keyword If Any Tests Failed Delete NS ${ns_name}
garciaale0e696252020-09-24 18:04:27 +0000113
garciadeblasd225e552020-10-02 16:10:14 +0000114 Run Keyword If Any Tests Failed Delete NSD ${nsd_name}
garciaale0e696252020-09-24 18:04:27 +0000115
garciadeblasd225e552020-10-02 16:10:14 +0000116 Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name}
garciaale0e696252020-09-24 18:04:27 +0000117