Update tags in all testsuites
[osm/tests.git] / robot-systest / testsuite / hackfest_basic.robot
index 95d1827..f721ef7 100644 (file)
@@ -11,6 +11,8 @@
 #   limitations under the License.
 
 *** Settings ***
+Documentation     [HACKFEST-BASIC] Basic NS with a single-VDU VNF
+
 Library   OperatingSystem
 Library   String
 Library   Collections
@@ -25,6 +27,8 @@ Resource   %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot
 
 Variables   %{ROBOT_DEVOPS_FOLDER}/resources/hackfest_basic_ns_data.py
 
+Force Tags   hackfest_basic   cluster_main   daily   regression
+
 Suite Teardown   Run Keyword And Ignore Error   Suite Cleanup
 
 
@@ -39,53 +43,47 @@ ${ns_config}   {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] }
 
 *** Test Cases ***
 Create Hackfest Basic VNF Descriptor
-    [Tags]   hackfest_basic   sanity   regression
 
     Create VNFD   '%{PACKAGES_FOLDER}/${vnfd_pkg}'
 
 
 Create Hackfest Basic NS Descriptor
-    [Tags]   hackfest_basic   sanity   regression
 
     Create NSD   '%{PACKAGES_FOLDER}/${nsd_pkg}'
 
 Network Service Instance Test
-    [Tags]   hackfest_basic   sanity   regression
 
     ${id}=   Create Network Service   ${nsd_name}   %{VIM_TARGET}   ${ns_name}   ${ns_config}   ${publickey}
     Set Suite Variable   ${ns_id}   ${id}
 
 
 Get Vnf Ip Address
-    [Tags]   hackfest_basic   sanity   regression
 
     ${ip_addr}  Get Vnf Management Ip Address   ${ns_id}   ${vnf_member_index}
     log   ${ip_addr}
     Set Suite Variable   ${vnf_ip_addr}   ${ip_addr}
 
 Test Ping
-    [Tags]   hackfest_basic   sanity   regression
     Test Connectivity  ${vnf_ip_addr}
 
 Test SSH Access
-    [Tags]   hackfest_basic   sanity   regression
     Sleep   30s   Waiting ssh daemon to be up
     Test SSH Connection  ${vnf_ip_addr}  ${username}  ${password}  ${privatekey} 
 
 Delete NS Instance Test
-    [Tags]   hackfest_basic   sanity   regression   cleanup
+    [Tags]   cleanup
 
     Delete NS   ${ns_name}
 
 
 Delete NS Descriptor Test
-    [Tags]   hackfest_basic   sanity   regression   cleanup
+    [Tags]   cleanup
 
     Delete NSD   ${nsd_name}
 
 
 Delete VNF Descriptor Test
-    [Tags]   hackfest_basic   sanity   regression   cleanup
+    [Tags]   cleanup
 
     Delete VNFD   ${vnfd_name}