BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +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="Testing southbound proxy for PMS and ECS" |
| 21 | |
| 22 | #App names to include in the test when running docker, space separated list |
| 23 | DOCKER_INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM ECS PRODSTUB HTTPPROXY NGW" |
| 24 | |
| 25 | #App names to include in the test when running kubernetes, space separated list |
| 26 | KUBE_INCLUDED_IMAGES=" MR CR PA PRODSTUB RICSIM CP ECS HTTPPROXY KUBEPROXY NGW" |
| 27 | #Prestarted app (not started by script) to include in the test when running kubernetes, space separated list |
| 28 | KUBE_PRESTARTED_IMAGES="" |
| 29 | |
| 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 | |
| 35 | #Supported test environment profiles |
BjornMagnussonXA | 674793d | 2021-05-06 19:49:17 +0200 | [diff] [blame^] | 36 | SUPPORTED_PROFILES="ONAP-HONOLULU ONAP-ISTANBUL ORAN-CHERRY ORAN-D-RELEASE" |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 37 | #Supported run modes |
| 38 | SUPPORTED_RUNMODES="DOCKER KUBE" |
| 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 |
| 46 | . ../common/mr_api_functions.sh |
| 47 | . ../common/control_panel_api_functions.sh |
| 48 | . ../common/consul_cbs_functions.sh |
| 49 | . ../common/http_proxy_api_functions.sh |
| 50 | . ../common/kube_proxy_api_functions.sh |
| 51 | . ../common/gateway_api_functions.sh |
| 52 | |
| 53 | setup_testenvironment |
| 54 | |
| 55 | #### TEST BEGIN #### |
| 56 | |
| 57 | #Local vars in test script |
| 58 | ########################## |
| 59 | |
| 60 | use_cr_https |
| 61 | use_agent_rest_https |
| 62 | use_simulator_https |
| 63 | use_ecs_rest_https |
| 64 | use_prod_stub_https |
| 65 | |
| 66 | if [ "$PMS_VERSION" == "V2" ]; then |
| 67 | notificationurl=$CR_SERVICE_PATH"/test" |
| 68 | else |
| 69 | echo "PMS VERSION 2 (V2) is required" |
| 70 | exit 1 |
| 71 | fi |
| 72 | |
| 73 | clean_environment |
| 74 | |
| 75 | if [ $RUNMODE == "KUBE" ]; then |
| 76 | start_kube_proxy |
| 77 | fi |
| 78 | |
| 79 | STD_NUM_RICS=2 |
| 80 | |
| 81 | start_http_proxy |
| 82 | |
| 83 | start_ric_simulators $RIC_SIM_PREFIX"_g3" $STD_NUM_RICS STD_2.0.0 |
| 84 | |
| 85 | start_mr #Just to prevent errors in the agent log... |
| 86 | |
| 87 | start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE |
| 88 | |
| 89 | if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then |
| 90 | start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE |
| 91 | fi |
| 92 | |
| 93 | start_policy_agent PROXY $SIM_GROUP/$POLICY_AGENT_COMPOSE_DIR/$POLICY_AGENT_CONFIG_FILE |
| 94 | |
| 95 | if [ $RUNMODE == "DOCKER" ]; then |
| 96 | start_consul_cbs |
| 97 | fi |
| 98 | |
| 99 | prepare_consul_config NOSDNC ".consul_config.json" |
| 100 | |
| 101 | if [ $RUNMODE == "KUBE" ]; then |
| 102 | agent_load_config ".consul_config.json" |
| 103 | else |
| 104 | consul_config_app ".consul_config.json" |
| 105 | fi |
| 106 | |
| 107 | start_cr |
| 108 | |
| 109 | start_prod_stub |
| 110 | |
| 111 | start_ecs PROXY $SIM_GROUP/$ECS_COMPOSE_DIR/$ECS_CONFIG_FILE |
| 112 | |
| 113 | set_agent_trace |
| 114 | |
| 115 | set_ecs_debug |
| 116 | |
| 117 | api_get_status 200 |
| 118 | |
| 119 | # Print the A1 version for STD 2.X |
| 120 | for ((i=1; i<=$STD_NUM_RICS; i++)) |
| 121 | do |
| 122 | sim_print $RIC_SIM_PREFIX"_g3_"$i interface |
| 123 | done |
| 124 | # Load the polictypes in std |
| 125 | for ((i=1; i<=$STD_NUM_RICS; i++)) |
| 126 | do |
| 127 | sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS_0_2_0 demo-testdata/STD2/sim_qos.json |
| 128 | sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS2_0.1.0 demo-testdata/STD2/sim_qos2.json |
| 129 | done |
| 130 | |
| 131 | #Check the number of schemas and the individual schemas in STD |
| 132 | api_equal json:policy-types 2 120 |
| 133 | |
| 134 | for ((i=1; i<=$STD_NUM_RICS; i++)) |
| 135 | do |
| 136 | api_equal json:policy-types?ric_id=$RIC_SIM_PREFIX"_g3_"$i 2 120 |
| 137 | done |
| 138 | |
| 139 | # Check the schemas in STD |
| 140 | for ((i=1; i<=$STD_NUM_RICS; i++)) |
| 141 | do |
| 142 | api_get_policy_type 200 STD_QOS_0_2_0 demo-testdata/STD2/qos-agent-modified.json |
| 143 | api_get_policy_type 200 'STD_QOS2_0.1.0' demo-testdata/STD2/qos2-agent-modified.json |
| 144 | done |
| 145 | |
| 146 | #Check the number of types |
| 147 | api_equal json:policy-types 2 300 |
| 148 | |
| 149 | api_put_service 201 "Emergency-response-app" 0 "$CR_SERVICE_PATH/1" |
| 150 | |
| 151 | # Create policies in STD |
| 152 | for ((i=1; i<=$STD_NUM_RICS; i++)) |
| 153 | do |
| 154 | generate_policy_uuid |
| 155 | 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 |
| 156 | generate_policy_uuid |
| 157 | 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 |
| 158 | done |
| 159 | |
| 160 | |
| 161 | # Check the number of policies in STD |
| 162 | for ((i=1; i<=$STD_NUM_RICS; i++)) |
| 163 | do |
| 164 | sim_equal $RIC_SIM_PREFIX"_g3_"$i num_instances 2 |
| 165 | done |
| 166 | |
| 167 | # Print calling hosts STD 2.X |
| 168 | for ((i=1; i<=$STD_NUM_RICS; i++)) |
| 169 | do |
| 170 | sim_print $RIC_SIM_PREFIX"_g3_"$i remote_hosts |
| 171 | sim_contains_str $RIC_SIM_PREFIX"_g3_"$i remote_hosts proxy |
| 172 | done |
| 173 | |
| 174 | FLAT_A1_EI="1" |
| 175 | |
| 176 | CB_JOB="$PROD_STUB_SERVICE_PATH$PROD_STUB_JOB_CALLBACK" |
| 177 | CB_SV="$PROD_STUB_SERVICE_PATH$PROD_STUB_SUPERVISION_CALLBACK" |
| 178 | RIC_G1_1=$RIC_SIM_PREFIX"_g3_1" |
| 179 | RIC_G1_2=$RIC_SIM_PREFIX"_g3_2" |
| 180 | if [ $RUNMODE == "KUBE" ]; then |
| 181 | RIC_G1_1=$(get_kube_sim_host $RIC_G1_1) |
| 182 | RIC_G1_2=$(get_kube_sim_host $RIC_G1_2) |
| 183 | fi |
| 184 | TARGET1="$RIC_SIM_HTTPX://$RIC_G1_1:$RIC_SIM_PORT/datadelivery" |
| 185 | TARGET2="$RIC_SIM_HTTPX://$RIC_G1_1:$RIC_SIM_PORT/datadelivery" |
| 186 | |
| 187 | STATUS1="$CR_SERVICE_PATH/job1-status" |
| 188 | STATUS2="$CR_SERVICE_PATH/job2-status" |
| 189 | |
| 190 | prodstub_arm_producer 200 prod-a |
| 191 | prodstub_arm_type 200 prod-a type1 |
| 192 | prodstub_arm_job_create 200 prod-a job1 |
| 193 | prodstub_arm_job_create 200 prod-a job2 |
| 194 | |
| 195 | ### ecs status |
| 196 | ecs_api_service_status 200 |
| 197 | |
| 198 | ## Setup prod-a |
| 199 | if [ $ECS_VERSION == "V1-1" ]; then |
| 200 | ecs_api_edp_put_producer 201 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 testdata/ecs/ei-type-1.json |
| 201 | |
| 202 | ecs_api_edp_get_producer 200 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 testdata/ecs/ei-type-1.json |
| 203 | else |
| 204 | ecs_api_edp_put_type_2 201 type1 testdata/ecs/ei-type-1.json |
| 205 | |
| 206 | ecs_api_edp_put_producer_2 201 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 |
| 207 | |
| 208 | ecs_api_edp_get_producer_2 200 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 |
| 209 | fi |
| 210 | |
| 211 | ecs_api_edp_get_producer_status 200 prod-a ENABLED |
| 212 | |
| 213 | |
| 214 | ## Create a job for prod-a |
| 215 | ## job1 - prod-a |
| 216 | if [ -z "$FLAT_A1_EI" ]; then |
| 217 | ecs_api_a1_put_job 201 type1 job1 $TARGET1 ricsim_g3_1 testdata/ecs/job-template.json |
| 218 | else |
| 219 | ecs_api_a1_put_job 201 job1 type1 $TARGET1 ricsim_g3_1 $STATUS1 testdata/ecs/job-template.json |
| 220 | fi |
| 221 | |
| 222 | # Check the job data in the producer |
| 223 | if [ $ECS_VERSION == "V1-1" ]; then |
| 224 | prodstub_check_jobdata 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ecs/job-template.json |
| 225 | else |
| 226 | prodstub_check_jobdata_2 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ecs/job-template.json |
| 227 | fi |
| 228 | |
| 229 | |
| 230 | ## Create a second job for prod-a |
| 231 | ## job2 - prod-a |
| 232 | if [ -z "$FLAT_A1_EI" ]; then |
| 233 | ecs_api_a1_put_job 201 type1 job2 $TARGET2 ricsim_g3_2 testdata/ecs/job-template.json |
| 234 | else |
| 235 | ecs_api_a1_put_job 201 job2 type1 $TARGET2 ricsim_g3_2 $STATUS2 testdata/ecs/job-template.json |
| 236 | fi |
| 237 | |
| 238 | # Check the job data in the producer |
| 239 | if [ $ECS_VERSION == "V1-1" ]; then |
| 240 | prodstub_check_jobdata 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ecs/job-template.json |
| 241 | else |
| 242 | prodstub_check_jobdata_2 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ecs/job-template.json |
| 243 | fi |
| 244 | |
| 245 | # Arm producer prod-a for supervision failure |
| 246 | prodstub_arm_producer 200 prod-a 400 |
| 247 | |
| 248 | # Wait for producer prod-a to go disabled |
| 249 | ecs_api_edp_get_producer_status 200 prod-a DISABLED 360 |
| 250 | |
| 251 | ecs_equal json:ei-producer/v1/eiproducers 0 1000 |
| 252 | |
| 253 | echo -e $YELLOW"Verify that ECS has send status notification to the callback recevier"$EYELLOW |
| 254 | echo -e $YELLOW"and check the source of the call in the log to be from the httpproxy"$EYELLOW |
| 255 | echo -e $YELLOW"Check for 'Calling host'"$EYELLOW |
| 256 | echo -e $YELLOW"cmd: docker logs <callback-receiver-container-name>"$EYELLOW |
| 257 | |
| 258 | check_policy_agent_logs |
| 259 | check_ecs_logs |
| 260 | |
| 261 | #### TEST COMPLETE #### |
| 262 | |
| 263 | store_logs END |
| 264 | |
| 265 | print_result |
| 266 | |
| 267 | auto_clean_environment |