Minor fix for a1pms_api_function 19/12019/1
authorrohithrajneesh <rohith.rajneesh@est.tech>
Mon, 6 Nov 2023 18:02:22 +0000 (18:02 +0000)
committerrohithrajneesh <rohith.rajneesh@est.tech>
Mon, 6 Nov 2023 18:02:35 +0000 (18:02 +0000)
ISSUE-ID: NONRTRIC-939
Change-Id: Idca238f5a5a8d82a2b8054949fe36240115c4ba2
Signed-off-by: rohithrajneesh <rohith.rajneesh@est.tech>
test/common/a1pms_api_functions.sh

index 9da4db5..e065034 100644 (file)
@@ -543,22 +543,16 @@ prepare_a1pms_config() {
                        echo $YELLOW"Warning: No rics found for the configuration"$EYELLOW
                fi
        else
+           rics=$(docker ps --filter "name=$RIC_SIM_PREFIX" --filter "network=$DOCKER_SIM_NWNAME" --filter "label=a1sim" --filter "status=running" --format {{.Names}})
                oranrics=$(docker ps --filter "name=$RIC_SIM_PREFIX" --filter "network=$DOCKER_SIM_NWNAME" --filter "label=orana1sim" --filter "status=running" --format {{.Names}})
-               if [ $? -ne 0 ] || [ -z "$oranrics" ]; then
-                       echo -e $RED" FAIL - the names of the running RIC Simulator cannot be retrieved." $ERED
+
+               rics="$rics $oranrics"
+
+               if [ $? -ne 0 ] || [ -z "$rics" ]; then
+                       echo -e $RED" FAIL - the names of the running RIC Simulator or ORAN RIC cannot be retrieved." $ERED
                        ((RES_CONF_FAIL++))
-                       return 1
+                       exit 1
                fi
-               
-               rics=$(docker ps --filter "name=$RIC_SIM_PREFIX" --filter "network=$DOCKER_SIM_NWNAME" --filter "label=a1sim" --filter "status=running" --format {{.Names}})
-               if [[ "$oranrics" == "" ]]; then        
-                       if [ $? -ne 0 ] || [ -z "$rics" ]; then
-                               echo -e $RED" FAIL - the names of the running RIC Simulator cannot be retrieved." $ERED
-                               ((RES_CONF_FAIL++))
-                               return 1
-                       fi
-               fi
-               rics="$rics $oranrics"
        fi
        cntr=0
        for ric in $rics; do