blob: 2a68aa0ef05e9dec643535ca4a2db475cc46a426 [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
20
21### Admin API functions for the RIC simulator
22
23
24# Excute a curl cmd towards a ricsimulator and check the response code.
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +020025# args: <expected-response-code> <curl-cmd-string>
BjornMagnussonXA80a92002020-03-19 14:31:06 +010026__execute_curl_to_sim() {
27 echo ${FUNCNAME[1]} "line: "${BASH_LINENO[1]} >> $HTTPLOG
28 echo " CMD: $2" >> $HTTPLOG
BjornMagnussonXA80a92002020-03-19 14:31:06 +010029 res="$($2)"
30 echo " RESP: $res" >> $HTTPLOG
31 retcode=$?
32 if [ $retcode -ne 0 ]; then
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +010033 ((RES_CONF_FAIL++))
BjornMagnussonXA80a92002020-03-19 14:31:06 +010034 echo " RETCODE: "$retcode
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020035 echo -e $RED" FAIL - fatal error when executing curl."$ERED
BjornMagnussonXA80a92002020-03-19 14:31:06 +010036 return 1
37 fi
38 status=${res:${#res}-3}
39 if [ $status -eq $1 ]; then
40 echo -e $GREEN" OK"$EGREEN
41 return 0
42 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020043 echo -e $RED" FAIL - expected http response: "$1" but got http response: "$status $ERED
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +010044 ((RES_CONF_FAIL++))
BjornMagnussonXA80a92002020-03-19 14:31:06 +010045 return 1
46}
47
48# Tests if a variable value in the ricsimulator is equal to a target value and and optional timeout.
49# Arg: <ric-id> <variable-name> <target-value> - This test set pass or fail depending on if the variable is
50# equal to the target or not.
51# Arg: <ric-id> <variable-name> <target-value> <timeout-in-sec> - This test waits up to the timeout seconds
52# before setting pass or fail depending on if the variable value becomes equal to the target
53# value or not.
54# (Function for test scripts)
55sim_equal() {
56
57 if [ $# -eq 3 ] || [ $# -eq 4 ]; then
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010058 port=$(__find_sim_port $1)
59 __var_test $1 "$RIC_SIM_LOCALHOST$port/counter/" $2 "=" $3 $4
BjornMagnussonXA80a92002020-03-19 14:31:06 +010060 return 0
61 else
BjornMagnussonXA80a92002020-03-19 14:31:06 +010062 __print_err "needs three or four args: <ric-id> <sim-param> <target-value> [ timeout ]"
63 return 1
64 fi
65}
66
67# Print a variable value from the RIC sim.
68# args: <ric-id> <variable-name>
69# (Function for test scripts)
70sim_print() {
71
72 if [ $# != 2 ]; then
BjornMagnussonXA80a92002020-03-19 14:31:06 +010073 __print_err "need two args, <ric-id> <sim-param>" $@
74 exit 1
75 fi
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010076 port=$(__find_sim_port $1)
77 echo -e $BOLD"INFO(${BASH_LINENO[0]}): $1, $2 = $(__do_curl $RIC_SIM_LOCALHOST$port/counter/$2)"$EBOLD
BjornMagnussonXA80a92002020-03-19 14:31:06 +010078}
79
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020080# Tests if a variable value in the RIC simulator contains the target string and and optional timeout
81# Arg: <ric-id> <variable-name> <target-value> - This test set pass or fail depending on if the variable contains
82# the target or not.
83# Arg: <ric-id> <variable-name> <target-value> <timeout-in-sec> - This test waits up to the timeout seconds
84# before setting pass or fail depending on if the variable value contains the target
85# value or not.
86# (Function for test scripts)
87sim_contains_str() {
88
89 if [ $# -eq 3 ] || [ $# -eq 4 ]; then
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010090 port=$(__find_sim_port $1)
91 __var_test $1 "$RIC_SIM_LOCALHOST$port/counter/" $2 "contain_str" $3 $4
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020092 return 0
93 else
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020094 __print_err "needs three or four args: <ric-id> <sim-param> <target-value> [ timeout ]"
95 return 1
96 fi
97}
98
BjornMagnussonXA80a92002020-03-19 14:31:06 +010099# Simulator API: Put a policy type in a ric
100# args: <response-code> <ric-id> <policy-type-id> <policy-type-file>
101# (Function for test scripts)
102sim_put_policy_type() {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100103 __log_conf_start $@
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100104 if [ $# -ne 4 ]; then
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100105 __print_err "<response-code> <ric-id> <policy-type-id> <policy-type-file>" $@
106 return 1
107 fi
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100108 res=$(__find_sim_port $2)
BjornMagnussonXA72667f12020-04-24 09:20:18 +0200109 curlString="curl -X PUT -skw %{http_code} $RIC_SIM_LOCALHOST"$res"/policytype?id="$3" -H Content-Type:application/json --data-binary @"$4
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +0200110 __execute_curl_to_sim $1 "$curlString"
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100111 return $?
112}
113
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100114# Simulator API: Delete a policy type in a ric
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100115# <response-code> <ric-id> <policy-type-id>
116# (Function for test scripts)
117sim_delete_policy_type() {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100118 __log_conf_start $@
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100119 if [ $# -ne 3 ]; then
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100120 __print_err "<response-code> <ric-id> <policy_type_id>" $@
121 return 1
122 fi
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100123 res=$(__find_sim_port $2)
BjornMagnussonXA72667f12020-04-24 09:20:18 +0200124 curlString="curl -X DELETE -skw %{http_code} $RIC_SIM_LOCALHOST"$res"/policytype?id="$3
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100125 __execute_curl_to_sim $1 "$curlString"
126 return $?
127}
128
129# Simulator API: Delete instances (and status), for one ric
130# <response-code> <ric-id>
131# (Function for test scripts)
132sim_post_delete_instances() {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100133 __log_conf_start $@
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100134 if [ $# -ne 2 ]; then
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100135 __print_err "<response-code> <ric-id>" $@
136 return 1
137 fi
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100138 res=$(__find_sim_port $2)
BjornMagnussonXA72667f12020-04-24 09:20:18 +0200139 curlString="curl -X POST -skw %{http_code} $RIC_SIM_LOCALHOST"$res"/deleteinstances"
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100140 __execute_curl_to_sim $1 "$curlString"
141 return $?
142}
143
144# Simulator API: Delete all (instances/types/statuses/settings), for one ric
145# <response-code> <ric-id>
146# (Function for test scripts)
147sim_post_delete_all() {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100148 __log_conf_start $@
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100149 if [ $# -ne 3 ]; then
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100150 __print_err "<response-code> <numericic-id>" $@
151 return 1
152 fi
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100153 res=$(__find_sim_port $2)
BjornMagnussonXA72667f12020-04-24 09:20:18 +0200154 curlString="curl -X POST -skw %{http_code} $RIC_SIM_LOCALHOST"$res"/deleteall"
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100155 __execute_curl_to_sim $1 "$curlString"
156 return $?
157}
158
159# Simulator API: Set (or reset) response code for next A1 message, for one ric
160# <response-code> <ric-id> [<forced_response_code>]
161# (Function for test scripts)
162sim_post_forcedresponse() {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100163 __log_conf_start $@
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100164 if [ $# -ne 3 ]; then
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100165 __print_err "<response-code> <ric-id> <forced_response_code>" $@
166 return 1
167 fi
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100168 res=$(__find_sim_port $2)
BjornMagnussonXA72667f12020-04-24 09:20:18 +0200169 curlString="curl -X POST -skw %{http_code} $RIC_SIM_LOCALHOST"$res"/forceresponse"
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100170 if [ $# -eq 3 ]; then
171 curlString=$curlString"?code="$3
172 fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100173 __execute_curl_to_sim $1 "$curlString"
174 return $?
175}
176
177# Simulator API: Set (or reset) A1 response delay, for one ric
178# <response-code> <ric-id> [<delay-in-seconds>]
179# (Function for test scripts)
180sim_post_forcedelay() {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100181 __log_conf_start $@
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100182 if [ $# -ne 3 ]; then
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100183 __print_err "<response-code> <ric-id> [<delay-in-seconds>]" $@
184 return 1
185 fi
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100186 res=$(__find_sim_port $2)
BjornMagnussonXA048aaa12020-06-04 07:48:37 +0200187 curlString="curl -X POST -skw %{http_code} $RIC_SIM_LOCALHOST$res/forcedelay"
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100188 if [ $# -eq 3 ]; then
189 curlString=$curlString"?delay="$3
190 fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100191 __execute_curl_to_sim $1 "$curlString"
192 return $?
193}