blob: bf30310efae650f5e76695ea4e7c022f979ad9d7 [file] [log] [blame]
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001#!/bin/bash
2
3# ============LICENSE_START===============================================
4# Copyright (C) 2020 Nordix Foundation. All rights reserved.
5# ========================================================================
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17# ============LICENSE_END=================================================
18#
19
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010020# This is a script that contains container/service management functions and test functions for RICSIM A1 simulators
BjornMagnussonXA80a92002020-03-19 14:31:06 +010021
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010022################ Test engine functions ################
23
24# Create the image var used during the test
25# arg: <image-tag-suffix> (selects staging, snapshot, release etc)
26# <image-tag-suffix> is present only for images with staging, snapshot,release tags
27__RICSIM_imagesetup() {
28 __check_and_create_image_var RICSIM "RIC_SIM_IMAGE" "RIC_SIM_IMAGE_BASE" "RIC_SIM_IMAGE_TAG" $1 "$RIC_SIM_DISPLAY_NAME"
29}
30
31# Pull image from remote repo or use locally built image
32# arg: <pull-policy-override> <pull-policy-original>
33# <pull-policy-override> Shall be used for images allowing overriding. For example use a local image when test is started to use released images
34# <pull-policy-original> Shall be used for images that does not allow overriding
35# Both var may contain: 'remote', 'remote-remove' or 'local'
36__RICSIM_imagepull() {
BjornMagnussonXA483ee332021-04-08 01:35:24 +020037 __check_and_pull_image $1 "$RIC_SIM_DISPLAY_NAME" $RIC_SIM_PREFIX"_"$RIC_SIM_BASE RIC_SIM_IMAGE
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010038}
39
40# Generate a string for each included image using the app display name and a docker images format string
BjornMagnussonXA483ee332021-04-08 01:35:24 +020041# If a custom image repo is used then also the source image from the local repo is listed
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010042# arg: <docker-images-format-string> <file-to-append>
43__RICSIM_image_data() {
44 echo -e "$RIC_SIM_DISPLAY_NAME\t$(docker images --format $1 $RIC_SIM_IMAGE)" >> $2
BjornMagnussonXA483ee332021-04-08 01:35:24 +020045 if [ ! -z "$RIC_SIM_IMAGE_SOURCE" ]; then
46 echo -e "-- source image --\t$(docker images --format $1 $RIC_SIM_IMAGE_SOURCE)" >> $2
47 fi
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010048}
49
50# Scale kubernetes resources to zero
51# All resources shall be ordered to be scaled to 0, if relevant. If not relevant to scale, then do no action.
52# This function is called for apps fully managed by the test script
53__RICSIM_kube_scale_zero() {
54 __kube_scale_all_resources $KUBE_NONRTRIC_NAMESPACE autotest RICSIM
55}
56
57# Scale kubernetes resources to zero and wait until this has been accomplished, if relevant. If not relevant to scale, then do no action.
58# This function is called for prestarted apps not managed by the test script.
59__RICSIM_kube_scale_zero_and_wait() {
60 __kube_scale_and_wait_all_resources $KUBE_NONRTRIC_NAMESPACE app nonrtric-a1simulator
61}
62
63# Delete all kube resouces for the app
64# This function is called for apps managed by the test script.
65__RICSIM_kube_delete_all() {
66 __kube_delete_all_resources $KUBE_NONRTRIC_NAMESPACE autotest RICSIM
67}
68
69# Store docker logs
70# This function is called for apps managed by the test script.
71# args: <log-dir> <file-prexix>
72__RICSIM_store_docker_logs() {
73 rics=$(docker ps --filter "name=$RIC_SIM_PREFIX" --filter "network=$DOCKER_SIM_NWNAME" --filter "status=running" --format {{.Names}})
74 for ric in $rics; do
75 docker logs $ric > $1$2_$ric.log 2>&1
76 done
77}
78
79#######################################################
80
81
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010082RIC_SIM_HTTPX="http"
83RIC_SIM_HOST=$RIC_SIM_HTTPX"://"$LOCALHOST_NAME
84RIC_SIM_PORT=$RIC_SIM_INTERNAL_PORT
85
86
87#Vars for A1 interface version and container count
88G1_A1_VERSION=""
89G2_A1_VERSION=""
90G3_A1_VERSION=""
91G4_A1_VERSION=""
92G5_A1_VERSION=""
93G1_COUNT=0
94G2_COUNT=0
95G3_COUNT=0
96G4_COUNT=0
97G5_COUNT=0
98
99
100###########################
101### RIC Simulator functions
102###########################
103
104use_simulator_http() {
105 echo -e $BOLD"RICSIM protocol setting"$EBOLD
106 echo -e " Using $BOLD http $EBOLD towards the simulators"
107 RIC_SIM_HTTPX="http"
108 RIC_SIM_HOST=$RIC_SIM_HTTPX"://"$LOCALHOST_NAME
109 RIC_SIM_PORT=$RIC_SIM_INTERNAL_PORT
110 echo ""
111}
112
113use_simulator_https() {
114 echo -e $BOLD"RICSIM protocol setting"$EBOLD
115 echo -e " Using $BOLD https $EBOLD towards the simulators"
116 RIC_SIM_HTTPX="https"
117 RIC_SIM_HOST=$RIC_SIM_HTTPX"://"$LOCALHOST_NAME
118 RIC_SIM_PORT=$RIC_SIM_INTERNAL_SECURE_PORT
119 echo ""
120}
121
122# Start one group (ricsim_g1, ricsim_g2 .. ricsim_g5) with a number of RIC Simulators using a given A interface
123# 'ricsim' may be set on command line to other prefix
124# args: ricsim_g1|ricsim_g2|ricsim_g3|ricsim_g4|ricsim_g5 <count> <interface-id>
125# (Function for test scripts)
126start_ric_simulators() {
127
128 echo -e $BOLD"Starting $RIC_SIM_DISPLAY_NAME"$EBOLD
129
130 if [ $RUNMODE == "KUBE" ]; then
131
132 # Check if app shall be fully managed by the test script
133 __check_included_image "RICSIM"
134 retcode_i=$?
135
136 # Check if app shall only be used by the testscipt
137 __check_prestarted_image "RICSIM"
138 retcode_p=$?
139
140 if [ $retcode_i -ne 0 ] && [ $retcode_p -ne 0 ]; then
141 echo -e $RED"The $1 app is not included as managed nor prestarted in this test script"$ERED
142 echo -e $RED"The $1 will not be started"$ERED
143 exit
144 fi
145 if [ $retcode_i -eq 0 ] && [ $retcode_p -eq 0 ]; then
146 echo -e $RED"The $1 stub app is included both as managed and prestarted in this test script"$ERED
147 echo -e $RED"The $1 will not be started"$ERED
148 exit
149 fi
150
151 if [ $retcode_p -eq 0 ]; then
152 echo -e " Using existing $1 statefulset and service"
153 echo " Using existing simulator deployment and service for statefulset $1"
154 echo " Setting $1 replicas=$2"
155 __kube_scale statefulset $1 $KUBE_NONRTRIC_NAMESPACE $2
156 echo ""
157 return
158 fi
159 fi
160
161 RIC1=$RIC_SIM_PREFIX"_g1"
162 RIC2=$RIC_SIM_PREFIX"_g2"
163 RIC3=$RIC_SIM_PREFIX"_g3"
164 RIC4=$RIC_SIM_PREFIX"_g4"
165 RIC5=$RIC_SIM_PREFIX"_g5"
166
167 if [ $# != 3 ]; then
168 ((RES_CONF_FAIL++))
169 __print_err "need three args, $RIC1|$RIC2|$RIC3|$RIC4|$RIC5 <count> <interface-id>" $@
170 exit 1
171 fi
172
173 echo " $2 simulators using basename: $1 on interface: $3"
174 #Set env var for simulator count and A1 interface vesion for the given group
175 if [ $1 == "$RIC1" ]; then
176 G1_COUNT=$2
177 G1_A1_VERSION=$3
178 elif [ $1 == "$RIC2" ]; then
179 G2_COUNT=$2
180 G2_A1_VERSION=$3
181 elif [ $1 == "$RIC3" ]; then
182 G3_COUNT=$2
183 G3_A1_VERSION=$3
184 elif [ $1 == "$RIC4" ]; then
185 G4_COUNT=$2
186 G4_A1_VERSION=$3
187 elif [ $1 == "$RIC5" ]; then
188 G5_COUNT=$2
189 G5_A1_VERSION=$3
190 else
191 ((RES_CONF_FAIL++))
192 __print_err "need three args, $RIC1|$RIC2|$RIC3|$RIC4|$RIC5 <count> <interface-id>" $@
193 exit 1
194 fi
195
196 if [ $RUNMODE == "KUBE" ]; then
197
198 if [ $retcode_i -eq 0 ]; then
199
200 #export needed env var for statefulset
201 export RIC_SIM_SET_NAME=$(echo "$1" | tr '_' '-') #kube does not accept underscore in names
202 export KUBE_NONRTRIC_NAMESPACE
203 export RIC_SIM_IMAGE
204 #Adding 1 more instance, instance 0 is never used. This is done to keep test scripts compatible
205 # with docker that starts instance index on 1.....
206 export RIC_SIM_COUNT=$(($2+1))
207 export A1_VERSION=$3
208 export RIC_SIM_INTERNAL_PORT
209 export RIC_SIM_INTERNAL_SECURE_PORT
210
211 echo -e " Creating $POLICY_AGENT_APP_NAME app and expose service"
212
213 #Check if nonrtric namespace exists, if not create it
214 __kube_create_namespace $KUBE_NONRTRIC_NAMESPACE
215
216 # Create service
217 input_yaml=$SIM_GROUP"/"$RIC_SIM_COMPOSE_DIR"/"svc.yaml
218 output_yaml=$PWD/tmp/ric_${1}_svc.yaml
219 __kube_create_instance service $RIC_SIM_SET_NAME $input_yaml $output_yaml
220
221 # Create app
222 input_yaml=$SIM_GROUP"/"$RIC_SIM_COMPOSE_DIR"/"app.yaml
223 output_yaml=$PWD/tmp/pa_${1}_app.yaml
224 __kube_create_instance app $RIC_SIM_SET_NAME $input_yaml $output_yaml
225
226 #Using only instance from index 1 to keep compatability with docker
227 for (( count=1; count<${RIC_SIM_COUNT}; count++ )); do
228 host=$(__find_sim_host $RIC_SIM_SET_NAME"-"$count)
229 __check_service_start $RIC_SIM_SET_NAME"-"$count $host"/"
230 done
231 fi
232 else
233
234 __check_included_image 'RICSIM'
235 if [ $? -eq 1 ]; then
236 echo -e $RED"The Near-RT RIC Simulator app is not included as managed in this test script"$ERED
237 echo -e $RED"Near-RT RIC Simulator will not be started"$ERED
238 exit 1
239 fi
240
241 # Create .env file to compose project, all ric container will get this prefix
242 echo "COMPOSE_PROJECT_NAME="$RIC_SIM_PREFIX > $SIM_GROUP/$RIC_SIM_COMPOSE_DIR/.env
243
244 export G1_A1_VERSION
245 export G2_A1_VERSION
246 export G3_A1_VERSION
247 export G4_A1_VERSION
248 export G5_A1_VERSION
249 export RIC_SIM_INTERNAL_PORT
250 export RIC_SIM_INTERNAL_SECURE_PORT
251 export RIC_SIM_CERT_MOUNT_DIR
252 export DOCKER_SIM_NWNAME
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100253 export RIC_SIM_DISPLAY_NAME
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100254
255 docker_args="--scale g1=$G1_COUNT --scale g2=$G2_COUNT --scale g3=$G3_COUNT --scale g4=$G4_COUNT --scale g5=$G5_COUNT"
256 app_data=""
257 cntr=1
258 while [ $cntr -le $2 ]; do
259 app=$1"_"$cntr
260 app_data="$app_data $app"
261 let cntr=cntr+1
262 done
263
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100264 __start_container $RIC_SIM_COMPOSE_DIR "" "$docker_args" $2 $app_data
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100265
266 cntr=1
267 while [ $cntr -le $2 ]; do
268 app=$1"_"$cntr
269 localport=0
270
271 while [ $localport -eq 0 ]; do
272 echo -ne " Waiting for container ${app} to publish its ports...${SAMELINE}"
273 localport=$(__find_sim_port $app)
274 sleep 0.5
275 echo -ne " Waiting for container ${app} to publish its ports...retrying....${SAMELINE}"
276 done
277 echo -e " Waiting for container ${app} to publish its ports...retrying....$GREEN OK $EGREEN"
278 __check_service_start $app $RIC_SIM_HOST":"$localport$RIC_SIM_ALIVE_URL
279 let cntr=cntr+1
280 done
281 fi
282 echo ""
283 return 0
284}
285
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100286# Translate ric name to kube host name
287# args: <ric-name>
288# For test scripts
289get_kube_sim_host() {
290 name=$(echo "$1" | tr '_' '-') #kube does not accept underscore in names
291 #example gnb_1_2 -> gnb-1-2
292 set_name=$(echo $name | rev | cut -d- -f2- | rev) # Cut index part of ric name to get the name of statefulset
293 # example gnb-g1-2 -> gnb-g1 where gnb-g1-2 is the ric name and gnb-g1 is the set name
294 echo $name"."$set_name"."$KUBE_NONRTRIC_NAMESPACE
295}
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100296
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100297# Helper function to get a the port of a specific ric simulator
298# args: <ric-id>
299# (Not for test scripts)
300__find_sim_port() {
301 name=$1" " #Space appended to prevent matching 10 if 1 is desired....
302 cmdstr="docker inspect --format='{{(index (index .NetworkSettings.Ports \"$RIC_SIM_PORT/tcp\") 0).HostPort}}' ${name}"
303 res=$(eval $cmdstr)
304 if [[ "$res" =~ ^[0-9]+$ ]]; then
305 echo $res
306 else
307 echo "0"
308 fi
309}
310
311# Helper function to get a the port and host name of a specific ric simulator
312# args: <ric-id>
313# (Not for test scripts)
314__find_sim_host() {
315 if [ $RUNMODE == "KUBE" ]; then
316 ricname=$(echo "$1" | tr '_' '-')
317 for timeout in {1..60}; do
318 host=$(kubectl get pod $ricname -n $KUBE_NONRTRIC_NAMESPACE -o jsonpath='{.status.podIP}' 2> /dev/null)
319 if [ ! -z "$host" ]; then
320 echo $RIC_SIM_HTTPX"://"$host":"$RIC_SIM_PORT
321 return 0
322 fi
323 sleep 0.5
324 done
325 echo "host-not-found-fatal-error"
326 else
327 name=$1" " #Space appended to prevent matching 10 if 1 is desired....
328 cmdstr="docker inspect --format='{{(index (index .NetworkSettings.Ports \"$RIC_SIM_PORT/tcp\") 0).HostPort}}' ${name}"
329 res=$(eval $cmdstr)
330 if [[ "$res" =~ ^[0-9]+$ ]]; then
331 echo $RIC_SIM_HOST:$res
332 return 0
333 else
334 echo "0"
335 fi
336 fi
337 return 1
338}
339
340# Generate a UUID to use as prefix for policy ids
341generate_policy_uuid() {
342 UUID=$(python3 -c 'import sys,uuid; sys.stdout.write(uuid.uuid4().hex)')
343 #Reduce length to make space for serial id, uses 'a' as marker where the serial id is added
344 UUID=${UUID:0:${#UUID}-4}"a"
345}
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100346
347# Excute a curl cmd towards a ricsimulator and check the response code.
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +0200348# args: <expected-response-code> <curl-cmd-string>
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100349__execute_curl_to_sim() {
350 echo ${FUNCNAME[1]} "line: "${BASH_LINENO[1]} >> $HTTPLOG
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100351 proxyflag=""
352 if [ $RUNMODE == "KUBE" ]; then
BjornMagnussonXA483ee332021-04-08 01:35:24 +0200353 if [ ! -z "$KUBE_PROXY_PATH" ]; then
354 proxyflag=" --proxy $KUBE_PROXY_PATH"
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100355 fi
356 fi
357 echo " CMD: $2 $proxyflag" >> $HTTPLOG
358 res="$($2 $proxyflag)"
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100359 echo " RESP: $res" >> $HTTPLOG
360 retcode=$?
361 if [ $retcode -ne 0 ]; then
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100362 ((RES_CONF_FAIL++))
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100363 echo " RETCODE: "$retcode
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200364 echo -e $RED" FAIL - fatal error when executing curl."$ERED
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100365 return 1
366 fi
367 status=${res:${#res}-3}
368 if [ $status -eq $1 ]; then
369 echo -e $GREEN" OK"$EGREEN
370 return 0
371 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200372 echo -e $RED" FAIL - expected http response: "$1" but got http response: "$status $ERED
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100373 ((RES_CONF_FAIL++))
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100374 return 1
375}
376
377# Tests if a variable value in the ricsimulator is equal to a target value and and optional timeout.
378# Arg: <ric-id> <variable-name> <target-value> - This test set pass or fail depending on if the variable is
379# equal to the target or not.
380# Arg: <ric-id> <variable-name> <target-value> <timeout-in-sec> - This test waits up to the timeout seconds
381# before setting pass or fail depending on if the variable value becomes equal to the target
382# value or not.
383# (Function for test scripts)
384sim_equal() {
385
386 if [ $# -eq 3 ] || [ $# -eq 4 ]; then
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100387 host=$(__find_sim_host $1)
388 __var_test $1 "$host/counter/" $2 "=" $3 $4
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100389 return 0
390 else
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100391 __print_err "needs three or four args: <ric-id> <sim-param> <target-value> [ timeout ]"
392 return 1
393 fi
394}
395
396# Print a variable value from the RIC sim.
397# args: <ric-id> <variable-name>
398# (Function for test scripts)
399sim_print() {
400
401 if [ $# != 2 ]; then
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100402 __print_err "need two args, <ric-id> <sim-param>" $@
403 exit 1
404 fi
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100405 host=$(__find_sim_host $1)
406 echo -e $BOLD"INFO(${BASH_LINENO[0]}): $1, $2 = $(__do_curl $host/counter/$2)"$EBOLD
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100407}
408
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200409# Tests if a variable value in the RIC simulator contains the target string and and optional timeout
410# Arg: <ric-id> <variable-name> <target-value> - This test set pass or fail depending on if the variable contains
411# the target or not.
412# Arg: <ric-id> <variable-name> <target-value> <timeout-in-sec> - This test waits up to the timeout seconds
413# before setting pass or fail depending on if the variable value contains the target
414# value or not.
415# (Function for test scripts)
416sim_contains_str() {
417
418 if [ $# -eq 3 ] || [ $# -eq 4 ]; then
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100419 host=$(__find_sim_host $1)
420 __var_test $1 "$host/counter/" $2 "contain_str" $3 $4
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200421 return 0
422 else
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200423 __print_err "needs three or four args: <ric-id> <sim-param> <target-value> [ timeout ]"
424 return 1
425 fi
426}
427
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100428# Simulator API: Put a policy type in a ric
429# args: <response-code> <ric-id> <policy-type-id> <policy-type-file>
430# (Function for test scripts)
431sim_put_policy_type() {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100432 __log_conf_start $@
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100433 if [ $# -ne 4 ]; then
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100434 __print_err "<response-code> <ric-id> <policy-type-id> <policy-type-file>" $@
435 return 1
436 fi
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100437 host=$(__find_sim_host $2)
438 curlString="curl -X PUT -skw %{http_code} "$host"/policytype?id="$3" -H Content-Type:application/json --data-binary @"$4
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +0200439 __execute_curl_to_sim $1 "$curlString"
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100440 return $?
441}
442
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100443# Simulator API: Delete a policy type in a ric
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100444# <response-code> <ric-id> <policy-type-id>
445# (Function for test scripts)
446sim_delete_policy_type() {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100447 __log_conf_start $@
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100448 if [ $# -ne 3 ]; then
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100449 __print_err "<response-code> <ric-id> <policy_type_id>" $@
450 return 1
451 fi
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100452 host=$(__find_sim_host $2)
453 curlString="curl -X DELETE -skw %{http_code} "$host"/policytype?id="$3
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100454 __execute_curl_to_sim $1 "$curlString"
455 return $?
456}
457
458# Simulator API: Delete instances (and status), for one ric
459# <response-code> <ric-id>
460# (Function for test scripts)
461sim_post_delete_instances() {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100462 __log_conf_start $@
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100463 if [ $# -ne 2 ]; then
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100464 __print_err "<response-code> <ric-id>" $@
465 return 1
466 fi
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100467 host=$(__find_sim_host $2)
468 curlString="curl -X POST -skw %{http_code} "$host"/deleteinstances"
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100469 __execute_curl_to_sim $1 "$curlString"
470 return $?
471}
472
473# Simulator API: Delete all (instances/types/statuses/settings), for one ric
474# <response-code> <ric-id>
475# (Function for test scripts)
476sim_post_delete_all() {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100477 __log_conf_start $@
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100478 if [ $# -ne 3 ]; then
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100479 __print_err "<response-code> <numericic-id>" $@
480 return 1
481 fi
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100482 host=$(__find_sim_host $2)
483 curlString="curl -X POST -skw %{http_code} "$host"/deleteall"
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100484 __execute_curl_to_sim $1 "$curlString"
485 return $?
486}
487
488# Simulator API: Set (or reset) response code for next A1 message, for one ric
489# <response-code> <ric-id> [<forced_response_code>]
490# (Function for test scripts)
491sim_post_forcedresponse() {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100492 __log_conf_start $@
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100493 if [ $# -ne 3 ]; then
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100494 __print_err "<response-code> <ric-id> <forced_response_code>" $@
495 return 1
496 fi
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100497 host=$(__find_sim_host $2)
498 curlString="curl -X POST -skw %{http_code} "$host"/forceresponse"
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100499 if [ $# -eq 3 ]; then
500 curlString=$curlString"?code="$3
501 fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100502 __execute_curl_to_sim $1 "$curlString"
503 return $?
504}
505
506# Simulator API: Set (or reset) A1 response delay, for one ric
507# <response-code> <ric-id> [<delay-in-seconds>]
508# (Function for test scripts)
509sim_post_forcedelay() {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100510 __log_conf_start $@
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100511 if [ $# -ne 3 ]; then
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100512 __print_err "<response-code> <ric-id> [<delay-in-seconds>]" $@
513 return 1
514 fi
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100515 host=$(__find_sim_host $2)
516 curlString="curl -X POST -skw %{http_code} $host/forcedelay"
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100517 if [ $# -eq 3 ]; then
518 curlString=$curlString"?delay="$3
519 fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100520 __execute_curl_to_sim $1 "$curlString"
521 return $?
522}