X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=tests%2Fdcaegen2-services-pmsh%2Ftestcases%2Fpmsh.robot;h=135d65ddb1c2f00cd54b1cdd16b872c9d4eb14e2;hb=04fef2a321815bc6ab2121b10db3682f79c11e53;hp=ebdae844e91463a6b9950f7315c7270f04b55d41;hpb=59ece202f8ac9d84aae4bbe17defd9d374b513b8;p=integration%2Fcsit.git diff --git a/tests/dcaegen2-services-pmsh/testcases/pmsh.robot b/tests/dcaegen2-services-pmsh/testcases/pmsh.robot index ebdae844..135d65dd 100644 --- a/tests/dcaegen2-services-pmsh/testcases/pmsh.robot +++ b/tests/dcaegen2-services-pmsh/testcases/pmsh.robot @@ -7,157 +7,247 @@ Library String Library Process Resource ../../common.robot - -Test Setup CreateSessions Test Teardown Delete All Sessions *** Variables *** ${PMSH_BASE_URL} https://${PMSH_IP}:8443 -${MR_BASE_URL} https://${MR_SIM_IP_ADDRESS}:3095 +${MR_BASE_URL} http://${MR_IP_ADDRESS}:3904 ${CBS_BASE_URL} https://${CBS_SIM_IP_ADDRESS}:10443 -${HEALTHCHECK_ENDPOINT} /healthcheck - -${MR_EXPECTATION_AAI_PNF_CREATED} %{WORKSPACE}/tests/dcaegen2-services-pmsh/testcases/assets/mr-expectation-aai-pnf-created.json -${MR_EXPECTATION_AAI_PNF_REMOVED} %{WORKSPACE}/tests/dcaegen2-services-pmsh/testcases/assets/mr-expectation-aai-pnf-deleted.json -${MR_EXPECTATION_POLICY_RESPONSE_PNF_NEW} %{WORKSPACE}/tests/dcaegen2-services-pmsh/testcases/assets/mr-expectation-policy-subscription-created-pnf-new.json -${MR_EXPECTATION_POLICY_RESPONSE_PNF_EXISTING} %{WORKSPACE}/tests/dcaegen2-services-pmsh/testcases/assets/mr-expectation-policy-subscription-created-pnf-existing.json -${CBS_EXPECTATION_ADMIN_STATE_UNLOCKED} %{WORKSPACE}/tests/dcaegen2-services-pmsh/testcases/assets/cbs-expectation-unlocked-config.json - +${SUBSCRIPTION_ENDPOINT} /subscription +${POLICY_PUBLISH_MR_TOPIC} /events/unauthenticated.PMSH_CL_INPUT +${AAI_MR_TOPIC} /events/AAI_EVENT + +${MR_AAI_PNF_CREATED} %{WORKSPACE}/tests/dcaegen2-services-pmsh/testcases/assets/aai-pnf-create.json +${MR_AAI_PNF_REMOVED} %{WORKSPACE}/tests/dcaegen2-services-pmsh/testcases/assets/aai-pnf-delete.json +${MR_POLICY_RESPONSE_PNF_EXISTING} %{WORKSPACE}/tests/dcaegen2-services-pmsh/testcases/assets/policy-sub-created-pnf-existing.json +${CBS_EXPECTATION_ADMIN_STATE_UNLOCKED} %{WORKSPACE}/tests/dcaegen2-services-pmsh/testcases/assets/cbs-expectation-unlocked-config.json +${CREATE_SUBSCRIPTION_DATA} %{WORKSPACE}/tests/dcaegen2-services-pmsh/testcases/assets/create_subscription_request.json +${CREATE_SECOND_SUBSCRIPTION_DATA} %{WORKSPACE}/tests/dcaegen2-services-pmsh/testcases/assets/create_second_subscription_request.json +${CREATE_SUBSCRIPTION_BAD_DATA} %{WORKSPACE}/tests/dcaegen2-services-pmsh/testcases/assets/create_subscription_bad_request.json +${CREATE_SUBSCRIPTION_SCHEMA_ERROR_DATA} %{WORKSPACE}/tests/dcaegen2-services-pmsh/testcases/assets/create_subscription_schema_error_request.json ${ADMIN_STATE_LOCKED_PATTERN} 'administrativeState': 'LOCKED' -${ADMIN_STATE_UNLOCKED_PATTERN} 'administrativeState': 'UNLOCKED' -${CLI_EXEC_GET_CBS_CONFIG_FIRST} docker exec pmsh /bin/sh -c "grep -m 1 'PMSH config from CBS' /var/log/ONAP/dcaegen2/services/pmsh/debug.log" -${CLI_EXEC_GET_CBS_CONFIG_LAST} docker exec pmsh /bin/sh -c "grep 'PMSH config from CBS' /var/log/ONAP/dcaegen2/services/pmsh/debug.log | tail -1" - -${DB_CMD_NETWORK_FUNCTIONS_COUNT} docker exec db bash -c "psql -U pmsh -d pmsh -A -t -c 'select count(*) from network_functions;'" -${DB_CMD_NF_TO_SUB_REL_COUNT} docker exec db bash -c "psql -U pmsh -d pmsh -A -t -c 'select count(*) from nf_to_sub_rel;'" -${DB_CMD_SUBSCRIPTIONS_COUNT} docker exec db bash -c "psql -U pmsh -d pmsh -A -t -c 'select count(*) from subscriptions;'" - -${CLI_GET_NETWORK_FUNCTIONS_DB_TABLE} docker exec db bash -c "psql -U pmsh -d pmsh -A -t -c 'select nf_name, orchestration_status from network_functions;'" -${CLI_GET_NF_TO_SUB_REL_DB_TABLE} docker exec db bash -c "psql -U pmsh -d pmsh -A -t -c 'select subscription_name, nf_name, nf_sub_status from nf_to_sub_rel;'" -${CLI_GET_SUBSCRIPTIONS_DB_TABLE} docker exec db bash -c "psql -U pmsh -d pmsh -A -t -c 'select subscription_name, status from subscriptions;'" - +${CLI_EXEC_GET_CBS_CONFIG_FIRST} docker exec pmsh /bin/sh -c "grep -m 1 'PMSH config from CBS' /var/log/ONAP/dcaegen2/services/pmsh/application.log" *** Test Cases *** - -Verify PMSH health check returns 200 and has a status of healthy +Verify Get subscriptions with Network Functions None [Tags] PMSH_01 - [Documentation] Verify the PMSH health check api call functions correctly + [Documentation] Verify Get all subscriptions when there are no defined subscriptions [Timeout] 10 seconds - ${resp}= Get Request pmsh_session ${HEALTHCHECK_ENDPOINT} + ${resp}= GetSubsCall ${SUBSCRIPTION_ENDPOINT} "" Should Be True ${resp.status_code} == 200 - Should Match Regexp ${resp.text} healthy + Should Contain ${resp.text} [] -Verify Administrative State in PMSH log file is LOCKED - [Tags] PMSH_02 - [Documentation] Verify Administrative State as logged in PMSH log file is LOCKED - [Timeout] 10 seconds - Sleep 3 Allow time for PMSH to flush to logs - ${cli_cmd_output}= Run Process ${CLI_EXEC_GET_CBS_CONFIG_FIRST} shell=yes - Should Be True ${cli_cmd_output.rc} == 0 - Should Contain ${cli_cmd_output.stdout} ${ADMIN_STATE_LOCKED_PATTERN} +Verify Create Subscriptions API + [Tags] PMSH_07 + [Documentation] Verify Create Subscription API + [Timeout] 60 seconds + ${json_value}= json_from_file ${CREATE_SUBSCRIPTION_DATA} + ${resp}= PostSubscriptionCall ${SUBSCRIPTION_ENDPOINT} ${json_value} + Should Be True ${resp.status_code} == 201 + ${resp}= GetSubsCall ${SUBSCRIPTION_ENDPOINT} "/subs_01" + Should Be Equal As Strings ${resp.json()[0]['subscription']['subscriptionName']} subs_01 Verify database tables exist and are empty - [Tags] PMSH_03 + [Tags] PMSH_02 [Documentation] Verify database has been created and is empty [Timeout] 10 seconds - VerifyDatabaseEmpty + ${resp}= GetSubsCall ${SUBSCRIPTION_ENDPOINT} "" + Should Be True ${resp.status_code} == 200 + Should Contain ${resp.text} [] Verify PNF detected in AAI when administrative state unlocked - [Tags] PMSH_04 + [Tags] PMSH_03 [Documentation] Verify PNF detected when administrative state unlocked - [Timeout] 40 seconds + [Timeout] 60 seconds SetAdministrativeStateToUnlocked - Sleep 31 Allow PMSH time to pick up changes in CBS config - VerifyCommandOutputContains ${CLI_EXEC_GET_CBS_CONFIG_LAST} ${ADMIN_STATE_UNLOCKED_PATTERN} - VerifyCommandOutputIs ${cli_get_subscriptions_db_table} ExtraPM-All-gNB-R2B|UNLOCKED - VerifyCommandOutputIs ${cli_get_network_functions_db_table} pnf-existing|Active - VerifyCommandOutputIs ${cli_get_nf_to_sub_rel_db_table} ExtraPM-All-gNB-R2B|pnf-existing|PENDING_CREATE + Sleep 31 Allow PMSH time to pick up changes in CBS config + ${resp}= GetMeasGrpCall /subscription/subs_01/measurementGroups/msg_grp_01 + Should Be Equal As Strings ${resp.json()['subscriptionName']} subs_01 + Should Be Equal As Strings ${resp.json()['administrativeState']} UNLOCKED + Should Be Equal As Strings ${resp.json()['networkFunctions'][0]['nfName']} pnf-existing + Should Be Equal As Strings ${resp.json()['networkFunctions'][0]['nfMgStatus']} PENDING_CREATE Verify Policy response on MR is handled - [Tags] PMSH_05 + [Tags] PMSH_04 [Documentation] Verify policy response on MR is handled - [Timeout] 40 seconds - SimulatePolicyResponse ${MR_EXPECTATION_POLICY_RESPONSE_PNF_EXISTING} - Sleep 7 seconds Ensure Policy response on MR is picked up - VerifyCommandOutputIs ${cli_get_nf_to_sub_rel_db_table} ExtraPM-All-gNB-R2B|pnf-existing|CREATED + [Timeout] 60 seconds + SimulatePolicyResponse ${MR_POLICY_RESPONSE_PNF_EXISTING} + Sleep 31 seconds Ensure Policy response on MR is picked up + ${resp}= GetMeasGrpCall /subscription/subs_01/measurementGroups/msg_grp_01 + Should Be Equal As Strings ${resp.json()['subscriptionName']} subs_01 + Should Be Equal As Strings ${resp.json()['administrativeState']} UNLOCKED + Should Be Equal As Strings ${resp.json()['networkFunctions'][0]['nfName']} pnf-existing + Should Be Equal As Strings ${resp.json()['networkFunctions'][0]['nfMgStatus']} CREATED Verify AAI event on MR detailing new PNF being detected is handled - [Tags] PMSH_06 + [Tags] PMSH_05 [Documentation] Verify PNF created AAI event on MR is handled - [Timeout] 30 seconds - SimulateNewPNF - Sleep 12 seconds Ensure AAI event on MR is picked up - VerifyCommandOutputIs ${CLI_GET_SUBSCRIPTIONS_DB_TABLE} ExtraPM-All-gNB-R2B|UNLOCKED - VerifyCommandOutputIs ${CLI_GET_NETWORK_FUNCTIONS_DB_TABLE} pnf-existing|Active\npnf_newly_discovered|Active - VerifyCommandOutputIs ${CLI_GET_NF_TO_SUB_REL_DB_TABLE} ExtraPM-All-gNB-R2B|pnf-existing|CREATED\nExtraPM-All-gNB-R2B|pnf_newly_discovered|PENDING_CREATE + [Timeout] 60 seconds + SimulateNewPNF ${MR_AAI_PNF_CREATED} + Sleep 31 seconds Ensure AAI event on MR is picked up + ${resp}= GetMeasGrpCall /subscription/subs_01/measurementGroups/msg_grp_01 + Should Be Equal As Strings ${resp.json()['subscriptionName']} subs_01 + Should Be Equal As Strings ${resp.json()['administrativeState']} UNLOCKED + Should Be Equal As Strings ${resp.json()['networkFunctions'][1]['nfName']} pnf_newly_discovered + Should Be Equal As Strings ${resp.json()['networkFunctions'][1]['nfMgStatus']} PENDING_CREATE Verify AAI event on MR detailing PNF being deleted is handled - [Tags] PMSH_07 + [Tags] PMSH_06 [Documentation] Verify PNF deleted AAI event on MR is handled - [Timeout] 30 seconds - SimulateDeletedPNF - Sleep 12 seconds Ensure AAI event on MR is picked up - VerifyNumberOfRecordsInDbTable ${DB_CMD_NETWORK_FUNCTIONS_COUNT} 1 - VerifyNumberOfRecordsInDbTable ${DB_CMD_NF_TO_SUB_REL_COUNT} 1 + [Timeout] 60 seconds + SimulateDeletedPNF ${MR_AAI_PNF_REMOVED} + Sleep 31 seconds Ensure AAI event on MR is picked up + ${resp}= GetMeasGrpCall /subscription/subs_01/measurementGroups/msg_grp_01 + Should Not Contain ${resp.text} pnf_newly_discovered + +Verify Create Subscription API for duplicate subscription Id + [Tags] PMSH_08 + [Documentation] Verify Create Subscription API + [Timeout] 60 seconds + ${json_value}= json_from_file ${CREATE_SUBSCRIPTION_DATA} + ${resp}= PostSubscriptionCall ${SUBSCRIPTION_ENDPOINT} ${json_value} + Should Be True ${resp.status_code} == 409 + Should Contain ${resp.json()} subscription Name: subs_01 already exists. + +Verify Create Subscription API for schema error + [Tags] PMSH_09 + [Documentation] Verify Create Subscription API + [Timeout] 60 seconds + ${json_value}= json_from_file ${CREATE_SUBSCRIPTION_SCHEMA_ERROR_DATA} + ${resp}= PostSubscriptionCall ${SUBSCRIPTION_ENDPOINT} ${json_value} + Should Be True ${resp.status_code} == 400 + Should Contain ${resp.json()['detail']} 'administrativeState' is a required property - 'subscription.measurementGroups.0.measurementGroup' + +Verify Create Subscription API for filter values missing + [Tags] PMSH_10 + [Documentation] Verify Create Subscription API + [Timeout] 60 seconds + ${json_value}= json_from_file ${CREATE_SUBSCRIPTION_BAD_DATA} + ${resp}= PostSubscriptionCall ${SUBSCRIPTION_ENDPOINT} ${json_value} + Should Be True ${resp.status_code} == 400 + Should Contain ${resp.json()} At least one filter within nfFilter must not be empty + +Verify Get Measurement Group with Network Functions + [Tags] PMSH_11 + [Documentation] Verify Get Measurement Group with Network Functions by using MGName and SubName + [Timeout] 60 seconds + ${resp}= GetMeasGrpWithNFSCall /subscription/subs_01/measurementGroups/msg_grp_01 + ${nf_length}= Get length ${resp.json()['networkFunctions']} + Should Be True ${resp.status_code} == 200 + Should Be Equal As Strings ${resp.json()['subscriptionName']} subs_01 + Should Be Equal As Strings ${resp.json()['measurementGroupName']} msg_grp_01 + Should Be Equal As Strings ${resp.json()['networkFunctions'][0]['nfName']} pnf-existing + Should be equal as numbers ${nf_length} 1 + +Verify Get single subscription with Network Functions + [Tags] PMSH_12 + [Documentation] Verify Get single subscription with Network Functions by using subscription name + [Timeout] 60 seconds + ${resp}= GetSubsCall ${SUBSCRIPTION_ENDPOINT}/subs_01 "" + ${nf_length}= Get length ${resp.json()['subscription']['nfs']} + Should Be True ${resp.status_code} == 200 + Should Be Equal As Strings ${resp.json()['subscription']['subscriptionName']} subs_01 + Should Be Equal As Strings ${resp.json()['subscription']['nfs'][0]} pnf-existing + Should Be Equal As Strings ${resp.json()['subscription']['measurementGroups'][0]['measurementGroup']['measurementGroupName']} msg_grp_02 + Should be equal as numbers ${nf_length} 1 + +Verify Get single subscription with Network Functions None + [Tags] PMSH_13 + [Documentation] Verify Get single subscription with Network Functions when there is no defined subscription + [Timeout] 60 seconds + ${resp}= GetSubsCall ${SUBSCRIPTION_ENDPOINT}/sub_none "" + Should Be True ${resp.status_code} == 404 + Should Be Equal As Strings ${resp.json()['error']} Subscription was not defined with the name : sub_none + +Verify Get subscriptions with Network Functions + [Tags] PMSH_14 + [Documentation] Verify Get all defined subscriptions with associated Network Functions + [Timeout] 60 seconds + ${json_value}= json_from_file ${CREATE_SECOND_SUBSCRIPTION_DATA} + ${resp_post}= PostSubscriptionCall ${SUBSCRIPTION_ENDPOINT} ${json_value} + ${resp}= GetSubsCall ${SUBSCRIPTION_ENDPOINT} "" + ${nf_length_first}= Get length ${resp.json()[0]['subscription']['nfs']} + ${nf_length_second}= Get length ${resp.json()[1]['subscription']['nfs']} + Should Be True ${resp.status_code} == 200 + Should Be Equal As Strings ${resp.json()[0]['subscription']['subscriptionName']} subs_01 + Should Be Equal As Strings ${resp.json()[0]['subscription']['nfs'][0]} pnf-existing + Should Be Equal As Strings ${resp.json()[0]['subscription']['measurementGroups'][0]['measurementGroup']['measurementGroupName']} msg_grp_02 + Should be equal as numbers ${nf_length_first} 1 + Should Be Equal As Strings ${resp.json()[1]['subscription']['subscriptionName']} subs_02 + Should Be Equal As Strings ${resp.json()[1]['subscription']['nfs'][0]} pnf-existing + Should Be Equal As Strings ${resp.json()[1]['subscription']['measurementGroups'][0]['measurementGroup']['measurementGroupName']} msg_grp_04 + Should be equal as numbers ${nf_length_second} 1 -*** Keywords *** -CreateSessions - Create Session pmsh_session ${PMSH_BASE_URL} - Create Session mr_sim_session ${MR_BASE_URL} - Create Session cbs_sim_session ${CBS_BASE_URL} +*** Keywords *** SetAdministrativeStateToUnlocked ${data}= Get Data From File ${CBS_EXPECTATION_ADMIN_STATE_UNLOCKED} - ${resp} = Put Request cbs_sim_session /clear data={"path": "/service_component_all/.*"} + Create Session cbs_sim_session ${CBS_BASE_URL} verify=false + ${resp}= PUT On Session cbs_sim_session url=/clear data={"path": "/service_component_all/.*"} Should Be True ${resp.status_code} == 200 - Sleep 2 Allow CBS time to set expectation - ${resp} = Put Request cbs_sim_session /expectation data=${data} + Sleep 2 Allow CBS time to set expectation + ${resp} = PUT On Session cbs_sim_session url=/expectation data=${data} Should Be True ${resp.status_code} == 201 -VerifyCommandOutputContains - [Arguments] ${cli_command} ${string_to_check_for} - ${cli_cmd_output}= Run Process ${cli_command} shell=yes - Should Be True ${cli_cmd_output.rc} == 0 - Should Contain ${cli_cmd_output.stdout} ${string_to_check_for} -VerifyCommandOutputIs - [Arguments] ${cli_cmd} ${expected_contents} - ${cli_cmd_output}= Run Process ${cli_cmd} shell=yes - Log ${cli_cmd_output.stdout} - Should Be True ${cli_cmd_output.rc} == 0 - Should Be Equal As Strings ${cli_cmd_output.stdout} ${expected_contents} +SimulatePolicyResponse + [Arguments] ${expected_contents} + ${json_value}= json_from_file ${expected_contents} + ${resp}= PostMrCall ${POLICY_PUBLISH_MR_TOPIC} ${json_value} + log ${resp.text} + Should Be Equal As Strings ${resp.status_code} 200 + ${count}= Evaluate $resp.json().get('count') + log 'JSON Response Code:'${resp} SimulateNewPNF - ${data}= Get Data From File ${MR_EXPECTATION_AAI_PNF_CREATED} - ${resp} = Put Request mr_sim_session /clear data={"path": "/events/AAI_EVENT/dcae_pmsh_cg/AAI-EVENT"} - Should Be True ${resp.status_code} == 200 - ${resp} = Put Request mr_sim_session /expectation data=${data} - Should Be True ${resp.status_code} == 201 - -SimulatePolicyResponse [Arguments] ${expected_contents} - ${data}= Get Data From File ${expected_contents} - ${resp} = Put Request mr_sim_session /clear data={"path": "/events/org.onap.dmaap.mr.PM_SUBSCRIPTIONS/dcae_pmsh_cg/policy_response_consumer"} - Should Be True ${resp.status_code} == 200 - ${resp} = Put Request mr_sim_session /expectation data=${data} - Should Be True ${resp.status_code} == 201 + ${json_value}= json_from_file ${expected_contents} + ${resp}= PostMrCall ${AAI_MR_TOPIC} ${json_value} + log ${resp.text} + Should Be Equal As Strings ${resp.status_code} 200 + ${count}= Evaluate $resp.json().get('count') + log 'JSON Response Code:'${resp} SimulateDeletedPNF - ${data}= Get Data From File ${MR_EXPECTATION_AAI_PNF_REMOVED} - ${resp} = Put Request mr_sim_session /clear data={"path": "/events/AAI_EVENT/dcae_pmsh_cg/AAI-EVENT"} - Should Be True ${resp.status_code} == 200 - ${resp} = Put Request mr_sim_session /expectation data=${data} - Should Be True ${resp.status_code} == 201 - -VerifyNumberOfRecordsInDbTable - [Arguments] ${db_query} ${expected_count} - ${db_count} Run Process ${db_query} shell=yes - Should Be True ${db_count.stdout} == ${expected_count} - -VerifyDatabaseEmpty - VerifyNumberOfRecordsInDbTable ${DB_CMD_NETWORK_FUNCTIONS_COUNT} 0 - VerifyNumberOfRecordsInDbTable ${DB_CMD_NF_TO_SUB_REL_COUNT} 0 - VerifyNumberOfRecordsInDbTable ${DB_CMD_SUBSCRIPTIONS_COUNT} 0 + [Arguments] ${expected_contents} + ${json_value}= json_from_file ${expected_contents} + ${resp}= PostMrCall ${AAI_MR_TOPIC} ${json_value} + log ${resp.text} + Should Be Equal As Strings ${resp.status_code} 200 + ${count}= Evaluate $resp.json().get('count') + log 'JSON Response Code:'${resp} + +PostMrCall + [Arguments] ${url} ${data} + Create Session mr_sim_session ${MR_BASE_URL} verify=false + ${headers}= Create Dictionary Accept=application/json Content-Type=application/json + ${resp}= POST On Session mr_sim_session url=${url} json=${data} headers=${headers} + [Return] ${resp} + +GetSubsCall + [Arguments] ${url} ${url_path_param} + Create Session pmsh_session ${PMSH_BASE_URL} verify=false + ${resp}= GET On Session pmsh_session url=${url} data={"path": {url_path_param}} expected_status=any + [Return] ${resp} + +GetMeasGrpCall + [Arguments] ${url} + Create Session pmsh_session ${PMSH_BASE_URL} verify=false + ${resp}= GET On Session pmsh_session url=${url} + [Return] ${resp} + +GetMeasGrpWithNFSCall + [Arguments] ${url} + Create Session pmsh_session ${PMSH_BASE_URL} verify=false + ${resp}= GET On Session pmsh_session url=${url} + [Return] ${resp} + +PostSubscriptionCall + [Arguments] ${url} ${data} + Create Session pmsh_sub_session ${PMSH_BASE_URL} verify=false + ${headers}= Create Dictionary Accept=application/json Content-Type=application/json + ${resp}= POST On Session pmsh_sub_session url=${url} json=${data} headers=${headers} expected_status=anything + [Return] ${resp}