diff options
author | krzysztof kuzmicki <krzysztof.kuzmicki@nokia.com> | 2019-07-31 20:08:36 +0200 |
---|---|---|
committer | Daniel Rose <dr695h@att.com> | 2019-08-02 19:23:00 +0000 |
commit | dadd0e69a24c6a43534086cb04672dc6d4ddc18b (patch) | |
tree | 83ba7fac3fe3367da96642ab5289a01d2eaa0097 /robot/resources/test_templates/model_test_template.robot | |
parent | e971ed9437e004b415b4321edc75883d69eca3e5 (diff) |
ROBOT test cases improvements for PnP PNF in El Alto release
Issue-ID: INT-1179
Signed-off-by: Krzysztof Kuzmicki <krzysztof.kuzmicki@nokia.com>
Change-Id: I7b840e4fa53c9058d74872cbaf3e1922651b7997
Diffstat (limited to 'robot/resources/test_templates/model_test_template.robot')
-rw-r--r-- | robot/resources/test_templates/model_test_template.robot | 51 |
1 files changed, 45 insertions, 6 deletions
diff --git a/robot/resources/test_templates/model_test_template.robot b/robot/resources/test_templates/model_test_template.robot index 8cfecc25..7c40e496 100644 --- a/robot/resources/test_templates/model_test_template.robot +++ b/robot/resources/test_templates/model_test_template.robot @@ -11,15 +11,17 @@ Resource ../sdc_interface.robot *** Variables *** ${SDC_ASSETS_DIRECTORY} ${GLOBAL_HEAT_TEMPLATES_FOLDER} ${SDC_ZIP_DIRECTORY} ${SDC_ASSETS_DIRECTORY}/temp +${SDC_TOSCA_ONBOARDING_PACKAGES_DIRECTORY} ${GLOBAL_TOSCA_ONBOARDING_PACKAGES_FOLDER} +${SDC_CSAR_DIRECTORY} ${SDC_TOSCA_ONBOARDING_PACKAGES_DIRECTORY}/temp *** Keywords *** Model Distribution For Directory With Teardown - [Arguments] ${service} ${catalog_service_name}= ${cds}=None + [Arguments] ${service} ${catalog_service_name}= ${cds}=False ${catalog_service_name} ${catalog_resource_name} ${vf_modules} ${catalog_resources} ${catalog_resource_ids} ${catalog_service_id}= Model Distribution For Directory ${service} ${catalog_service_name} ${cds} [Teardown] Teardown Models ${catalog_service_id} ${catalog_resource_ids} - + Model Distribution For Directory - [Arguments] ${service} ${catalog_service_name}= ${cds}=None + [Arguments] ${service} ${catalog_service_name}= ${cds}=False ${instantiationType}=A-la-carte ${resourceType}=VF ServiceMapping.Set Directory default ${GLOBAL_SERVICE_MAPPING_DIRECTORY} ${directory_list}= ServiceMapping.Get Service Folder Mapping default ${service} ${ziplist}= Create List @@ -27,6 +29,14 @@ Model Distribution For Directory ${service_name}= Catenate ${service} ${uuid} ${shortened_uuid}= Evaluate str("${service_name}")[:23] ${catalog_service_name}= Set Variable If '${catalog_service_name}' =='' ${shortened_uuid} ${catalog_service_name} + Run Keyword If '${resourceType}'=='PNF' Create CSARSs in SDC Onboarding Packages Directory ${directory_list} ${ziplist} + ... ELSE Create ZIPs in SDC ZIP Directory ${directory_list} ${ziplist} + ${catalog_service_name} ${catalog_resource_name} ${vf_modules} ${catalog_resource_ids} ${catalog_service_id} ${catalog_resources} Distribute Model From SDC ${ziplist} ${catalog_service_name} ${cds} ${service} instantiationType=${instantiationType} resourceType=${resourceType} + Download CSAR ${catalog_service_id} + [Return] ${catalog_service_name} ${catalog_resource_name} ${vf_modules} ${catalog_resources} ${catalog_resource_ids} ${catalog_service_id} + +Create ZIPs in SDC ZIP Directory + [Arguments] ${directory_list} ${ziplist} :FOR ${directory} IN @{directory_list} \ ${zipname}= Replace String ${directory} / _ \ ${zip}= Catenate ${SDC_ZIP_DIRECTORY}/${zipname}.zip @@ -34,9 +44,38 @@ Model Distribution For Directory \ OperatingSystem.Create Directory ${SDC_ASSETS_DIRECTORY}/temp \ Create Zip From Files In Directory ${folder} ${zip} \ Append To List ${ziplist} ${zip} - ${catalog_service_name} ${catalog_resource_name} ${vf_modules} ${catalog_resource_ids} ${catalog_service_id} ${catalog_resources} Distribute Model From SDC ${ziplist} ${catalog_service_name} ${cds} ${service} - Download CSAR ${catalog_service_id} - [Return] ${catalog_service_name} ${catalog_resource_name} ${vf_modules} ${catalog_resources} ${catalog_resource_ids} ${catalog_service_id} + [Return] ${ziplist} + +Create CSARSs in SDC Onboarding Packages Directory + [Arguments] ${directory_list} ${ziplist} + :FOR ${directory} IN @{directory_list} + \ ${zipname}= Replace String ${directory} / _ + \ ${csar}= Catenate ${SDC_CSAR_DIRECTORY}/${zipname}.csar + \ ${folder}= Catenate ${SDC_TOSCA_ONBOARDING_PACKAGES_DIRECTORY}/${directory} + \ OperatingSystem.Create Directory ${SDC_TOSCA_ONBOARDING_PACKAGES_DIRECTORY}/temp + \ Create Zip From Files In Directory ${folder} ${csar} sub_directories=${true} + \ Append To List ${ziplist} ${csar} + [Return] ${ziplist} + +TOSCA Based PNF Model Distribution For Directory + [Arguments] ${service} ${catalog_service_name}= + ServiceMapping.Set Directory default ${GLOBAL_SERVICE_MAPPING_DIRECTORY} + ${directory_list}= ServiceMapping.Get Service Folder Mapping default ${service} + ${csarlist}= Create List + ${uuid}= Get Current Date + ${service_name}= Catenate ${service} ${uuid} + ${shortened_uuid}= Evaluate str("${service_name}")[:23] + ${catalog_service_name}= Set Variable If '${catalog_service_name}' =='' ${shortened_uuid} ${catalog_service_name} + :for ${directory} IN @{directory_list} + \ ${zipname}= Replace String ${directory} / _ + \ ${csar}= Catenate ${SDC_CSAR_DIRECTORY}/${zipname}.csar + \ ${folder}= Catenate ${SDC_TOSCA_ONBOARDING_PACKAGES_DIRECTORY}/${directory} + \ OperatingSystem.Create Directory ${SDC_TOSCA_ONBOARDING_PACKAGES_DIRECTORY}/temp + \ Create Zip From Files In Directory ${folder} ${csar} sub_directories=${true} + \ Append To List ${csarlist} ${csar} + ${catalog_service_name} ${catalog_resource_name} ${catalog_resource_ids} ${catalog_service_id} ${catalog_resources} Distribute TOSCA Model From SDC ${csarlist} ${catalog_service_name} ${service} + Download CSAR ${catalog_service_id} + [Return] ${catalog_service_name} ${catalog_resource_name} ${catalog_resources} Teardown Models [Documentation] Clean up at the end of the test |