blob: 2462cc279dede9cde0025560b19596ba6ef4d4b2 [file] [log] [blame]
Brian Freemanadaa2372018-10-24 12:25:22 -05001*** Settings ***
2Documentation SO Cloud Config Test Cases
3Test Timeout 1 minute
4
DR695H0b4b16c2019-07-24 16:40:42 -04005Library ONAPLibrary.SO WITH NAME SO
Brian Freeman9d85d0b2019-04-17 13:46:53 -05006Resource ../resources/aai/create_tenant.robot
Brian Freemanadaa2372018-10-24 12:25:22 -05007
8
9*** Test Cases ***
10Create Cloud Config Test
DR695Hc0cf6a42019-07-26 16:42:36 -040011 [TAGS] so cloudconfig
Brian Freemanadaa2372018-10-24 12:25:22 -050012 # Run Create Cloud Configuration RegionOne RegionOne RegionOne DEFAULT_KEYSTONE identify_url:http://10.12.25.2:5000/v2.0 mso_id:demo mso_pass:encrypted_password admin_tenant:1e097c6713e74fd7ac8e4295e605ee1e member_role:admin identity_server_type:KEYSTONE identity_authentication_type:USERNAME_PASSWORD
mrichomme3256fa22020-03-09 11:23:35 +010013 ${arguments}= Create Dictionary site_name=${GLOBAL_INJECTED_REGION} region_id=${GLOBAL_INJECTED_REGION} clli=${GLOBAL_INJECTED_REGION} identity_id=DEFAULT_KEYSTONE identity_url=${GLOBAL_INJECTED_KEYSTONE}/${GLOBAL_INJECTED_OPENSTACK_KEYSTONE_API_VERSION} mso_id=${GLOBAL_INJECTED_OPENSTACK_USERNAME} mso_pass=${GLOBAL_INJECTED_OPENSTACK_API_KEY} admin_tenant=${GLOBAL_INJECTED_OPENSTACK_TENANT_ID} member_role=admin identity_server_type=KEYSTONE_V3 authentication_type=USERNAME_PASSWORD
DR695Hc0cf6a42019-07-26 16:42:36 -040014 ${auth}= Create List ${GLOBAL_SO_CATDB_USERNAME} ${GLOBAL_SO_PASSWORD}
DR695H0b4b16c2019-07-24 16:40:42 -040015 SO.Upsert Cloud Configuration ${GLOBAL_SO_CATDB_ENDPOINT} ${GLOBAL_SO_CLOUD_CONFIG_PATH} ${GLOBAL_TEMPLATE_FOLDER} ${GLOBAL_SO_CLOUD_CONFIG_TEMPLATE} ${arguments} auth=${auth}
Brian Freeman0789aef2019-04-15 16:57:18 -050016
17Create Cloud Config RegionThree V3 Test
DR695Hc0cf6a42019-07-26 16:42:36 -040018 [TAGS] so cloudconfig cloudconfigv3
Brian Freeman9d85d0b2019-04-17 13:46:53 -050019 [Documentation] Create Keystone V3 in Region 3
mrichomme3256fa22020-03-09 11:23:35 +010020 ... [Arguments] ${site_name} ${region_id} ${clli} ${identity_id} ${identity_url} ${mso_id} ${mso_pass}
Brian Freeman9d85d0b2019-04-17 13:46:53 -050021 ... ${admin_tenant} ${member_role} ${identity_server_type} ${authentication_type} ${project_domain_name} ${user_domain_Name}
22 ... ${region_id} in openstack is set up by cloud administration and does not have to be same as ONAP ${site_name}
23 ... In Windriver/Intel test labs the os_region_id's are all set to "RegionOne"
24 ... clli by testing team convention is same as onap site_name
25 ... KEYSTONE URL should end in /v3 SO will put /auth when KEYSTONE_V3 is the identity_server_type
mrichomme3256fa22020-03-09 11:23:35 +010026 ${arguments}= Create Dictionary site_name=${GLOBAL_INJECTED_REGION_THREE} region_id=${GLOBAL_INJECTED_REGION} clli=${GLOBAL_INJECTED_REGION_THREE} identity_id=REGION_THREE_KEYSTONE identity_url=${GLOBAL_INJECTED_KEYSTONE_REGION_THREE}/${GLOBAL_INJECTED_OPENSTACK_KEYSTONE_API_VERSION_REGION_THREE} mso_id=${GLOBAL_INJECTED_OPENSTACK_USERNAME_REGION_THREE} mso_pass=${GLOBAL_INJECTED_OPENSTACK_SO_ENCRYPTED_PASSWORD_REGION_THREE} admin_tenant=${GLOBAL_INJECTED_OPENSTACK_TENANT_ID_REGION_THREE} member_role=admin identity_server_type=KEYSTONE_V3 authentication_type=USERNAME_PASSWORD project_domain_name=${GLOBAL_INJECTED_OPENSTACK_PROJECT_DOMAIN_REGION_THREE} user_domain_name=${GLOBAL_INJECTED_OPENSTACK_USER_DOMAIN_REGION_THREE}
DR695Hc0cf6a42019-07-26 16:42:36 -040027 ${auth}= Create List ${GLOBAL_SO_CATDB_USERNAME} ${GLOBAL_SO_PASSWORD}
DR695H0b4b16c2019-07-24 16:40:42 -040028 SO.Upsert Cloud Configuration ${GLOBAL_SO_CATDB_ENDPOINT} ${GLOBAL_SO_CLOUD_CONFIG_PATH} ${GLOBAL_TEMPLATE_FOLDER} ${GLOBAL_SO_CLOUD_CONFIG_TEMPLATE} ${arguments} auth=${auth}
Brian Freemanf0e37ce2019-04-25 16:12:32 -050029 Inventory Tenant If Not Exists CloudOwner ${GLOBAL_INJECTED_REGION_THREE} SharedNode OwnerType v1 CloudZone ${GLOBAL_INJECTED_OPENSTACK_TENANT_ID_REGION_THREE} ${GLOBAL_INJECTED_OPENSTACK_PROJECT_DOMAIN_REGION_THREE}
Brian Freeman9d85d0b2019-04-17 13:46:53 -050030
Brian Freemanadaa2372018-10-24 12:25:22 -050031Get Cloud Config Test
32 [TAGS] mso cloudconfig
DR695Hc0cf6a42019-07-26 16:42:36 -040033 ${auth}= Create List ${GLOBAL_SO_CATDB_USERNAME} ${GLOBAL_SO_PASSWORD}
mrichomme3256fa22020-03-09 11:23:35 +010034 ${get_resp}= SO.Get Cloud Configuration ${GLOBAL_SO_CATDB_ENDPOINT} ${GLOBAL_SO_CLOUD_CONFIG_PATH} ${GLOBAL_INJECTED_REGION} auth=${auth}
35 Should Be Equal As Strings ${get_resp.status_code} 200