diff options
author | DR695H <dr695h@att.com> | 2019-05-24 15:05:03 -0400 |
---|---|---|
committer | DR695H <dr695h@att.com> | 2019-07-22 18:00:55 -0400 |
commit | 102f3207fbec080e81d4abaa9c7277cbf5d52a37 (patch) | |
tree | 54d33855afdfc35271a78d7c4ae0913b111d9806 /robot/resources/so | |
parent | c1103fba68e3461b136b044daec3339d0e6575f7 (diff) |
move the main so interface to use onaplibrary
left some cloud config and direct instantiate seperate
Change-Id: I4c508d5403c660f83b14b98585111b9219bae6b7
Issue-ID: TEST-158
Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'robot/resources/so')
-rw-r--r-- | robot/resources/so/create_cloud_config.robot | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/robot/resources/so/create_cloud_config.robot b/robot/resources/so/create_cloud_config.robot deleted file mode 100644 index 5f471fb9..00000000 --- a/robot/resources/so/create_cloud_config.robot +++ /dev/null @@ -1,57 +0,0 @@ -*** Settings *** -Documentation Create Cloud Config - -Resource ../so_interface.robot -Library OperatingSystem -Library Collections -Library ONAPLibrary.Templating WITH NAME Templating - - -*** Variables *** -${CLOUD_CONFIG_PATH} /cloudSite - -${SYSTEM USER} robot-ete -${SO_ADD_CLOUD_CONFIG}= so/create_cloud_config.jinja -${SO_ADD_CLOUD_CONFIG_V3}= so/cloud_config_v3.jinja - -*** Keywords *** -Create Cloud Configuration - [Documentation] Creates a cloud configuration in SO, so it knows how to talk to an openstack cloud - [Arguments] ${site_name} ${region_id} ${clli} ${identity_id} ${identity_url} ${mso_id} ${mso_pass} ${admin_tenant} ${member_role} ${identity_server_type} ${authentication_type} - ${arguments}= Create Dictionary site_name=${site_name} region_id=${region_id} clli=${clli} identity_id=${identity_id} identity_url=${identity_url} mso_id=${mso_id} mso_pass=${mso_pass} admin_tenant=${admin_tenant} member_role=${member_role} identity_server_type=${identity_server_type} authentication_type=${authentication_type} - Templating.Create Environment so ${GLOBAL_TEMPLATE_FOLDER} - ${data}= Templating.Apply Template so ${SO_ADD_CLOUD_CONFIG} ${arguments} - ${get_resp}= Run SO Catalog Post request ${CLOUD_CONFIG_PATH}/${site_name} ${data} - - ${get_resp}= Run Keyword If '${get_resp.status_code}'=='404' Update Cloud Configuration ${site_name} ${region_id} ${clli} ${identity_id} ${identity_url} ${mso_id} ${mso_pass} ${admin_tenant} ${member_role} ${identity_server_type} ${authentication_type} - Should Be Equal As Strings ${get_resp.status_code} 200 - - -Create Cloud Configuration v3 - [Documentation] Creates a cloud configuration in SO, so it knows how to talk to an openstack cloud - [Arguments] ${site_name} ${region_id} ${clli} ${identity_id} ${identity_url} ${mso_id} ${mso_pass} ${admin_tenant} ${member_role} ${identity_server_type} ${authentication_type} ${project_domain_name} ${user_domain_Name} - ${arguments}= Create Dictionary site_name=${site_name} region_id=${region_id} clli=${clli} identity_id=${identity_id} identity_url=${identity_url} mso_id=${mso_id} mso_pass=${mso_pass} admin_tenant=${admin_tenant} member_role=${member_role} identity_server_type=${identity_server_type} authentication_type=${authentication_type} project_domain_name=${project_domain_name} user_domain_name=${user_domain_name} - Log ${arguments} - Templating.Create Environment so ${GLOBAL_TEMPLATE_FOLDER} - ${data}= Templating.Apply Template so ${SO_ADD_CLOUD_CONFIG_V3} ${arguments} - ${get_resp}= Run SO Catalog Post request ${CLOUD_CONFIG_PATH} ${data} - ${status_string}= Convert To String ${get_resp.status_code} - Should Match Regexp ${status_string} ^(201|200)$ - -Update Cloud Configuration - [Documentation] Updates a cloud configuration in SO - [Arguments] ${site_name} ${region_id} ${clli} ${identity_id} ${identity_url} ${mso_id} ${mso_pass} ${admin_tenant} ${member_role} ${identity_server_type} ${authentication_type} - ${arguments}= Create Dictionary site_name=${site_name} region_id=${region_id} clli=${clli} identity_id=${identity_id} identity_url=${identity_url} mso_id=${mso_id} mso_pass=${mso_pass} admin_tenant=${admin_tenant} member_role=${member_role} identity_server_type=${identity_server_type} authentication_type=${authentication_type} - Templating.Create Environment so ${GLOBAL_TEMPLATE_FOLDER} - ${data}= Templating.Apply Template so ${SO_ADD_CLOUD_CONFIG} ${arguments} - ${get_resp}= Run SO Catalog Put request ${CLOUD_CONFIG_PATH}/${site_name} ${data} - Should Be Equal As Strings ${get_resp.status_code} 200 - [Return] ${get_resp} - -Get Cloud Configuration - [Documentation] Gets cloud configuration in SO - [Arguments] ${site_name} - ${get_resp}= Run MSO Catalog Get request ${CLOUD_CONFIG_PATH}/${site_name} - Should Be Equal As Strings ${get_resp.status_code} 200 - - |