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
10 # http://www.apache.org/licenses/LICENSE-2.0
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=================================================
20 # This is a script that contains container/service managemnt functions test functions for the Callback Reciver
23 ################ Test engine functions ################
25 # Create the image var used during the test
26 # arg: <image-tag-suffix> (selects staging, snapshot, release etc)
27 # <image-tag-suffix> is present only for images with staging, snapshot,release tags
29 __check_and_create_image_var CR "CR_IMAGE" "CR_IMAGE_BASE" "CR_IMAGE_TAG" LOCAL "$CR_DISPLAY_NAME"
32 # Pull image from remote repo or use locally built image
33 # arg: <pull-policy-override> <pull-policy-original>
34 # <pull-policy-override> Shall be used for images allowing overriding. For example use a local image when test is started to use released images
35 # <pull-policy-original> Shall be used for images that does not allow overriding
36 # Both var may contain: 'remote', 'remote-remove' or 'local'
38 echo -e $RED" Image for app CR shall never be pulled from remote repo"$ERED
41 # Build image (only for simulator or interfaces stubs owned by the test environment)
42 # arg: <image-tag-suffix> (selects staging, snapshot, release etc)
43 # <image-tag-suffix> is present only for images with staging, snapshot,release tags
46 echo " Building CR - $CR_DISPLAY_NAME - image: $CR_IMAGE"
47 docker build --build-arg NEXUS_PROXY_REPO=$NEXUS_PROXY_REPO -t $CR_IMAGE . &> .dockererr
49 echo -e $GREEN" Build Ok"$EGREEN
50 __retag_and_push_image CR_IMAGE
55 echo -e $RED" Build Failed"$ERED
58 echo -e $RED"Exiting...."$ERED
63 # Generate a string for each included image using the app display name and a docker images format string
64 # If a custom image repo is used then also the source image from the local repo is listed
65 # arg: <docker-images-format-string> <file-to-append>
67 echo -e "$CR_DISPLAY_NAME\t$(docker images --format $1 $CR_IMAGE)" >> $2
68 if [ ! -z "$CR_IMAGE_SOURCE" ]; then
69 echo -e "-- source image --\t$(docker images --format $1 $CR_IMAGE_SOURCE)" >> $2
73 # Scale kubernetes resources to zero
74 # All resources shall be ordered to be scaled to 0, if relevant. If not relevant to scale, then do no action.
75 # This function is called for apps fully managed by the test script
76 __CR_kube_scale_zero() {
77 __kube_scale_all_resources $KUBE_SIM_NAMESPACE autotest CR
80 # Scale kubernetes resources to zero and wait until this has been accomplished, if relevant. If not relevant to scale, then do no action.
81 # This function is called for prestarted apps not managed by the test script.
82 __CR_kube_scale_zero_and_wait() {
83 echo -e $RED" CR app is not scaled in this state"$ERED
86 # Delete all kube resouces for the app
87 # This function is called for apps managed by the test script.
88 __CR_kube_delete_all() {
89 __kube_delete_all_resources $KUBE_SIM_NAMESPACE autotest CR
93 # This function is called for apps managed by the test script.
94 # args: <log-dir> <file-prexix>
95 __CR_store_docker_logs() {
96 docker logs $CR_APP_NAME > $1$2_cr.log 2>&1
99 #######################################################
102 ## Access to Callback Receiver
103 # Host name may be changed if app started by kube
104 # Direct access from script
106 CR_HOST_NAME=$LOCALHOST_NAME
107 CR_PATH=$CR_HTTPX"://"$CR_HOST_NAME":"$CR_EXTERNAL_PORT
108 #Docker/Kube internal path
109 if [ $RUNMODE == "KUBE" ]; then
110 CR_SERVICE_PATH=$CR_HTTPX"://"$CR_APP_NAME"."$KUBE_SIM_NAMESPACE":"$CR_EXTERNAL_PORT$CR_APP_CALLBACK
112 CR_SERVICE_PATH=$CR_HTTPX"://"$CR_APP_NAME":"$CR_INTERNAL_PORT$CR_APP_CALLBACK
114 # CR_ADAPTER used for switching between REST and DMAAP (only REST supported currently)
115 CR_ADAPTER_TYPE="REST"
122 # Set http as the protocol to use for all communication to the Callback Receiver
124 # (Function for test scripts)
126 echo -e $BOLD"CR protocol setting"$EBOLD
127 echo -e " Using $BOLD http $EBOLD towards CR"
130 CR_PATH=$CR_HTTPX"://"$CR_HOST_NAME":"$CR_EXTERNAL_PORT
132 #Docker/Kube internal path
133 if [ $RUNMODE == "KUBE" ]; then
134 CR_SERVICE_PATH=$CR_HTTPX"://"$CR_APP_NAME"."$KUBE_SIM_NAMESPACE":"$CR_EXTERNAL_PORT$CR_APP_CALLBACK
136 CR_SERVICE_PATH=$CR_HTTPX"://"$CR_APP_NAME":"$CR_INTERNAL_PORT$CR_APP_CALLBACK
138 CR_ADAPTER_TYPE="REST"
143 # Set https as the protocol to use for all communication to the Callback Receiver
145 # (Function for test scripts)
147 echo -e $BOLD"CR protocol setting"$EBOLD
148 echo -e " Using $BOLD https $EBOLD towards CR"
151 CR_PATH=$CR_HTTPX"://"$CR_HOST_NAME":"$CR_EXTERNAL_SECURE_PORT
153 if [ $RUNMODE == "KUBE" ]; then
154 CR_SERVICE_PATH=$CR_HTTPX"://"$CR_APP_NAME"."$KUBE_SIM_NAMESPACE":"$CR_EXTERNAL_SECURE_PORT$CR_APP_CALLBACK
156 CR_SERVICE_PATH=$CR_HTTPX"://"$CR_APP_NAME":"$CR_INTERNAL_SECURE_PORT$CR_APP_CALLBACK
159 CR_ADAPTER_TYPE="REST"
164 # Start the Callback reciver in the simulator group
166 # (Function for test scripts)
169 echo -e $BOLD"Starting $CR_DISPLAY_NAME"$EBOLD
171 if [ $RUNMODE == "KUBE" ]; then
173 # Check if app shall be fully managed by the test script
174 __check_included_image "CR"
177 # Check if app shall only be used by the testscipt
178 __check_prestarted_image "CR"
181 if [ $retcode_i -ne 0 ] && [ $retcode_p -ne 0 ]; then
182 echo -e $RED"The $CR_APP_NAME app is not included as managed nor prestarted in this test script"$ERED
183 echo -e $RED"The $CR_APP_NAME will not be started"$ERED
186 if [ $retcode_i -eq 0 ] && [ $retcode_p -eq 0 ]; then
187 echo -e $RED"The $CR_APP_NAME app is included both as managed and prestarted in this test script"$ERED
188 echo -e $RED"The $CR_APP_NAME will not be started"$ERED
192 # Check if app shall be used - not managed - by the test script
193 if [ $retcode_p -eq 0 ]; then
194 echo -e " Using existing $CR_APP_NAME deployment and service"
195 echo " Setting CR replicas=1"
196 __kube_scale deployment $CR_APP_NAME $KUBE_SIM_NAMESPACE 1
199 if [ $retcode_i -eq 0 ]; then
200 echo -e " Creating $CR_APP_NAME deployment and service"
202 export KUBE_SIM_NAMESPACE
204 export CR_INTERNAL_PORT
205 export CR_INTERNAL_SECURE_PORT
206 export CR_EXTERNAL_PORT
207 export CR_EXTERNAL_SECURE_PORT
209 __kube_create_namespace $KUBE_SIM_NAMESPACE
212 input_yaml=$SIM_GROUP"/"$CR_COMPOSE_DIR"/"svc.yaml
213 output_yaml=$PWD/tmp/cr_svc.yaml
214 __kube_create_instance service $CR_APP_NAME $input_yaml $output_yaml
217 input_yaml=$SIM_GROUP"/"$CR_COMPOSE_DIR"/"app.yaml
218 output_yaml=$PWD/tmp/cr_app.yaml
219 __kube_create_instance app $CR_APP_NAME $input_yaml $output_yaml
223 echo " Retrieving host and ports for service..."
224 CR_HOST_NAME=$(__kube_get_service_host $CR_APP_NAME $KUBE_SIM_NAMESPACE)
226 CR_EXTERNAL_PORT=$(__kube_get_service_port $CR_APP_NAME $KUBE_SIM_NAMESPACE "http")
227 CR_EXTERNAL_SECURE_PORT=$(__kube_get_service_port $CR_APP_NAME $KUBE_SIM_NAMESPACE "https")
229 echo " Host IP, http port, https port: $CR_HOST_NAME $CR_EXTERNAL_PORT $CR_EXTERNAL_SECURE_PORT"
230 if [ $CR_HTTPX == "http" ]; then
231 CR_PATH=$CR_HTTPX"://"$CR_HOST_NAME":"$CR_EXTERNAL_PORT
232 CR_SERVICE_PATH=$CR_HTTPX"://"$CR_APP_NAME"."$KUBE_SIM_NAMESPACE":"$CR_EXTERNAL_PORT$CR_APP_CALLBACK
234 CR_PATH=$CR_HTTPX"://"$CR_HOST_NAME":"$CR_EXTERNAL_SECURE_PORT
235 CR_SERVICE_PATH=$CR_HTTPX"://"$CR_APP_NAME"."$KUBE_SIM_NAMESPACE":"$CR_EXTERNAL_SECURE_PORT$CR_APP_CALLBACK
237 if [ $CR_ADAPTER_TYPE == "REST" ]; then
241 __check_service_start $CR_APP_NAME $CR_PATH$CR_ALIVE_URL
243 echo -ne " Service $CR_APP_NAME - reset "$SAMELINE
244 result=$(__do_curl $CR_APP_NAME $CR_PATH/reset)
245 if [ $? -ne 0 ]; then
246 echo -e " Service $CR_APP_NAME - reset $RED Failed $ERED - will continue"
248 echo -e " Service $CR_APP_NAME - reset $GREEN OK $EGREEN"
251 # Check if docker app shall be fully managed by the test script
252 __check_included_image 'CR'
253 if [ $? -eq 1 ]; then
254 echo -e $RED"The Callback Receiver app is not included in this test script"$ERED
255 echo -e $RED"The Callback Receiver will not be started"$ERED
260 export CR_INTERNAL_PORT
261 export CR_EXTERNAL_PORT
262 export CR_INTERNAL_SECURE_PORT
263 export CR_EXTERNAL_SECURE_PORT
264 export DOCKER_SIM_NWNAME
265 export CR_DISPLAY_NAME
267 __start_container $CR_COMPOSE_DIR "" NODOCKERARGS 1 $CR_APP_NAME
269 __check_service_start $CR_APP_NAME $CR_PATH$CR_ALIVE_URL
275 # Tests if a variable value in the CR is equal to a target value and and optional timeout.
276 # Arg: <variable-name> <target-value> - This test set pass or fail depending on if the variable is
277 # equal to the target or not.
278 # Arg: <variable-name> <target-value> <timeout-in-sec> - This test waits up to the timeout seconds
279 # before setting pass or fail depending on if the variable value becomes equal to the target
281 # (Function for test scripts)
283 if [ $# -eq 2 ] || [ $# -eq 3 ]; then
284 __var_test "CR" "$CR_PATH/counter/" $1 "=" $2 $3
286 __print_err "Wrong args to cr_equal, needs two or three args: <sim-param> <target-value> [ timeout ]" $@
290 # CR API: Check the contents of all current ric sync events for one id from PMS
291 # <response-code> <id> [ EMPTY | ( <ric-id> )+ ]
292 # (Function for test scripts)
293 cr_api_check_all_sync_events() {
296 if [ "$PMS_VERSION" != "V2" ]; then
297 __log_test_fail_not_supported
301 if [ $# -lt 2 ]; then
302 __print_err "<response-code> <id> [ EMPTY | ( <ric-id> )+ ]" $@
306 query="/get-all-events/"$2
307 res="$(__do_curl_to_api CR GET $query)"
308 status=${res:${#res}-3}
310 if [ $status -ne $1 ]; then
311 __log_test_fail_status_code $1 $status
315 if [ $# -gt 2 ]; then
316 body=${res:0:${#res}-3}
317 if [ $# -eq 3 ] && [ $3 == "EMPTY" ]; then
323 for ((i=0; i<$(($#-2)); i=i+1)); do
325 if [ "$targetJson" != "[" ]; then
326 targetJson=$targetJson","
328 targetJson=$targetJson"{\"ric_id\":\"${arr[$i]}\",\"event_type\":\"AVAILABLE\"}"
332 targetJson=$targetJson"]"
333 echo "TARGET JSON: $targetJson" >> $HTTPLOG
334 res=$(python3 ../common/compare_json.py "$targetJson" "$body")
336 if [ $res -ne 0 ]; then
345 # CR API: Check the contents of all current status events for one id from ECS
346 # <response-code> <id> [ EMPTY | ( <status> )+ ]
347 # (Function for test scripts)
348 cr_api_check_all_ecs_events() {
351 if [ $# -lt 2 ]; then
352 __print_err "<response-code> <id> [ EMPTY | ( <status> )+ ]" $@
356 query="/get-all-events/"$2
357 res="$(__do_curl_to_api CR GET $query)"
358 status=${res:${#res}-3}
360 if [ $status -ne $1 ]; then
361 __log_test_fail_status_code $1 $status
365 if [ $# -gt 2 ]; then
366 body=${res:0:${#res}-3}
367 if [ $# -eq 3 ] && [ $3 == "EMPTY" ]; then
373 for ((i=0; i<$(($#-2)); i=i+1)); do
375 if [ "$targetJson" != "[" ]; then
376 targetJson=$targetJson","
378 targetJson=$targetJson"{\"eiJobStatus\":\"${arr[$i]}\"}"
382 targetJson=$targetJson"]"
383 echo "TARGET JSON: $targetJson" >> $HTTPLOG
384 res=$(python3 ../common/compare_json.py "$targetJson" "$body")
386 if [ $res -ne 0 ]; then