X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fcommon%2Fcontrol_panel_api_functions.sh;h=4d96880b47937965ee47bc33b06bf34bec70f474;hb=84ffd4a403baee1b7aa86f9986f0c1659a5a0881;hp=9f179a1f209c008b1e98bda22c3bed997cb4b21c;hpb=f0019c8168b9d59f132ba47e939e8aa3ef324b7d;p=nonrtric.git diff --git a/test/common/control_panel_api_functions.sh b/test/common/control_panel_api_functions.sh index 9f179a1f..4d96880b 100644 --- a/test/common/control_panel_api_functions.sh +++ b/test/common/control_panel_api_functions.sh @@ -20,6 +20,70 @@ # This is a script that contains container/service management function # and test functions for Control Panel +################ 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 +__CP_imagesetup() { + __check_and_create_image_var CP "CONTROL_PANEL_IMAGE" "CONTROL_PANEL_IMAGE_BASE" "CONTROL_PANEL_IMAGE_TAG" $1 "$CONTROL_PANEL_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' +__CP_imagepull() { + __check_and_pull_image $1 "$CONTROL_PANEL_DISPLAY_NAME" $CONTROL_PANEL_APP_NAME CONTROL_PANEL_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 +__CP_imagebuild() { + echo -e $RED" Image for app CP 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: +__CP_image_data() { + echo -e "$CONTROL_PANEL_DISPLAY_NAME\t$(docker images --format $1 $CONTROL_PANEL_IMAGE)" >> $2 + if [ ! -z "$CONTROL_PANEL_IMAGE_SOURCE" ]; then + echo -e "-- source image --\t$(docker images --format $1 $CONTROL_PANEL_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 +__CP_kube_scale_zero() { + __kube_scale_all_resources $KUBE_NONRTRIC_NAMESPACE autotest CP +} + +# 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. +__CP_kube_scale_zero_and_wait() { + echo -e " CP replicas kept as is" +} + +# Delete all kube resouces for the app +# This function is called for apps managed by the test script. +__CP_kube_delete_all() { + __kube_delete_all_resources $KUBE_NONRTRIC_NAMESPACE autotest CP +} + +# Store docker logs +# This function is called for apps managed by the test script. +# args: +__CP_store_docker_logs() { + docker logs $CONTROL_PANEL_APP_NAME > $1$2_control-panel.log 2>&1 +} + +####################################################### + + ## Access to control panel # Host name may be changed if app started by kube # Direct access from script @@ -91,7 +155,7 @@ start_control_panel() { if [ $retcode_i -eq 0 ]; then - echo -e " Creating $CP_APP_NAME app and expose service" + echo -e " Creating $CONTROL_PANEL_APP_NAME app and expose service" #Export all vars needed for service and deployment export CONTROL_PANEL_APP_NAME @@ -104,11 +168,15 @@ start_control_panel() { export CONTROL_PANEL_CONFIG_MOUNT_PATH export CONTROL_PANEL_CONFIG_FILE export CP_CONFIG_CONFIGMAP_NAME=$CONTROL_PANEL_APP_NAME"-config" + export CP_PROXY_CONFIGMAP_NAME=$CONTROL_PANEL_APP_NAME"-proxy" - export POLICY_AGENT_EXTERNAL_SECURE_PORT - export ECS_EXTERNAL_SECURE_PORT - export POLICY_AGENT_DOMAIN_NAME=$POLICY_AGENT_APP_NAME.$KUBE_NONRTRIC_NAMESPACE - export ECS_DOMAIN_NAME=$ECS_APP_NAME.$KUBE_NONRTRIC_NAMESPACE + export NGW_DOMAIN_NAME=$NRT_GATEWAY_APP_NAME.$KUBE_NONRTRIC_NAMESPACE.svc.cluster.local # suffix needed for nginx name resolution + export NRT_GATEWAY_EXTERNAL_PORT + export CONTROL_PANEL_PATH_POLICY_PREFIX + export CONTROL_PANEL_PATH_ECS_PREFIX + export CONTROL_PANEL_PATH_ECS_PREFIX2 + + export CP_NGINX_RESOLVER=$CONTROL_PANEL_NGINX_KUBE_RESOLVER #Check if nonrtric namespace exists, if not create it __kube_create_namespace $KUBE_NONRTRIC_NAMESPACE @@ -116,7 +184,13 @@ start_control_panel() { # Create config map for config datafile=$PWD/tmp/$CONTROL_PANEL_CONFIG_FILE #Add config to properties file + + #Trick to prevent these two vars to be replace with space in the config file by cmd envsubst + export upstream='$upstream' + export uri='$uri' + envsubst < $1 > $datafile + output_yaml=$PWD/tmp/cp_cfc.yaml __kube_create_configmap $CP_CONFIG_CONFIGMAP_NAME $KUBE_NONRTRIC_NAMESPACE autotest CP $datafile $output_yaml @@ -163,10 +237,36 @@ start_control_panel() { export CONTROL_PANEL_EXTERNAL_SECURE_PORT export DOCKER_SIM_NWNAME - __start_container $CONTROL_PANEL_COMPOSE_DIR NODOCKERARGS 1 $CONTROL_PANEL_APP_NAME + export CONTROL_PANEL_HOST_MNT_DIR + export CONTROL_PANEL_CONFIG_FILE + export CONTROL_PANEL_CONFIG_MOUNT_PATH + + export NRT_GATEWAY_APP_NAME + export NRT_GATEWAY_EXTERNAL_PORT + + export POLICY_AGENT_EXTERNAL_SECURE_PORT + export ECS_EXTERNAL_SECURE_PORT + export POLICY_AGENT_DOMAIN_NAME=$POLICY_AGENT_APP_NAME + export ECS_DOMAIN_NAME=$ECS_APP_NAME + + export CONTROL_PANEL_HOST_MNT_DIR + export CONTROL_PANEL_CONFIG_MOUNT_PATH + export CONTROL_PANEL_CONFIG_FILE + export CONTROL_PANEL_DISPLAY_NAME + export NGW_DOMAIN_NAME=$NRT_GATEWAY_APP_NAME + export CONTROL_PANEL_PATH_POLICY_PREFIX + export CONTROL_PANEL_PATH_ECS_PREFIX + export CONTROL_PANEL_PATH_ECS_PREFIX2 + + export CP_NGINX_RESOLVER=$CONTROL_PANEL_NGINX_DOCKER_RESOLVER + + dest_file=$SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_HOST_MNT_DIR/$CONTROL_PANEL_CONFIG_FILE + + envsubst '${NGW_DOMAIN_NAME},${CP_NGINX_RESOLVER},${NRT_GATEWAY_EXTERNAL_PORT},${POLICY_AGENT_EXTERNAL_SECURE_PORT},${ECS_EXTERNAL_SECURE_PORT},${POLICY_AGENT_DOMAIN_NAME},${ECS_DOMAIN_NAME},${CONTROL_PANEL_PATH_POLICY_PREFIX},${CONTROL_PANEL_PATH_ECS_PREFIX} ,${CONTROL_PANEL_PATH_ECS_PREFIX2}' < $1 > $dest_file + + __start_container $CONTROL_PANEL_COMPOSE_DIR "" NODOCKERARGS 1 $CONTROL_PANEL_APP_NAME __check_service_start $CONTROL_PANEL_APP_NAME $CP_PATH$CONTROL_PANEL_ALIVE_URL fi echo "" } -