Updated some function test cases with https
Change-Id: Ic4f75e47db5b23e66024967a974c4c807ff4f07e
Issue-ID: NONRTRIC-268
Signed-off-by: BjornMagnussonXA <bjorn.magnusson@est.tech>
Change-Id: Ibb1e8a09bbd6e7e1d0a388e4cfd89cac6bff0093
diff --git a/test/auto-test/FTC800.sh b/test/auto-test/FTC800.sh
index 1bb6578..b1e9f53 100755
--- a/test/auto-test/FTC800.sh
+++ b/test/auto-test/FTC800.sh
@@ -32,8 +32,6 @@
#Local vars in test script
##########################
-# Path to callback receiver
-CR_PATH="http://$CR_APP_NAME:$CR_EXTERNAL_PORT/callbacks"
# Number of policies in each sequence
NUM_POLICIES=10000
@@ -51,6 +49,19 @@
echo "#####################################################################"
echo "#####################################################################"
+ #Local vars in test script
+ ##########################
+
+ if [ $__httpx == "HTTPS" ]; then
+ # Path to callback receiver
+ CR_PATH="https://$CR_APP_NAME:$CR_EXTERNAL_SECURE_PORT/callbacks"
+ use_cr_https
+ else
+ # Path to callback receiver
+ CR_PATH="http://$CR_APP_NAME:$CR_EXTERNAL_PORT/callbacks"
+ use_cr_http
+ fi
+
# Policy instance start id
START_ID=1
@@ -147,7 +158,13 @@
sim_equal ricsim_g2_1 num_instances $NUM_POLICIES
- use_agent_dmaap
+ if [ $__httpx == "HTTPS" ]; then
+ echo "Using secure ports towards dmaap"
+ use_agent_dmaap_https
+ else
+ echo "Using non-secure ports towards dmaap"
+ use_agent_dmaap_http
+ fi
START_ID=$(($START_ID+$NUM_POLICIES))