diff options
author | Jim Hahn <jrh3@att.com> | 2021-07-12 15:07:33 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2021-07-12 15:08:56 -0400 |
commit | fa0661613294583be553a81350677852e1e41907 (patch) | |
tree | 2faec251c386453e144874a09087eecbac65db5c | |
parent | 78850b54b98e8bdc27d186035910126dd2ac826e (diff) |
Check exit status of wait_topic in xacml-pdp CSIT
Added code to the xacml-pdp robot script to check the exit status of
wait_topic, to ensure that it succeeded.
Issue-ID: POLICY-3473
Change-Id: Ie47bb861cd331c42aa5ae4f91c38a259796be842
Signed-off-by: Jim Hahn <jrh3@att.com>
-rw-r--r-- | csit/xacml-pdp/plans/setup.sh | 2 | ||||
-rw-r--r-- | csit/xacml-pdp/tests/xacml-pdp-test.robot | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/csit/xacml-pdp/plans/setup.sh b/csit/xacml-pdp/plans/setup.sh index 23ebf6fe..718d5123 100644 --- a/csit/xacml-pdp/plans/setup.sh +++ b/csit/xacml-pdp/plans/setup.sh @@ -39,6 +39,8 @@ POLICY_PDPX_IP=`get-instance-ip.sh policy-xacml-pdp` SIM_IP=`get-instance-ip.sh simulator` POLICY_PAP_IP=`get-instance-ip.sh policy-pap` +export SIM_IP + echo PDP IP IS ${POLICY_PDPX_IP} echo API IP IS ${POLICY_API_IP} echo PAP IP IS ${POLICY_PAP_IP} diff --git a/csit/xacml-pdp/tests/xacml-pdp-test.robot b/csit/xacml-pdp/tests/xacml-pdp-test.robot index e19e0042..c88959d0 100644 --- a/csit/xacml-pdp/tests/xacml-pdp-test.robot +++ b/csit/xacml-pdp/tests/xacml-pdp-test.robot @@ -54,9 +54,9 @@ GetDefaultDecision DeployPolicies [Documentation] Runs Policy PAP to deploy a policy ${resp}= PerformPostRequest /policy/pap/v1/pdps/policies null ${POLICY_PAP_IP} 202 vCPE.policy.input.tosca.deploy.json ${CURDIR}/data - Sleep 5s ${result}= Run Process ${SCR_DMAAP}/wait_topic.sh POLICY-PDP-PAP ... responseTo xacml ACTIVE onap.restart.tca + Should Be Equal As Integers ${result.rc} 0 GetStatisticsAfterDeployed [Documentation] Verify policy xacml-pdp statistics after policy is deployed |