blob: e8d23158fdb2970911530eb42f925a22935d0eb9 [file] [log] [blame]
aktasf47542b2021-05-26 10:32:32 +03001# 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 [K8s-08] Simple K8s Scale.
15
16Library OperatingSystem
17Library String
18Library Collections
19Library Process
aguilard71e24ea2021-08-12 10:44:17 +020020Library SSHLibrary
aktasf47542b2021-05-26 10:32:32 +030021
22Resource %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot
23Resource %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot
24Resource %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot
aktasf47542b2021-05-26 10:32:32 +030025Resource %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot
26Resource %{ROBOT_DEVOPS_FOLDER}/lib/k8scluster_lib.robot
27Resource %{ROBOT_DEVOPS_FOLDER}/lib/juju_lib.robot
28
aguilard71e24ea2021-08-12 10:44:17 +020029Force Tags k8s_08 cluster_k8s daily regression
aktasf47542b2021-05-26 10:32:32 +030030
31Suite Teardown Run Keyword And Ignore Error Suite Cleanup
32
33
34*** Variables ***
aguilard71e24ea2021-08-12 10:44:17 +020035# K8s cluster name and version
aguilardd6a44ef2021-09-14 17:46:17 +020036${k8scluster_name} k8s08
aguilard71e24ea2021-08-12 10:44:17 +020037${k8scluster_version} v1
38
39# NS and VNF descriptor package folder and ids
40${vnfd_pkg} charm-packages/native_k8s_scale_charm_vnf
41${vnfd_name} native_k8s_scale_charm-vnf
42${nsd_pkg} charm-packages/native_k8s_scale_charm_ns
43${nsd_name} native_k8s_scale_charm-ns
44
45# NS instance name and configuration
46${ns_name} native-k8s-scale
aktasf47542b2021-05-26 10:32:32 +030047${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] }
aguilard71e24ea2021-08-12 10:44:17 +020048${ns_id} ${EMPTY}
49${publickey} %{HOME}/.ssh/id_rsa.pub
50
51# Username and SSH private key for accessing OSM host
52${username} ubuntu
53${password} ${EMPTY}
54${privatekey} %{OSM_RSA_FILE}
55
56${model_name} ${EMPTY}
aktasf47542b2021-05-26 10:32:32 +030057${vnf_member_index} native_k8s_scale_charm-vnf
58${action_name} changecontent
59${kdu_name} native-kdu
60${application_name} nginx
aguilard71e24ea2021-08-12 10:44:17 +020061${scaling_group} scale-kdu
aktasf47542b2021-05-26 10:32:32 +030062
63*** Test Cases ***
64Create Simple K8s Scale VNF Descriptor
65 Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}'
66
67Create Simple K8s Scale NS Descriptor
68 Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}'
69
70Add K8s Cluster To OSM
71 Create K8s Cluster %{K8S_CREDENTIALS} ${k8scluster_version} %{VIM_TARGET} %{VIM_MGMT_NET} ${k8scluster_name}
72
73Network Service K8s Instance Test
74 ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey}
75 Set Suite Variable ${ns_id} ${id}
76
77Get KDU Model Name
78 [Documentation] Get the model name of the network service k8s instance
79
80 Variable Should Exist ${ns_id} msg=Network service instance is not available
aguilard71e24ea2021-08-12 10:44:17 +020081 ${name}= Get Model Name %{OSM_HOSTNAME} ${username} ${password} ${privatekey} ${ns_id} ${kdu_name}
aktasf47542b2021-05-26 10:32:32 +030082 Set Suite Variable ${model_name} ${name}
83
84Get Scale Count Before Scale Out
85 [Documentation] Get the scale count of the application of network service k8s instance
86
87 Variable Should Exist ${model_name} msg=Model name is not available
aguilard71e24ea2021-08-12 10:44:17 +020088 ${kdu_count}= Get Scale Number %{OSM_HOSTNAME} ${username} ${password} ${privatekey} ${application_name} ${model_name}
aktasf47542b2021-05-26 10:32:32 +030089 Set Suite Variable ${initial_kdu_count} ${kdu_count}
90
91Perform Manual KDU Scale Out
92 [Documentation] Scale out the application of network service k8s instance.
93
94 ${ns_op_id_2}= Execute Manual VNF Scale ${ns_name} ${vnf_member_index} ${scaling_group} SCALE_OUT
95
96Check Scale Count After Scale Out
97 [Documentation] Check whether the scale count is more than one.
98
99 Variable Should Exist ${initial_kdu_count} msg=Initial KDU count is not available
aguilard71e24ea2021-08-12 10:44:17 +0200100 ${kdu_count}= Get Scale Number %{OSM_HOSTNAME} ${username} ${password} ${privatekey} ${application_name} ${model_name}
aktasf47542b2021-05-26 10:32:32 +0300101 Run Keyword Unless ${kdu_count} == ${initial_kdu_count} + 1 Fail msg=There is no new KDU in the model after Scale Out
102
103Perform Manual KDU Scale In
104 [Documentation] Scale in the application of network service k8s instance.
105
106 ${ns_op_id_3}= Execute Manual VNF Scale ${ns_name} ${vnf_member_index} ${scaling_group} SCALE_IN
107
108Check Scale Count After Scale In
109 [Documentation] Check whether the scale count is one less.
110
aguilard71e24ea2021-08-12 10:44:17 +0200111 ${kdu_count}= Get Scale Number %{OSM_HOSTNAME} ${username} ${password} ${privatekey} ${application_name} ${model_name}
aktasf47542b2021-05-26 10:32:32 +0300112 Run Keyword Unless ${kdu_count} == ${initial_kdu_count} Fail msg=There is the same number of KDU in the model after Scale In
113
114Delete NS K8s Instance Test
115 [Tags] cleanup
116 Delete NS ${ns_name}
117
118Remove K8s Cluster from OSM
119 [Tags] cleanup
120 Delete K8s Cluster ${k8scluster_name}
121
122Delete NS Descriptor Test
123 [Tags] cleanup
124 Delete NSD ${nsd_name}
125
126Delete VNF Descriptor Test
127 [Tags] cleanup
128 Delete VNFD ${vnfd_name}
129
aktasf47542b2021-05-26 10:32:32 +0300130
131*** Keywords ***
132Suite Cleanup
133 [Documentation] Test Suit Cleanup: Deleting Descriptor, instance and vim
134 Run Keyword If Any Tests Failed Delete NS ${ns_name}
135 Run Keyword If Any Tests Failed Delete NSD ${nsd_name}
136 Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name}
137 Run Keyword If Any Tests Failed Delete K8s Cluster ${k8scluster_name}