Fix bug 1478: JUJU password is replaced in a copy of the NS package
[osm/tests.git] / robot-systest / testsuite / basic_12-ns_primitives.robot
index e4113e7..6b94d3a 100644 (file)
@@ -34,15 +34,18 @@ Suite Teardown   Run Keyword And Ignore Error   Suite Cleanup
 *** Variables ***
 ${ns_config}   {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] }
 ${publickey}   ${EMPTY}
+${success_return_code}   0
+
 
 *** Test Cases ***
 Change Juju Password
-
     [Documentation]  NS package needs to be updated with the Juju credentials for your OSM installation
 
-    ${nsd_yaml}=   Get File  %{PACKAGES_FOLDER}/${nsd_pkg}/${nsd_file}
+    ${rc}   ${stdout}=   Run and Return RC and Output   cp -r '%{PACKAGES_FOLDER}/${nsd_pkg}' '%{PACKAGES_FOLDER}/${new_nsd_pkg}'
+    Should Be Equal As Integers   ${rc}   ${success_return_code}
+    ${nsd_yaml}=   Get File  %{PACKAGES_FOLDER}/${new_nsd_pkg}/${nsd_file}
     ${changed_nsd_yaml}=   Replace String  ${nsd_yaml}  ${old_juju_password}  %{JUJU_PASSWORD}
-    Create File  %{PACKAGES_FOLDER}/${nsd_pkg}/${nsd_file}  ${changed_nsd_yaml}
+    Create File  %{PACKAGES_FOLDER}/${new_nsd_pkg}/${nsd_file}  ${changed_nsd_yaml}
 
 Upload Vnfds
 
@@ -51,7 +54,7 @@ Upload Vnfds
 
 Upload Nsd
 
-    Create NSD  %{PACKAGES_FOLDER}/${nsd_pkg}/
+    Create NSD  %{PACKAGES_FOLDER}/${new_nsd_pkg}/
 
 Instantiate NS
 
@@ -61,19 +64,17 @@ Instantiate NS
 # TODO: Check Initial Config Primitives Status
 
 Delete NS 
-
     [Tags]   cleanup
 
     Delete NS   ${ns_name}
 
 Delete NS Descriptor
-
     [Tags]   cleanup
 
     Delete NSD   ${nsd_name}
+    Delete Temporary Descriptor Folder  '%{PACKAGES_FOLDER}/${new_nsd_pkg}'
 
 Delete VNF Descriptors
-
     [Tags]   cleanup
 
     Delete VNFD   ${vnfd_name1}
@@ -88,3 +89,14 @@ Suite Cleanup
     Run Keyword If Any Tests Failed  Delete NSD   ${nsd_name}
     Run Keyword If Any Tests Failed  Delete VNFD   ${vnfd_name1}
     Run Keyword If Any Tests Failed  Delete VNFD   ${vnfd_name2}
+    Delete Temporary Descriptor Folder  '%{PACKAGES_FOLDER}/${new_nsd_pkg}'
+
+
+Delete Temporary Descriptor Folder
+    [Documentation]  Removes the temporary package folder created for the test
+    [Arguments]   ${folder_name}
+
+    ${rc}   ${stdout}=   Run and Return RC and Output   rm -rf '${folder_name}'
+    log   ${stdout}
+
+