X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fcommon%2Fconsul_cbs_functions.sh;h=747eaaba1e15393bf405b012a515a6eafcd07648;hb=663566c28930429775ea9921f0e32ddf5253da28;hp=a3c08fa8e2ba433859c10fb7759fbd75d06d8b37;hpb=4f7f0cda2f07f62dcbb2e371fc09764b2337a8e9;p=nonrtric.git diff --git a/test/common/consul_cbs_functions.sh b/test/common/consul_cbs_functions.sh index a3c08fa8..747eaaba 100644 --- a/test/common/consul_cbs_functions.sh +++ b/test/common/consul_cbs_functions.sh @@ -19,7 +19,154 @@ # This is a script that contains container/service management functions and test functions for Consul/CBS -CONSUL_PATH="http://$LOCALHOST:$CONSUL_EXTERNAL_PORT" +################ Test engine functions ################ + +# Create the image var used during the test +# arg: (selects staging, snapshot, release etc) +# is present only for that exist with staging, snapshot,release tags +__CONSUL_imagesetup() { + __check_and_create_image_var CONSUL "CONSUL_IMAGE" "CONSUL_IMAGE_BASE" "CONSUL_IMAGE_TAG" REMOTE_PROXY "$CONSUL_DISPLAY_NAME" + +} + +# Create the image var used during the test +# arg: (selects staging, snapshot, release etc) +# is present only for images with staging, snapshot,release tags +__CBS_imagesetup() { + __check_and_create_image_var CBS "CBS_IMAGE" "CBS_IMAGE_BASE" "CBS_IMAGE_TAG" REMOTE_RELEASE_ONAP "$CBS_DISPLAY_NAME" + +} + +# Pull image from remote repo or use locally built image +# arg: +# Shall be used for images allowing overriding. For example use a local image when test is started to use released images +# Shall be used for images that does not allow overriding +# Both var may contain: 'remote', 'remote-remove' or 'local' +__CONSUL_imagepull() { + __check_and_pull_image $2 "$CONSUL_DISPLAY_NAME" $CONSUL_APP_NAME CONSUL_IMAGE +} + +# Pull image from remote repo or use locally built image +# arg: +# Shall be used for images allowing overriding. For example use a local image when test is started to use released images +# Shall be used for images that does not allow overriding +# Both var may contain: 'remote', 'remote-remove' or 'local' +__CBS_imagepull() { + __check_and_pull_image $2 "$CBS_DISPLAY_NAME" $CBS_APP_NAME CBS_IMAGE +} + +# Build image (only for simulator or interfaces stubs owned by the test environment) +# arg: (selects staging, snapshot, release etc) +# is present only for images with staging, snapshot,release tags +__CONSUL_imagebuild() { + echo -e $RED" Image for app CONSUL shall never be built"$ERED +} + +# Build image (only for simulator or interfaces stubs owned by the test environment) +# arg: (selects staging, snapshot, release etc) +# is present only for images with staging, snapshot,release tags +__CBS_imagebuild() { + echo -e $RED" Image for app CBS shall never be built"$ERED +} + +# Generate a string for each included image using the app display name and a docker images format string +# If a custom image repo is used then also the source image from the local repo is listed +# arg: +__CONSUL_image_data() { + echo -e "$CONSUL_DISPLAY_NAME\t$(docker images --format $1 $CONSUL_IMAGE)" >> $2 + if [ ! -z "$CONSUL_IMAGE_SOURCE" ]; then + echo -e "-- source image --\t$(docker images --format $1 $CONSUL_IMAGE_SOURCE)" >> $2 + fi +} + +# Generate a string for each included image using the app display name and a docker images format string +# If a custom image repo is used then also the source image from the local repo is listed +# arg: +__CBS_image_data() { + echo -e "$CBS_DISPLAY_NAME\t$(docker images --format $1 $CBS_IMAGE)" >> $2 + if [ ! -z "$CBS_IMAGE_SOURCE" ]; then + echo -e "-- source image --\t$(docker images --format $1 $CBS_IMAGE_SOURCE)" >> $2 + fi +} + +# Scale kubernetes resources to zero +# All resources shall be ordered to be scaled to 0, if relevant. If not relevant to scale, then do no action. +# This function is called for apps fully managed by the test script +__CONSUL_kube_scale_zero() { + echo -e $RED" Image for app CONSUL is not used in kube"$ERED +} + +# Scale kubernetes resources to zero +# All resources shall be ordered to be scaled to 0, if relevant. If not relevant to scale, then do no action. +# This function is called for apps fully managed by the test script +__CBS_kube_scale_zero() { + echo -e $RED" Image for app CBS is not used in kube"$ERED +} + +# Scale kubernetes resources to zero and wait until this has been accomplished, if relevant. If not relevant to scale, then do no action. +# This function is called for prestarted apps not managed by the test script. +__CONSUL_kube_scale_zero_and_wait() { + echo -e $RED" CONSUL app is not used in kube"$ERED +} + +# Scale kubernetes resources to zero and wait until this has been accomplished, if relevant. If not relevant to scale, then do no action. +# This function is called for prestarted apps not managed by the test script. +__CBS_kube_scale_zero_and_wait() { + echo -e $RED" CBS app is not used in kube"$ERED +} + +# Delete all kube resouces for the app +# This function is called for apps managed by the test script. +__CONSUL_kube_delete_all() { + echo -e $RED" CONSUL app is not used in kube"$ERED +} + +# Delete all kube resouces for the app +# This function is called for apps managed by the test script. +__CBS_kube_delete_all() { + echo -e $RED" CBS app is not used in kube"$ERED +} + +# Store docker logs +# This function is called for apps managed by the test script. +# args: +__CONSUL_store_docker_logs() { + if [ $RUNMODE == "KUBE" ]; then + : + else + docker logs $CONSUL_APP_NAME > $1/$2_consul.log 2>&1 + fi +} + +# Store docker logs +# This function is called for apps managed by the test script. +# args: +__CBS_store_docker_logs() { + if [ $RUNMODE == "KUBE" ]; then + : + else + docker logs $CBS_APP_NAME > $1$2_cbs.log 2>&1 + body="$(__do_curl $LOCALHOST_HTTP:$CBS_EXTERNAL_PORT/service_component_all/$POLICY_AGENT_APP_NAME)" + echo "$body" > $1$2_consul_config.json 2>&1 + fi +} + +# Initial setup of protocol, host and ports +# This function is called for apps managed by the test script. +# args: - +__CONSUL_initial_setup() { + CONSUL_SERVICE_PATH="http://"$CONSUL_APP_NAME":"$CONSUL_INTERNAL_PORT +} + +# Initial setup of protocol, host and ports +# This function is called for apps managed by the test script. +# args: - +__CBS_initial_setup() { + CBS_SERVICE_PATH="http://"$CBS_APP_NAME":"$CBS_INTERNAL_PORT +} + +####################################################### + #################### ### Consul functions @@ -40,14 +187,15 @@ consul_config_app() { echo " Loading config for "$POLICY_AGENT_APP_NAME" from "$1 - curlString="$LOCALHOST_HTTP:${CONSUL_EXTERNAL_PORT}/v1/kv/${POLICY_AGENT_CONFIG_KEY}?dc=dc1 -X PUT -H Accept:application/json -H Content-Type:application/json -H X-Requested-With:XMLHttpRequest --data-binary @"$1 + curlString="$CONSUL_SERVICE_PATH/v1/kv/${POLICY_AGENT_CONFIG_KEY}?dc=dc1 -X PUT -H Accept:application/json -H Content-Type:application/json -H X-Requested-With:XMLHttpRequest --data-binary @"$1 + result=$(__do_curl "$curlString") if [ $? -ne 0 ]; then echo -e $RED" FAIL - json config could not be loaded to consul" $ERED ((RES_CONF_FAIL++)) return 1 fi - body="$(__do_curl $LOCALHOST_HTTP:$CBS_EXTERNAL_PORT/service_component_all/$POLICY_AGENT_CONFIG_KEY)" + body="$(__do_curl $CBS_SERVICE_PATH/service_component_all/$POLICY_AGENT_CONFIG_KEY)" echo $body > "./tmp/.output"$1 if [ $? -ne 0 ]; then @@ -128,14 +276,14 @@ prepare_consul_config() { config_json=$config_json"\n \"ric\": [" if [ $RUNMODE == "KUBE" ]; then - result=$(kubectl get pods -n $KUBE_NONRTRIC_NAMESPACE -o jsonpath='{.items[?(@.metadata.labels.autotest=="RICSIM")].metadata.name}') + result=$(kubectl get pods -n $KUBE_A1SIM_NAMESPACE -o jsonpath='{.items[?(@.metadata.labels.autotest=="RICSIM")].metadata.name}') rics="" ric_cntr=0 if [ $? -eq 0 ] && [ ! -z "$result" ]; then for im in $result; do if [[ $im != *"-0" ]]; then - ric_subdomain=$(kubectl get pod $im -n $KUBE_NONRTRIC_NAMESPACE -o jsonpath='{.spec.subdomain}') - rics=$rics" "$im"."$ric_subdomain".nonrtric" + ric_subdomain=$(kubectl get pod $im -n $KUBE_A1SIM_NAMESPACE -o jsonpath='{.spec.subdomain}') + rics=$rics" "$im"."$ric_subdomain"."$KUBE_A1SIM_NAMESPACE let ric_cntr=ric_cntr+1 fi done @@ -144,8 +292,7 @@ prepare_consul_config() { echo $YELLOW"Warning: No rics found for the configuration"$EYELLOW fi else - rics=$(docker ps | grep $RIC_SIM_PREFIX | awk '{print $NF}') - + rics=$(docker ps --filter "name=$RIC_SIM_PREFIX" --filter "network=$DOCKER_SIM_NWNAME" --filter "status=running" --format {{.Names}}) if [ $? -ne 0 ] || [ -z "$rics" ]; then echo -e $RED" FAIL - the names of the running RIC Simulator cannot be retrieved." $ERED ((RES_CONF_FAIL++)) @@ -164,6 +311,7 @@ prepare_consul_config() { else ric_id=$ric fi + echo " Found a1 sim: "$ric_id config_json=$config_json"\n \"name\": \"$ric_id\"," config_json=$config_json"\n \"baseUrl\": \"$RIC_SIM_HTTPX://$ric:$RIC_SIM_PORT\"," if [ $1 == "SDNC" ]; then @@ -208,11 +356,13 @@ start_consul_cbs() { export CBS_INTERNAL_PORT export CBS_EXTERNAL_PORT export CONSUL_HOST + export CONSUL_DISPLAY_NAME + export CBS_DISPLAY_NAME - __start_container $CONSUL_CBS_COMPOSE_DIR NODOCKERARGS 2 $CONSUL_APP_NAME $CBS_APP_NAME + __start_container $CONSUL_CBS_COMPOSE_DIR "" NODOCKERARGS 2 $CONSUL_APP_NAME $CBS_APP_NAME - __check_service_start $CONSUL_APP_NAME "http://"$LOCALHOST_NAME":"$CONSUL_EXTERNAL_PORT$CONSUL_ALIVE_URL - __check_service_start $CBS_APP_NAME "http://"$LOCALHOST_NAME":"$CBS_EXTERNAL_PORT$CBS_ALIVE_URL + __check_service_start $CONSUL_APP_NAME $CONSUL_SERVICE_PATH$CONSUL_ALIVE_URL + __check_service_start $CBS_APP_NAME $CBS_SERVICE_PATH$CBS_ALIVE_URL echo "" }