| calvinosanc1 | d427785 | 2020-06-18 12:07:19 +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 | Library OperatingSystem |
| 15 | Library String |
| 16 | Library Collections |
| 17 | Library Process |
| 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/connectivity_lib.robot |
| 23 | Resource %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot |
| 24 | Resource %{ROBOT_DEVOPS_FOLDER}/lib/k8scluster_lib.robot |
| 25 | |
| 26 | Variables %{ROBOT_DEVOPS_FOLDER}/resources/k8s_03-simple_k8s_data.py |
| 27 | |
| 28 | Suite Teardown Run Keyword And Ignore Error Test Cleanup |
| 29 | |
| 30 | |
| 31 | *** Variables *** |
| 32 | ${ns_id} ${EMPTY} |
| 33 | ${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] } |
| 34 | ${publickey} ${EMPTY} |
| 35 | |
| 36 | *** Test Cases *** |
| 37 | Create Simple K8s VNF Descriptor |
| 38 | [Tags] simple_k8s |
| 39 | Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}' |
| 40 | |
| 41 | Create Simple K8s Descriptor |
| 42 | [Tags] simple_k8s |
| 43 | Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}' |
| 44 | |
| 45 | Add K8s Cluster To OSM |
| 46 | [Tags] k8scluster |
| 47 | Create K8s Cluster %{K8S_CREDENTIALS} ${k8scluster_version} %{VIM_TARGET} %{VIM_MGMT_NET} ${k8scluster_name} |
| 48 | |
| 49 | Network Service K8s Instance Test |
| 50 | [Tags] simple_k8s |
| 51 | ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey} |
| 52 | Set Suite Variable ${ns_id} ${id} |
| 53 | |
| 54 | Delete NS K8s Instance Test |
| 55 | [Tags] simple_k8s cleanup |
| 56 | Delete NS ${ns_name} |
| 57 | |
| 58 | Remove K8s Cluster from OSM |
| 59 | [Tags] k8scluster |
| 60 | Delete K8s Cluster ${k8scluster_name} |
| 61 | |
| 62 | Delete NS Descriptor Test |
| 63 | [Tags] simple_k8s cleanup |
| 64 | Delete NSD ${nsd_name} |
| 65 | |
| 66 | Delete VNF Descriptor Test |
| 67 | [Tags] simple_k8s cleanup |
| 68 | Delete VNFD ${vnfd_name} |
| 69 | |
| 70 | |
| 71 | *** Keywords *** |
| 72 | Test Cleanup |
| 73 | [Documentation] Test Suit Cleanup: Deleting Descriptor, instance and vim |
| 74 | Run Keyword If Test Failed Delete NS ${ns_name} |
| 75 | Run Keyword If Test Failed Delete NSD ${nsd_name} |
| 76 | Run Keyword If Test Failed Delete VNFD ${vnfd_name} |
| 77 | |
| 78 | |