BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 1 | #!/usr/bin/env 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 | TC_ONELINE_DESCR="Preparation demo setup - policy management and enrichment information" |
| 21 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 22 | #App names to include in the test when running docker, space separated list |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 23 | DOCKER_INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM SDNC ECS PRODSTUB RC HTTPPROXY NGW" |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 24 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 25 | #App names to include in the test when running kubernetes, space separated list |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 26 | KUBE_INCLUDED_IMAGES=" MR CR PA RC PRODSTUB RICSIM CP ECS SDNC HTTPPROXY KUBEPROXY NGW" |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 27 | #Prestarted app (not started by script) to include in the test when running kubernetes, space separated list |
| 28 | KUBE_PRESTARTED_IMAGES="" |
| 29 | |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 30 | #Ignore image in DOCKER_INCLUDED_IMAGES, KUBE_INCLUDED_IMAGES if |
| 31 | #the image is not configured in the supplied env_file |
| 32 | #Used for images not applicable to all supported profile |
| 33 | CONDITIONALLY_IGNORED_IMAGES="NGW" |
| 34 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 35 | #Supported test environment profiles |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 36 | SUPPORTED_PROFILES="ONAP-HONOLULU ONAP-ISTANBUL ORAN-CHERRY ORAN-D-RELEASE ORAN-E-RELEASE" |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 37 | #Supported run modes |
| 38 | SUPPORTED_RUNMODES="DOCKER KUBE" |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 39 | |
| 40 | . ../common/testcase_common.sh $@ |
| 41 | . ../common/agent_api_functions.sh |
| 42 | . ../common/ricsimulator_api_functions.sh |
| 43 | . ../common/ecs_api_functions.sh |
| 44 | . ../common/prodstub_api_functions.sh |
| 45 | . ../common/cr_api_functions.sh |
BjornMagnussonXA | de4d0f8 | 2020-11-29 16:04:06 +0100 | [diff] [blame] | 46 | . ../common/rapp_catalogue_api_functions.sh |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 47 | . ../common/mr_api_functions.sh |
| 48 | . ../common/control_panel_api_functions.sh |
| 49 | . ../common/controller_api_functions.sh |
| 50 | . ../common/consul_cbs_functions.sh |
| 51 | . ../common/http_proxy_api_functions.sh |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 52 | . ../common/kube_proxy_api_functions.sh |
| 53 | . ../common/gateway_api_functions.sh |
| 54 | |
| 55 | setup_testenvironment |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 56 | |
| 57 | #### TEST BEGIN #### |
| 58 | |
| 59 | #Local vars in test script |
| 60 | ########################## |
| 61 | |
| 62 | use_cr_https |
| 63 | use_agent_rest_https |
| 64 | use_sdnc_https |
| 65 | use_simulator_https |
| 66 | use_ecs_rest_https |
| 67 | use_prod_stub_https |
BjornMagnussonXA | c963b73 | 2021-01-20 14:24:13 +0100 | [diff] [blame] | 68 | if [ $ECS_VERSION == "V1-1" ]; then |
| 69 | use_rapp_catalogue_http # https not yet supported |
| 70 | else |
| 71 | use_rapp_catalogue_https |
| 72 | fi |
| 73 | |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 74 | |
| 75 | if [ "$PMS_VERSION" == "V2" ]; then |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 76 | notificationurl=$CR_SERVICE_PATH"/test" |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 77 | else |
| 78 | echo "PMS VERSION 2 (V2) is required" |
| 79 | exit 1 |
| 80 | fi |
| 81 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 82 | clean_environment |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 83 | |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 84 | if [ $RUNMODE == "KUBE" ]; then |
| 85 | start_kube_proxy |
| 86 | fi |
| 87 | |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 88 | STD_NUM_RICS=2 |
| 89 | |
BjornMagnussonXA | c963b73 | 2021-01-20 14:24:13 +0100 | [diff] [blame] | 90 | #start_http_proxy #Remove the comment on this line, comment out 'start_sdnc' and change SDNC to NOSDNC a few lines below to run with proxy |
| 91 | |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 92 | start_ric_simulators $RIC_SIM_PREFIX"_g3" $STD_NUM_RICS STD_2.0.0 |
| 93 | |
| 94 | start_mr #Just to prevent errors in the agent log... |
| 95 | |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 96 | start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE |
| 97 | |
| 98 | if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then |
| 99 | start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE |
| 100 | fi |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 101 | |
BjornMagnussonXA | c963b73 | 2021-01-20 14:24:13 +0100 | [diff] [blame] | 102 | start_sdnc # Comment this line to run PMS with proxy |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 103 | |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 104 | start_policy_agent PROXY $SIM_GROUP/$POLICY_AGENT_COMPOSE_DIR/$POLICY_AGENT_CONFIG_FILE |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 105 | |
| 106 | if [ $RUNMODE == "DOCKER" ]; then |
| 107 | start_consul_cbs |
| 108 | fi |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 109 | |
BjornMagnussonXA | c963b73 | 2021-01-20 14:24:13 +0100 | [diff] [blame] | 110 | prepare_consul_config SDNC ".consul_config.json" #Change to NOSDNC if running PMS with proxy |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 111 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 112 | if [ $RUNMODE == "KUBE" ]; then |
| 113 | agent_load_config ".consul_config.json" |
| 114 | else |
| 115 | consul_config_app ".consul_config.json" |
| 116 | fi |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 117 | |
| 118 | start_cr |
| 119 | |
| 120 | start_prod_stub |
| 121 | |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 122 | start_ecs PROXY $SIM_GROUP/$ECS_COMPOSE_DIR/$ECS_CONFIG_FILE |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 123 | |
BjornMagnussonXA | de4d0f8 | 2020-11-29 16:04:06 +0100 | [diff] [blame] | 124 | start_rapp_catalogue |
| 125 | |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 126 | set_agent_trace |
| 127 | |
| 128 | set_ecs_trace |
| 129 | |
BjornMagnussonXA | ce4b14c | 2021-05-11 15:40:03 +0200 | [diff] [blame] | 130 | use_info_jobs=false #Set flag if interface supporting info-types is used |
| 131 | if [[ "$ECS_FEATURE_LEVEL" == *"INFO-TYPES"* ]]; then |
| 132 | use_info_jobs=true |
| 133 | fi |
| 134 | |
BjornMagnussonXA | de4d0f8 | 2020-11-29 16:04:06 +0100 | [diff] [blame] | 135 | rapp_cat_api_get_services 200 EMPTY |
| 136 | |
| 137 | rapp_cat_api_put_service 201 "Emergency-response-app" v1 "Emergency-response-app" "Emergency-response-app" |
| 138 | |
| 139 | rapp_cat_api_get_services 200 "Emergency-response-app" v1 "Emergency-response-app" "Emergency-response-app" |
| 140 | |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 141 | api_get_status 200 |
| 142 | |
| 143 | # Print the A1 version for STD 2.X |
| 144 | for ((i=1; i<=$STD_NUM_RICS; i++)) |
| 145 | do |
| 146 | sim_print $RIC_SIM_PREFIX"_g3_"$i interface |
| 147 | done |
| 148 | # Load the polictypes in std |
| 149 | for ((i=1; i<=$STD_NUM_RICS; i++)) |
| 150 | do |
| 151 | sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS_0_2_0 demo-testdata/STD2/sim_qos.json |
| 152 | sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS2_0.1.0 demo-testdata/STD2/sim_qos2.json |
| 153 | done |
| 154 | |
| 155 | #Check the number of schemas and the individual schemas in STD |
| 156 | api_equal json:policy-types 2 120 |
| 157 | |
| 158 | for ((i=1; i<=$STD_NUM_RICS; i++)) |
| 159 | do |
| 160 | api_equal json:policy-types?ric_id=$RIC_SIM_PREFIX"_g3_"$i 2 120 |
| 161 | done |
| 162 | |
| 163 | # Check the schemas in STD |
| 164 | for ((i=1; i<=$STD_NUM_RICS; i++)) |
| 165 | do |
| 166 | api_get_policy_type 200 STD_QOS_0_2_0 demo-testdata/STD2/qos-agent-modified.json |
| 167 | api_get_policy_type 200 'STD_QOS2_0.1.0' demo-testdata/STD2/qos2-agent-modified.json |
| 168 | done |
| 169 | |
| 170 | #Check the number of types |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 171 | api_equal json:policy-types 2 300 |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 172 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 173 | api_put_service 201 "Emergency-response-app" 0 "$CR_SERVICE_PATH/1" |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 174 | |
| 175 | # Create policies in STD |
| 176 | for ((i=1; i<=$STD_NUM_RICS; i++)) |
| 177 | do |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 178 | generate_policy_uuid |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 179 | api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g3_"$i STD_QOS_0_2_0 $((2300+$i)) NOTRANSIENT $notificationurl demo-testdata/STD2/pi1_template.json 1 |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 180 | generate_policy_uuid |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 181 | api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g3_"$i 'STD_QOS2_0.1.0' $((2400+$i)) NOTRANSIENT $notificationurl demo-testdata/STD2/pi1_template.json 1 |
| 182 | done |
| 183 | |
| 184 | |
| 185 | # Check the number of policies in STD |
| 186 | for ((i=1; i<=$STD_NUM_RICS; i++)) |
| 187 | do |
| 188 | sim_equal $RIC_SIM_PREFIX"_g3_"$i num_instances 2 |
| 189 | done |
| 190 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 191 | # Print calling hosts STD 2.X |
| 192 | for ((i=1; i<=$STD_NUM_RICS; i++)) |
| 193 | do |
| 194 | sim_print $RIC_SIM_PREFIX"_g3_"$i remote_hosts |
| 195 | done |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 196 | |
| 197 | FLAT_A1_EI="1" |
| 198 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 199 | CB_JOB="$PROD_STUB_SERVICE_PATH$PROD_STUB_JOB_CALLBACK" |
| 200 | CB_SV="$PROD_STUB_SERVICE_PATH$PROD_STUB_SUPERVISION_CALLBACK" |
| 201 | RIC_G1_1=$RIC_SIM_PREFIX"_g3_1" |
| 202 | RIC_G1_2=$RIC_SIM_PREFIX"_g3_2" |
| 203 | if [ $RUNMODE == "KUBE" ]; then |
| 204 | RIC_G1_1=$(get_kube_sim_host $RIC_G1_1) |
| 205 | RIC_G1_2=$(get_kube_sim_host $RIC_G1_2) |
| 206 | fi |
| 207 | TARGET1="$RIC_SIM_HTTPX://$RIC_G1_1:$RIC_SIM_PORT/datadelivery" |
| 208 | TARGET2="$RIC_SIM_HTTPX://$RIC_G1_1:$RIC_SIM_PORT/datadelivery" |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 209 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 210 | STATUS1="$CR_SERVICE_PATH/callbacks/job1-status" |
| 211 | STATUS2="$CR_SERVICE_PATH/callbacks/job2-status" |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 212 | |
| 213 | prodstub_arm_producer 200 prod-a |
| 214 | prodstub_arm_type 200 prod-a type1 |
| 215 | prodstub_arm_job_create 200 prod-a job1 |
| 216 | prodstub_arm_job_create 200 prod-a job2 |
| 217 | |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 218 | ### ecs status |
| 219 | ecs_api_service_status 200 |
| 220 | |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 221 | ## Setup prod-a |
BjornMagnussonXA | 27db02f | 2021-01-19 08:13:00 +0100 | [diff] [blame] | 222 | if [ $ECS_VERSION == "V1-1" ]; then |
| 223 | ecs_api_edp_put_producer 201 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 testdata/ecs/ei-type-1.json |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 224 | |
BjornMagnussonXA | 27db02f | 2021-01-19 08:13:00 +0100 | [diff] [blame] | 225 | ecs_api_edp_get_producer 200 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 testdata/ecs/ei-type-1.json |
| 226 | else |
| 227 | ecs_api_edp_put_type_2 201 type1 testdata/ecs/ei-type-1.json |
| 228 | |
| 229 | ecs_api_edp_put_producer_2 201 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 |
| 230 | |
| 231 | ecs_api_edp_get_producer_2 200 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 |
| 232 | fi |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 233 | |
| 234 | ecs_api_edp_get_producer_status 200 prod-a ENABLED |
| 235 | |
| 236 | |
| 237 | ## Create a job for prod-a |
| 238 | ## job1 - prod-a |
| 239 | if [ -z "$FLAT_A1_EI" ]; then |
| 240 | ecs_api_a1_put_job 201 type1 job1 $TARGET1 ricsim_g3_1 testdata/ecs/job-template.json |
| 241 | else |
| 242 | ecs_api_a1_put_job 201 job1 type1 $TARGET1 ricsim_g3_1 $STATUS1 testdata/ecs/job-template.json |
| 243 | fi |
| 244 | |
| 245 | # Check the job data in the producer |
BjornMagnussonXA | c963b73 | 2021-01-20 14:24:13 +0100 | [diff] [blame] | 246 | if [ $ECS_VERSION == "V1-1" ]; then |
| 247 | prodstub_check_jobdata 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ecs/job-template.json |
| 248 | else |
BjornMagnussonXA | ce4b14c | 2021-05-11 15:40:03 +0200 | [diff] [blame] | 249 | if [ $use_info_jobs ]; then |
| 250 | prodstub_check_jobdata_3 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ecs/job-template.json |
| 251 | else |
| 252 | prodstub_check_jobdata_2 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ecs/job-template.json |
| 253 | fi |
BjornMagnussonXA | c963b73 | 2021-01-20 14:24:13 +0100 | [diff] [blame] | 254 | fi |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 255 | |
| 256 | |
| 257 | ## Create a second job for prod-a |
| 258 | ## job2 - prod-a |
| 259 | if [ -z "$FLAT_A1_EI" ]; then |
| 260 | ecs_api_a1_put_job 201 type1 job2 $TARGET2 ricsim_g3_2 testdata/ecs/job-template.json |
| 261 | else |
| 262 | ecs_api_a1_put_job 201 job2 type1 $TARGET2 ricsim_g3_2 $STATUS2 testdata/ecs/job-template.json |
| 263 | fi |
| 264 | |
| 265 | # Check the job data in the producer |
BjornMagnussonXA | c963b73 | 2021-01-20 14:24:13 +0100 | [diff] [blame] | 266 | if [ $ECS_VERSION == "V1-1" ]; then |
| 267 | prodstub_check_jobdata 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ecs/job-template.json |
| 268 | else |
BjornMagnussonXA | ce4b14c | 2021-05-11 15:40:03 +0200 | [diff] [blame] | 269 | if [ $use_info_jobs ]; then |
| 270 | prodstub_check_jobdata_3 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ecs/job-template.json |
| 271 | else |
| 272 | prodstub_check_jobdata_2 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ecs/job-template.json |
| 273 | fi |
BjornMagnussonXA | c963b73 | 2021-01-20 14:24:13 +0100 | [diff] [blame] | 274 | fi |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 275 | |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 276 | check_policy_agent_logs |
| 277 | check_ecs_logs |
| 278 | check_sdnc_logs |
| 279 | |
| 280 | #### TEST COMPLETE #### |
| 281 | |
| 282 | store_logs END |
| 283 | |
| 284 | print_result |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 285 | |
| 286 | auto_clean_environment |