Reformat Robot files to follow best practices
[osm/tests.git] / robot-systest / testsuite / heal_04-autohealing.robot
index 73b8990..5518b11 100644 (file)
-#   Licensed under the Apache License, Version 2.0 (the "License");\r
-#   you may not use this file except in compliance with the License.\r
-#   You may obtain a copy of the License at\r
-#\r
-#       http://www.apache.org/licenses/LICENSE-2.0\r
-#\r
-#   Unless required by applicable law or agreed to in writing, software\r
-#   distributed under the License is distributed on an "AS IS" BASIS,\r
-#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
-#   See the License for the specific language governing permissions and\r
-#   limitations under the License.\r
-\r
-*** Settings ***\r
-Documentation     [HEAL-04] Autohealing of NS\r
-Suite Teardown    Run Keyword And Ignore Error    Suite Cleanup\r
-Force Tags        heal_04   cluster_main   daily   regression\r
-Library           OperatingSystem\r
-Library           String\r
-Library           Collections\r
-Library           Process\r
-Library           SSHLibrary\r
-Resource          %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot\r
-Resource          %{ROBOT_DEVOPS_FOLDER}/lib/vnf_lib.robot\r
-Resource          %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot\r
-Resource          %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot\r
-Resource          %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot\r
-Resource          %{ROBOT_DEVOPS_FOLDER}/lib/openstack_lib.robot\r
-\r
-*** Variables ***\r
-# NS and VNF descriptor package folder and ids\r
-${vnfd_pkg}   autoheal_vnf\r
-${vnfd_name}   autoheal_vnfd\r
-${vdu_name}   autoheal_vnfd-VM\r
-${vnf_index}   autoheal-basic-1\r
-${nsd_pkg}   autoheal_ns\r
-${nsd_name}  autoheal_nsd\r
-# NS instance name and configuration\r
-${ns_name}    heal_04\r
-${ns_config}   {vld: [ {name: mgmt, vim-network-name: %{VIM_MGMT_NET}} ] }\r
-\r
-# SSH keys and username to be used\r
-${publickey}   %{HOME}/.ssh/id_rsa.pub\r
-${privatekey}   %{HOME}/.ssh/id_rsa\r
-${username}   ubuntu\r
-${password}   ${EMPTY}\r
-\r
-${success_return_code}   0\r
-\r
-#Healing wait time\r
-${healing_pol_time}   15sec\r
-${healing_max_wait_time}   10m\r
-\r
-*** Test Cases ***\r
-Create VNF Descriptors\r
-    Create VNFD   '%{PACKAGES_FOLDER}/${vnfd_pkg}'\r
-\r
-\r
-Create NS Descriptor\r
-    Create NSD   '%{PACKAGES_FOLDER}/${nsd_pkg}'\r
-\r
-\r
-Network Service Instance Test\r
-    ${id}=   Create Network Service   ${nsd_name}   %{VIM_TARGET}   ${ns_name}   ${ns_config}   ${publickey}\r
-    Set Suite Variable   ${ns_id}   ${id}\r
-\r
-\r
-Get NS Id\r
-    [Tags]   cleanup\r
-    ${variables}   Get Variables\r
-    IF   not "\${ns_id}" in "${variables}"\r
-        ${id}=   Get Ns Id   ${ns_name}\r
-        Set Suite Variable   ${ns_id}   ${id}\r
-    END\r
-\r
-\r
-Get VNF Info\r
-    Variable Should Exist  ${ns_id}  msg=NS is not available\r
-    ${ip_addr}=  Get Vnf Management Ip Address   ${ns_id}   ${vnf_index}\r
-    log   ${ip_addr}\r
-    Set Suite Variable   ${vnf_ip_addr}   ${ip_addr}\r
-\r
-    ${vnf_id}=  Get Vnf Id   ${ns_id}   ${vnf_index}\r
-    Set Suite Variable   ${vnf_autoheal_id}   ${vnf_id}\r
-    ${id}=  Get VNF VIM ID   ${vnf_id}\r
-    Set Suite Variable   ${vdu_autoheal_id}   ${id}\r
-    log   ${vdu_autoheal_id}\r
-\r
-    @{autoheal_ip_list}=  Get Vnf Vdur IPs   ${vnf_autoheal_id}\r
-    Set Suite Variable   @{autoheal_ip_list}   @{autoheal_ip_list}\r
-    log   @{autoheal_ip_list}\r
-\r
-\r
-Stop Autoheal VDU\r
-    Variable Should Exist  ${vdu_autoheal_id}  msg=VDU is not available\r
-    Halt Server   ${vdu_autoheal_id}\r
-    Sleep   30\r
-\r
-\r
-Wait For Autohealing To Be Completed\r
-    ${healing_max_wait_time}=   Convert Time   ${healing_max_wait_time}   result_format=number\r
-    ${healing_max_wait_time}=   Evaluate   ${healing_max_wait_time} * ${vim_timeout_multiplier}\r
-    Wait Until Keyword Succeeds   ${healing_max_wait_time}   ${healing_pol_time}   Get Operations By Type   ${ns_id}   heal\r
-    ${stdout}=  Get Operations By Type   ${ns_id}   heal\r
-    Wait Until Keyword Succeeds   ${healing_max_wait_time}   ${healing_pol_time}   Check For NS Operation Ended   ${stdout}\r
-    Check For NS Operation Completed   ${stdout}\r
-\r
-\r
-Check VNF After Healing\r
-    Variable Should Exist  ${vnf_autoheal_id}  msg=VNF is not available\r
-\r
-    @{ip_list}=  Get Vnf Vdur IPs   ${vnf_autoheal_id}\r
-    log   @{ip_list}\r
-    Should Be Equal   ${ip_list}   ${autoheal_ip_list}   IP addresses have changed after healing\r
-\r
-    ${id}=  Get VNF VIM ID   ${vnf_autoheal_id}\r
-    log   ${id}\r
-    Should Not Be Equal   ${id}   ${vdu_autoheal_id}   VDU id has not changed after healing\r
-\r
-\r
-Delete NS Instance\r
-    [Tags]   cleanup\r
-    Delete NS   ${ns_name}\r
-\r
-\r
-Delete NS Descriptor\r
-    [Tags]   cleanup\r
-    Delete NSD   ${nsd_name}\r
-\r
-\r
-Delete VNF Descriptors\r
-    [Tags]   cleanup\r
-    Delete VNFD   ${vnfd_name}\r
-\r
-*** Keywords ***\r
-Suite Cleanup\r
-    [Documentation]  Test Suit Cleanup: Deleting Descriptor, instance and vim\r
-\r
-    Run Keyword If Any Tests Failed  Delete NS   ${ns_name}\r
-    Run Keyword If Any Tests Failed  Delete NSD   ${nsd_name}\r
-    Run Keyword If Any Tests Failed  Delete VNFD   ${vnfd_name}\r
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+
+*** Settings ***
+Documentation   [HEAL-04] Autohealing of NS
+Suite Teardown   Run Keyword And Ignore Error   Suite Cleanup
+Force Tags   heal_04   cluster_main   daily   regression
+Library   OperatingSystem
+Library   String
+Library   Collections
+Library   Process
+Library   SSHLibrary
+Resource   %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot
+Resource   %{ROBOT_DEVOPS_FOLDER}/lib/vnf_lib.robot
+Resource   %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot
+Resource   %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot
+Resource   %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot
+Resource   %{ROBOT_DEVOPS_FOLDER}/lib/openstack_lib.robot
+
+*** Variables ***
+# NS and VNF descriptor package folder and ids
+${vnfd_pkg}   autoheal_vnf
+${vnfd_name}   autoheal_vnfd
+${vdu_name}   autoheal_vnfd-VM
+${vnf_index}   autoheal-basic-1
+${nsd_pkg}   autoheal_ns
+${nsd_name}   autoheal_nsd
+# NS instance name and configuration
+${ns_name}   heal_04
+${ns_config}   {vld: [ {name: mgmt, vim-network-name: %{VIM_MGMT_NET}} ] }
+
+# SSH keys and username to be used
+${publickey}   %{HOME}/.ssh/id_rsa.pub
+${privatekey}   %{HOME}/.ssh/id_rsa
+${username}   ubuntu
+${password}   ${EMPTY}
+
+${success_return_code}   0
+
+#Healing wait time
+${healing_pol_time}   15sec
+${healing_max_wait_time}   10m
+
+*** Test Cases ***
+Create VNF Descriptors
+    Create VNFD   '%{PACKAGES_FOLDER}/${vnfd_pkg}'
+
+
+Create NS Descriptor
+    Create NSD   '%{PACKAGES_FOLDER}/${nsd_pkg}'
+
+
+Network Service Instance Test
+    ${id}=   Create Network Service   ${nsd_name}   %{VIM_TARGET}   ${ns_name}   ${ns_config}   ${publickey}
+    Set Suite Variable   ${ns_id}   ${id}
+
+
+Get NS Id
+    [Tags]   cleanup
+    ${variables}   Get Variables
+    IF   not "\${ns_id}" in "${variables}"
+        ${id}=   Get Ns Id   ${ns_name}
+        Set Suite Variable   ${ns_id}   ${id}
+    END
+
+
+Get VNF Info
+    Variable Should Exist   ${ns_id}   msg=NS is not available
+    ${ip_addr}=   Get Vnf Management Ip Address   ${ns_id}   ${vnf_index}
+    log   ${ip_addr}
+    Set Suite Variable   ${vnf_ip_addr}   ${ip_addr}
+
+    ${vnf_id}=   Get Vnf Id   ${ns_id}   ${vnf_index}
+    Set Suite Variable   ${vnf_autoheal_id}   ${vnf_id}
+    ${id}=   Get VNF VIM ID   ${vnf_id}
+    Set Suite Variable   ${vdu_autoheal_id}   ${id}
+    log   ${vdu_autoheal_id}
+
+    @{autoheal_ip_list}=   Get Vnf Vdur IPs   ${vnf_autoheal_id}
+    Set Suite Variable   @{autoheal_ip_list}   @{autoheal_ip_list}
+    log   @{autoheal_ip_list}
+
+
+Stop Autoheal VDU
+    Variable Should Exist   ${vdu_autoheal_id}   msg=VDU is not available
+    Halt Server   ${vdu_autoheal_id}
+    Sleep   30
+
+
+Wait For Autohealing To Be Completed
+    ${healing_max_wait_time}=   Convert Time   ${healing_max_wait_time}   result_format=number
+    ${healing_max_wait_time}=   Evaluate   ${healing_max_wait_time} * ${vim_timeout_multiplier}
+    Wait Until Keyword Succeeds   ${healing_max_wait_time}   ${healing_pol_time}   Get Operations By Type   ${ns_id}   heal
+    ${stdout}=   Get Operations By Type   ${ns_id}   heal
+    Wait Until Keyword Succeeds   ${healing_max_wait_time}   ${healing_pol_time}   Check For NS Operation Ended   ${stdout}
+    Check For NS Operation Completed   ${stdout}
+
+
+Check VNF After Healing
+    Variable Should Exist   ${vnf_autoheal_id}   msg=VNF is not available
+
+    @{ip_list}=   Get Vnf Vdur IPs   ${vnf_autoheal_id}
+    log   @{ip_list}
+    Should Be Equal   ${ip_list}   ${autoheal_ip_list}   IP addresses have changed after healing
+
+    ${id}=   Get VNF VIM ID   ${vnf_autoheal_id}
+    log   ${id}
+    Should Not Be Equal   ${id}   ${vdu_autoheal_id}   VDU id has not changed after healing
+
+
+Delete NS Instance
+    [Tags]   cleanup
+    Delete NS   ${ns_name}
+
+
+Delete NS Descriptor
+    [Tags]   cleanup
+    Delete NSD   ${nsd_name}
+
+
+Delete VNF Descriptors
+    [Tags]   cleanup
+    Delete VNFD   ${vnfd_name}
+
+*** Keywords ***
+Suite Cleanup
+    [Documentation]   Test Suit Cleanup: Deleting Descriptor, instance and vim
+
+    Run Keyword If Any Tests Failed   Delete NS   ${ns_name}
+    Run Keyword If Any Tests Failed   Delete NSD   ${nsd_name}
+    Run Keyword If Any Tests Failed   Delete VNFD   ${vnfd_name}