X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fcommon%2Frapp_catalogue_api_functions.sh;h=52416d34be94312eb10bb01d731033ad0e2581c2;hb=663566c28930429775ea9921f0e32ddf5253da28;hp=777b9d372648acd7f7a47129d4bc554cd92a21a9;hpb=1e539490bc37fed791895dd1f2f898caa3b0ca5c;p=nonrtric.git diff --git a/test/common/rapp_catalogue_api_functions.sh b/test/common/rapp_catalogue_api_functions.sh index 777b9d37..52416d34 100644 --- a/test/common/rapp_catalogue_api_functions.sh +++ b/test/common/rapp_catalogue_api_functions.sh @@ -19,47 +19,124 @@ # This is a script that contains container/service managemnt functions test functions for RAPP Catalogue API -## Access to RAPP Catalogue -# Host name may be changed if app started by kube -# Direct access from script -RC_HTTPX="http" -RC_HOST_NAME=$LOCALHOST_NAME -RC_PATH=$RC_HTTPX"://"$RC_HOST_NAME":"$RAPP_CAT_EXTERNAL_PORT -# RC_ADAPTER used for switch between REST and DMAAP (only REST supported currently) -RC_ADAPTER_TYPE="REST" -RC_ADAPTER=$RC_PATH - - -########################### -### RAPP Catalogue -########################### - -# Set http as the protocol to use for all communication to the RAPP Catalogue +################ Test engine functions ################ + +# Create the image var used during the test +# arg: [] (selects staging, snapshot, release etc) +# is present only for images with staging, snapshot,release tags +__RC_imagesetup() { + __check_and_create_image_var RC "RAPP_CAT_IMAGE" "RAPP_CAT_IMAGE_BASE" "RAPP_CAT_IMAGE_TAG" $1 "$RAPP_CAT_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 arg var may contain: 'remote', 'remote-remove' or 'local' +__RC_imagepull() { + __check_and_pull_image $1 "$c" $RAPP_CAT_APP_NAME RAPP_CAT_IMAGE +} + +# 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: +__RC_image_data() { + echo -e "$RAPP_CAT_DISPLAY_NAME\t$(docker images --format $1 $RAPP_CAT_IMAGE)" >> $2 + if [ ! -z "$RAPP_CAT_IMAGE_SOURCE" ]; then + echo -e "-- source image --\t$(docker images --format $1 $RAPP_CAT_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 +__RC_kube_scale_zero() { + __kube_scale_all_resources $KUBE_NONRTRIC_NAMESPACE autotest RC +} + +# 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. +__RC_kube_scale_zero_and_wait() { + __kube_scale_and_wait_all_resources $KUBE_NONRTRIC_NAMESPACE app "$KUBE_NONRTRIC_NAMESPACE"-rappcatalogueservice +} + +# Delete all kube resouces for the app +# This function is called for apps managed by the test script. +__RC_kube_delete_all() { + __kube_delete_all_resources $KUBE_NONRTRIC_NAMESPACE autotest RC +} + +# Store docker logs +# This function is called for apps managed by the test script. +# args: +__RC_store_docker_logs() { + if [ $RUNMODE == "KUBE" ]; then + kubectl logs -l "autotest=RC" -n $KUBE_NONRTRIC_NAMESPACE --tail=-1 > $1$2_rc.log 2>&1 + else + docker logs $RAPP_CAT_APP_NAME > $1$2_rc.log 2>&1 + fi +} + +# Initial setup of protocol, host and ports +# This function is called for apps managed by the test script. +# args: - +__RC_initial_setup() { + use_rapp_catalogue_http +} + +####################################################### + +# Set http as the protocol to use for all communication to the Rapp catalogue # args: - # (Function for test scripts) use_rapp_catalogue_http() { - echo -e $BOLD"RAPP Catalogue protocol setting"$EBOLD - echo -e " Using $BOLD http $EBOLD towards the RAPP Catalogue" - RC_HTTPX="http" - RC_PATH=$RC_HTTPX"://"$RC_HOST_NAME":"$RAPP_CAT_EXTERNAL_PORT - RC_ADAPTER_TYPE="REST" - RC_ADAPTER=$RC_PATH - echo "" + __rapp_catalogue_set_protocoll "http" $RAPP_CAT_INTERNAL_PORT $RAPP_CAT_EXTERNAL_PORT } -# Set https as the protocol to use for all communication to the RAPP Catalogue +# Set https as the protocol to use for all communication to the Rapp catalogue # args: - # (Function for test scripts) use_rapp_catalogue_https() { - echo -e $BOLD"RAPP Catalogue protocol setting"$EBOLD - echo -e " Using $BOLD https $EBOLD towards the RAPP Catalogue" - RC_HTTPX="https" - RC_PATH=$RC_HTTPX"://"$RC_HOST_NAME":"$RAPP_CAT_EXTERNAL_SECURE_PORT + __rapp_catalogue_set_protocoll "https" $RAPP_CAT_INTERNAL_SECURE_PORT $RAPP_CAT_EXTERNAL_SECURE_PORT +} + +# Setup paths to svc/container for internal and external access +# args: +__rapp_catalogue_set_protocoll() { + echo -e $BOLD"$RAPP_CAT_DISPLAY_NAME protocol setting"$EBOLD + echo -e " Using $BOLD http $EBOLD towards $RAPP_CAT_DISPLAY_NAME" + + ## Access to Rapp catalogue + + RC_SERVICE_PATH=$1"://"$RAPP_CAT_APP_NAME":"$2 # docker access, container->container and script->container via proxy + if [ $RUNMODE == "KUBE" ]; then + RC_SERVICE_PATH=$1"://"$RAPP_CAT_APP_NAME.$KUBE_NONRTRIC_NAMESPACE":"$3 # kube access, pod->svc and script->svc via proxy + fi + + # RC_ADAPTER used for switching between REST and DMAAP (only REST supported currently) RC_ADAPTER_TYPE="REST" - RC_ADAPTER=$RC_PATH + RC_ADAPTER=$RC_SERVICE_PATH + echo "" } +# Export env vars for config files, docker compose and kube resources +# args: +__rapp_catalogue_export_vars() { + + export RAPP_CAT_APP_NAME + export RAPP_CAT_DISPLAY_NAME + + export DOCKER_SIM_NWNAME + export KUBE_NONRTRIC_NAMESPACE + + export RAPP_CAT_IMAGE + export RAPP_CAT_INTERNAL_PORT + export RAPP_CAT_INTERNAL_SECURE_PORT + export RAPP_CAT_EXTERNAL_PORT + export RAPP_CAT_EXTERNAL_SECURE_PORT +} + # Start the RAPP Catalogue container # args: - # (Function for test scripts) @@ -101,13 +178,7 @@ start_rapp_catalogue() { #Check if nonrtric namespace exists, if not create it __kube_create_namespace $KUBE_NONRTRIC_NAMESPACE - export RAPP_CAT_APP_NAME - export KUBE_NONRTRIC_NAMESPACE - export RAPP_CAT_IMAGE - export RAPP_CAT_INTERNAL_PORT - export RAPP_CAT_INTERNAL_SECURE_PORT - export RAPP_CAT_EXTERNAL_PORT - export RAPP_CAT_EXTERNAL_SECURE_PORT + __rapp_catalogue_export_vars #Create service input_yaml=$SIM_GROUP"/"$RAPP_CAT_COMPOSE_DIR"/"svc.yaml @@ -120,25 +191,8 @@ start_rapp_catalogue() { __kube_create_instance app $RAPP_CAT_APP_NAME $input_yaml $output_yaml fi - echo " Retrieving host and ports for service..." - RC_HOST_NAME=$(__kube_get_service_host $RAPP_CAT_APP_NAME $KUBE_NONRTRIC_NAMESPACE) - - RAPP_CAT_EXTERNAL_PORT=$(__kube_get_service_port $RAPP_CAT_APP_NAME $KUBE_NONRTRIC_NAMESPACE "http") - RAPP_CAT_EXTERNAL_SECURE_PORT=$(__kube_get_service_port $RAPP_CAT_APP_NAME $KUBE_NONRTRIC_NAMESPACE "https") + __check_service_start $RAPP_CAT_APP_NAME $RC_SERVICE_PATH$RAPP_CAT_ALIVE_URL - echo " Host IP, http port, https port: $RC_HOST_NAME $RAPP_CAT_EXTERNAL_PORT $RAPP_CAT_EXTERNAL_SECURE_PORT" - if [ $RC_HTTPX == "http" ]; then - RC_PATH=$RC_HTTPX"://"$RC_HOST_NAME":"$RAPP_CAT_EXTERNAL_PORT - else - RC_PATH=$RC_HTTPX"://"$RC_HOST_NAME":"$RAPP_CAT_EXTERNAL_SECURE_PORT - fi - - __check_service_start $RAPP_CAT_APP_NAME $RC_PATH$RAPP_CAT_ALIVE_URL - - # Update the curl adapter if set to rest, no change if type dmaap - if [ $RC_ADAPTER_TYPE == "REST" ]; then - RC_ADAPTER=$RC_PATH - fi else __check_included_image 'RC' if [ $? -eq 1 ]; then @@ -147,16 +201,11 @@ start_rapp_catalogue() { exit fi - export RAPP_CAT_APP_NAME - export RAPP_CAT_INTERNAL_PORT - export RAPP_CAT_EXTERNAL_PORT - export RAPP_CAT_INTERNAL_SECURE_PORT - export RAPP_CAT_EXTERNAL_SECURE_PORT - export DOCKER_SIM_NWNAME + __rapp_catalogue_export_vars - __start_container $RAPP_CAT_COMPOSE_DIR NODOCKERARGS 1 $RAPP_CAT_APP_NAME + __start_container $RAPP_CAT_COMPOSE_DIR "" NODOCKERARGS 1 $RAPP_CAT_APP_NAME - __check_service_start $RAPP_CAT_APP_NAME $RC_PATH$RAPP_CAT_ALIVE_URL + __check_service_start $RAPP_CAT_APP_NAME $RC_SERVICE_PATH$RAPP_CAT_ALIVE_URL fi echo "" } @@ -171,7 +220,7 @@ start_rapp_catalogue() { rc_equal() { if [ $# -eq 2 ] || [ $# -eq 3 ]; then #__var_test RC "$LOCALHOST_HTTP:$RC_EXTERNAL_PORT/" $1 "=" $2 $3 - __var_test RC "$RC_PATH/" $1 "=" $2 $3 + __var_test RC "$RC_SERVICE_PATH/" $1 "=" $2 $3 else __print_err "Wrong args to ecs_equal, needs two or three args: [ timeout ]" $@ fi