diff options
author | Bilal A <bilal@research.att.com> | 2019-02-27 13:52:05 -0500 |
---|---|---|
committer | Bilal A <bilal@research.att.com> | 2019-02-27 14:06:23 -0500 |
commit | f762f7400752c848cba93d666f0b4549b667a134 (patch) | |
tree | 63acb6fe742ab93f439bae315c088f120ff99fb9 /testsuites/performance/src/main/resources/testplans/clean_policy.sh | |
parent | 7101ee5fe217b6f3d864e2bda979fc0c14f7db92 (diff) |
Changes directory structure of S3P Tests
Changes Include:
a) Moving performance and stability tests into two separate directories.
Change-Id: Ib98713b2c37658de16c5eb6ee8918b867bdf5b8a
Issue-ID: POLICY-1462
Signed-off-by: Bilal A <bilal@research.att.com>
Diffstat (limited to 'testsuites/performance/src/main/resources/testplans/clean_policy.sh')
-rwxr-xr-x | testsuites/performance/src/main/resources/testplans/clean_policy.sh | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/testsuites/performance/src/main/resources/testplans/clean_policy.sh b/testsuites/performance/src/main/resources/testplans/clean_policy.sh new file mode 100755 index 00000000..7b45ea8b --- /dev/null +++ b/testsuites/performance/src/main/resources/testplans/clean_policy.sh @@ -0,0 +1,41 @@ +#!/bin/bash + +function print_usage_and_exit { + [ -z "$1" ] || echo "Error: $1" + echo "Usage: $0 [ <dir> | <rulename> ]" + echo " - <dir> directory where the s3p csar files stores, policies related to them will be cleaned from PDP/PAP" + echo " - <rulename> rulename to be cleaned" + exit 1 +} + +[ "$#" -ne 1 ] && print_usage_and_exit + +rules=() +if [ -d $1 ]; then + files=(`find "$1" -maxdepth 1 -name "*.csar" -printf "%f\n"`) + for i in ${files[@]}; do + fn=`echo $i | cut -d '.' -f 1` + rules+=("oofCasablanca.Config_OOF_Optimization_${fn}.1.xml") + done +else + rules+=($1) +fi + +for NAME in ${rules[@]}; do + BODY="{\"policyComponent\":\"PDP\",\"policyType\":\"Optimization\",\"pdpGroup\":\"default\",\"policyName\":\"${NAME}\"}" + rescode=`curl --silent --output /dev/null --write-out %{http_code} -k -H 'Content-Type: application/json' -H 'Accept: application/json' -H 'ClientAuth: cHl0aG9uOnRlc3Q=' -H 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' -H 'Environment: TEST' -X DELETE -d $BODY https://pdp:8081/pdp/api/deletePolicy` + if [ "$rescode" == "200" ]; then + echo "delete $NAME in PDP success" + else + echo "delete $NAME in PDP FAIL with rescode $rescode" + fi + + BODY="{\"policyName\":\"${NAME}\",\"policyComponent\":\"PAP\",\"policyType\":\"Optimization\",\"deleteCondition\":\"ALL\"}" + rescode=`curl --silent --output /dev/null --write-out %{http_code} -k -H 'Content-Type: application/json' -H 'Accept: application/json' -H 'ClientAuth: cHl0aG9uOnRlc3Q=' -H 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' -H 'Environment: TEST' -X DELETE -d $BODY https://pdp:8081/pdp/api/deletePolicy` + if [ "$rescode" == "200" ]; then + echo "delete $NAME in PAP success" + else + echo "delete $NAME in PAP FAIL with rescode $rescode" + fi +done + |