diff options
author | rameshiyer27 <ramesh.murugan.iyer@est.tech> | 2023-02-23 10:42:55 +0000 |
---|---|---|
committer | rameshiyer27 <ramesh.murugan.iyer@est.tech> | 2023-02-27 11:18:04 +0000 |
commit | 93fd9983e1eb8438d0836625d7061302e054d04c (patch) | |
tree | 9c8bddc3146d67434c452d3761df616eb2d28a98 /helm/run-test.sh | |
parent | a6664dc5c767210a78f140b9fa149c2a8261b428 (diff) |
Add helm charts for drools,xacml pdps
Robot test files will be included in a common directory as part of the CSIT refactoring work.
Issue-ID: POLICY-4542
Signed-off-by: zrrmmua <ramesh.murugan.iyer@est.tech>
Change-Id: I0915bb9801d483a9ce382a8c6978de6138c86d72
Diffstat (limited to 'helm/run-test.sh')
-rwxr-xr-x | helm/run-test.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/helm/run-test.sh b/helm/run-test.sh index d40bb585..9dde50df 100755 --- a/helm/run-test.sh +++ b/helm/run-test.sh @@ -30,14 +30,21 @@ export POLICY_PAP_IP=policy-pap export APEX_IP=policy-apex-pdp export DMAAP_IP=message-router export SIM_IP=message-router +export POLICY_PDPX_IP=policy-xacml-pdp +export POLICY_PDPX_PORT=6969 export ROBOT_VARIABLES= ROBOT_VARIABLES="-v DATA:$DATA -v NODETEMPLATES:$NODETEMPLATES -v POLICY_RUNTIME_ACM_IP:$POLICY_RUNTIME_ACM_IP -v POLICY_API_IP:$POLICY_API_IP --v POLICY_PAP_IP:$POLICY_PAP_IP -v APEX_IP:$APEX_IP -v DMAAP_IP:$DMAAP_IP -v SIM_IP:$SIM_IP" +-v POLICY_PAP_IP:$POLICY_PAP_IP -v APEX_IP:$APEX_IP -v DMAAP_IP:$DMAAP_IP -v SIM_IP:$SIM_IP -v POLICY_PDPX_IP:$POLICY_PDPX_IP" echo "Run Robot test" echo ROBOT_VARIABLES="${ROBOT_VARIABLES}" echo "Starting Robot test suites ..." + +if [ $1 == "xacml-pdp-test.robot" ]; then + echo "Waiting for Xacml application to start" + ./data/wait_for_rest.sh policy-xacml-pdp "${POLICY_PDPX_PORT}" +fi python3 -m robot.run -d /tmp/ $ROBOT_VARIABLES $1 RESULT=$? echo "RESULT: ${RESULT}" |