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 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 20 | TC_ONELINE_DESCR="Testing southbound proxy for PMS and ICS" |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 21 | |
| 22 | #App names to include in the test when running docker, space separated list |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 23 | DOCKER_INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM ICS PRODSTUB HTTPPROXY NGW KUBEPROXY" |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 24 | |
| 25 | #App names to include in the test when running kubernetes, space separated list |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 26 | KUBE_INCLUDED_IMAGES=" MR CR PA PRODSTUB RICSIM CP ICS HTTPPROXY KUBEPROXY NGW" |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +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 | |
| 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 | e60d04e | 2021-12-27 13:38:01 +0100 | [diff] [blame^] | 36 | SUPPORTED_PROFILES="ONAP-HONOLULU ONAP-ISTANBUL ONAP-JAKARTA ORAN-CHERRY ORAN-D-RELEASE ORAN-E-RELEASE ORAN-F-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 $@ |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 41 | |
| 42 | setup_testenvironment |
| 43 | |
| 44 | #### TEST BEGIN #### |
| 45 | |
| 46 | #Local vars in test script |
| 47 | ########################## |
| 48 | |
| 49 | use_cr_https |
| 50 | use_agent_rest_https |
| 51 | use_simulator_https |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 52 | use_ics_rest_https |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 53 | use_prod_stub_https |
| 54 | |
| 55 | if [ "$PMS_VERSION" == "V2" ]; then |
BjornMagnussonXA | 79e3700 | 2021-11-22 13:36:04 +0100 | [diff] [blame] | 56 | notificationurl=$CR_SERVICE_APP_PATH_0"/test" |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 57 | else |
| 58 | echo "PMS VERSION 2 (V2) is required" |
| 59 | exit 1 |
| 60 | fi |
| 61 | |
| 62 | clean_environment |
| 63 | |
BjornMagnussonXA | 663566c | 2021-11-08 10:25:07 +0100 | [diff] [blame] | 64 | start_kube_proxy |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 65 | |
| 66 | STD_NUM_RICS=2 |
| 67 | |
| 68 | start_http_proxy |
| 69 | |
| 70 | start_ric_simulators $RIC_SIM_PREFIX"_g3" $STD_NUM_RICS STD_2.0.0 |
| 71 | |
| 72 | start_mr #Just to prevent errors in the agent log... |
| 73 | |
| 74 | start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE |
| 75 | |
| 76 | if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then |
| 77 | start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE |
| 78 | fi |
| 79 | |
| 80 | start_policy_agent PROXY $SIM_GROUP/$POLICY_AGENT_COMPOSE_DIR/$POLICY_AGENT_CONFIG_FILE |
| 81 | |
| 82 | if [ $RUNMODE == "DOCKER" ]; then |
| 83 | start_consul_cbs |
| 84 | fi |
| 85 | |
| 86 | prepare_consul_config NOSDNC ".consul_config.json" |
| 87 | |
| 88 | if [ $RUNMODE == "KUBE" ]; then |
| 89 | agent_load_config ".consul_config.json" |
| 90 | else |
| 91 | consul_config_app ".consul_config.json" |
| 92 | fi |
| 93 | |
BjornMagnussonXA | 79e3700 | 2021-11-22 13:36:04 +0100 | [diff] [blame] | 94 | start_cr 1 |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 95 | |
| 96 | start_prod_stub |
| 97 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 98 | start_ics PROXY $SIM_GROUP/$ICS_COMPOSE_DIR/$ICS_CONFIG_FILE |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 99 | |
| 100 | set_agent_trace |
| 101 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 102 | set_ics_debug |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 103 | |
| 104 | api_get_status 200 |
| 105 | |
| 106 | # Print the A1 version for STD 2.X |
| 107 | for ((i=1; i<=$STD_NUM_RICS; i++)) |
| 108 | do |
| 109 | sim_print $RIC_SIM_PREFIX"_g3_"$i interface |
| 110 | done |
| 111 | # Load the polictypes in std |
| 112 | for ((i=1; i<=$STD_NUM_RICS; i++)) |
| 113 | do |
| 114 | sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS_0_2_0 demo-testdata/STD2/sim_qos.json |
| 115 | sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS2_0.1.0 demo-testdata/STD2/sim_qos2.json |
| 116 | done |
| 117 | |
| 118 | #Check the number of schemas and the individual schemas in STD |
| 119 | api_equal json:policy-types 2 120 |
| 120 | |
| 121 | for ((i=1; i<=$STD_NUM_RICS; i++)) |
| 122 | do |
| 123 | api_equal json:policy-types?ric_id=$RIC_SIM_PREFIX"_g3_"$i 2 120 |
| 124 | done |
| 125 | |
| 126 | # Check the schemas in STD |
| 127 | for ((i=1; i<=$STD_NUM_RICS; i++)) |
| 128 | do |
| 129 | api_get_policy_type 200 STD_QOS_0_2_0 demo-testdata/STD2/qos-agent-modified.json |
| 130 | api_get_policy_type 200 'STD_QOS2_0.1.0' demo-testdata/STD2/qos2-agent-modified.json |
| 131 | done |
| 132 | |
| 133 | #Check the number of types |
| 134 | api_equal json:policy-types 2 300 |
| 135 | |
BjornMagnussonXA | 79e3700 | 2021-11-22 13:36:04 +0100 | [diff] [blame] | 136 | api_put_service 201 "Emergency-response-app" 0 "$CR_SERVICE_APP_PATH_0/1" |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 137 | |
| 138 | # Create policies in STD |
| 139 | for ((i=1; i<=$STD_NUM_RICS; i++)) |
| 140 | do |
| 141 | generate_policy_uuid |
| 142 | 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 |
| 143 | generate_policy_uuid |
| 144 | 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 |
| 145 | done |
| 146 | |
| 147 | |
| 148 | # Check the number of policies in STD |
| 149 | for ((i=1; i<=$STD_NUM_RICS; i++)) |
| 150 | do |
| 151 | sim_equal $RIC_SIM_PREFIX"_g3_"$i num_instances 2 |
| 152 | done |
| 153 | |
| 154 | # Print calling hosts STD 2.X |
| 155 | for ((i=1; i<=$STD_NUM_RICS; i++)) |
| 156 | do |
| 157 | sim_print $RIC_SIM_PREFIX"_g3_"$i remote_hosts |
| 158 | sim_contains_str $RIC_SIM_PREFIX"_g3_"$i remote_hosts proxy |
| 159 | done |
| 160 | |
| 161 | FLAT_A1_EI="1" |
| 162 | |
| 163 | CB_JOB="$PROD_STUB_SERVICE_PATH$PROD_STUB_JOB_CALLBACK" |
| 164 | CB_SV="$PROD_STUB_SERVICE_PATH$PROD_STUB_SUPERVISION_CALLBACK" |
| 165 | RIC_G1_1=$RIC_SIM_PREFIX"_g3_1" |
| 166 | RIC_G1_2=$RIC_SIM_PREFIX"_g3_2" |
| 167 | if [ $RUNMODE == "KUBE" ]; then |
| 168 | RIC_G1_1=$(get_kube_sim_host $RIC_G1_1) |
| 169 | RIC_G1_2=$(get_kube_sim_host $RIC_G1_2) |
| 170 | fi |
| 171 | TARGET1="$RIC_SIM_HTTPX://$RIC_G1_1:$RIC_SIM_PORT/datadelivery" |
| 172 | TARGET2="$RIC_SIM_HTTPX://$RIC_G1_1:$RIC_SIM_PORT/datadelivery" |
| 173 | |
BjornMagnussonXA | 79e3700 | 2021-11-22 13:36:04 +0100 | [diff] [blame] | 174 | STATUS1="$CR_SERVICE_APP_PATH_0/job1-status" |
| 175 | STATUS2="$CR_SERVICE_APP_PATH_0/job2-status" |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 176 | |
| 177 | prodstub_arm_producer 200 prod-a |
| 178 | prodstub_arm_type 200 prod-a type1 |
| 179 | prodstub_arm_job_create 200 prod-a job1 |
| 180 | prodstub_arm_job_create 200 prod-a job2 |
| 181 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 182 | ### ics status |
| 183 | ics_api_service_status 200 |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 184 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 185 | if [[ "$ICS_FEATURE_LEVEL" == *"TYPE-SUBSCRIPTIONS"* ]]; then |
BjornMagnussonXA | 3cc0b58 | 2021-08-30 10:46:41 +0200 | [diff] [blame] | 186 | #Type registration status callbacks |
BjornMagnussonXA | 79e3700 | 2021-11-22 13:36:04 +0100 | [diff] [blame] | 187 | TYPESTATUS1="$CR_SERVICE_APP_PATH_0/type-status1" |
BjornMagnussonXA | 3cc0b58 | 2021-08-30 10:46:41 +0200 | [diff] [blame] | 188 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 189 | ics_api_idc_put_subscription 201 subscription-id-1 owner1 $TYPESTATUS1 |
BjornMagnussonXA | 3cc0b58 | 2021-08-30 10:46:41 +0200 | [diff] [blame] | 190 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 191 | ics_api_idc_get_subscription_ids 200 owner1 subscription-id-1 |
BjornMagnussonXA | 3cc0b58 | 2021-08-30 10:46:41 +0200 | [diff] [blame] | 192 | fi |
| 193 | |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 194 | ## Setup prod-a |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 195 | if [ $ICS_VERSION == "V1-1" ]; then |
| 196 | ics_api_edp_put_producer 201 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 testdata/ics/ei-type-1.json |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 197 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 198 | ics_api_edp_get_producer 200 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 testdata/ics/ei-type-1.json |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 199 | else |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 200 | ics_api_edp_put_type_2 201 type1 testdata/ics/ei-type-1.json |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 201 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 202 | ics_api_edp_put_producer_2 201 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 203 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 204 | ics_api_edp_get_producer_2 200 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 205 | fi |
| 206 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 207 | ics_api_edp_get_producer_status 200 prod-a ENABLED |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 208 | |
| 209 | |
| 210 | ## Create a job for prod-a |
| 211 | ## job1 - prod-a |
| 212 | if [ -z "$FLAT_A1_EI" ]; then |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 213 | ics_api_a1_put_job 201 type1 job1 $TARGET1 ricsim_g3_1 testdata/ics/job-template.json |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 214 | else |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 215 | ics_api_a1_put_job 201 job1 type1 $TARGET1 ricsim_g3_1 $STATUS1 testdata/ics/job-template.json |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 216 | fi |
| 217 | |
| 218 | # Check the job data in the producer |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 219 | if [ $ICS_VERSION == "V1-1" ]; then |
| 220 | prodstub_check_jobdata 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ics/job-template.json |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 221 | else |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 222 | if [[ "$ICS_FEATURE_LEVEL" != *"INFO-TYPES"* ]]; then |
| 223 | prodstub_check_jobdata_2 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ics/job-template.json |
BjornMagnussonXA | ce4b14c | 2021-05-11 15:40:03 +0200 | [diff] [blame] | 224 | else |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 225 | prodstub_check_jobdata_3 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ics/job-template.json |
BjornMagnussonXA | ce4b14c | 2021-05-11 15:40:03 +0200 | [diff] [blame] | 226 | fi |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 227 | fi |
| 228 | |
| 229 | |
| 230 | ## Create a second job for prod-a |
| 231 | ## job2 - prod-a |
| 232 | if [ -z "$FLAT_A1_EI" ]; then |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 233 | ics_api_a1_put_job 201 type1 job2 $TARGET2 ricsim_g3_2 testdata/ics/job-template.json |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 234 | else |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 235 | ics_api_a1_put_job 201 job2 type1 $TARGET2 ricsim_g3_2 $STATUS2 testdata/ics/job-template.json |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 236 | fi |
| 237 | |
| 238 | # Check the job data in the producer |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 239 | if [ $ICS_VERSION == "V1-1" ]; then |
| 240 | prodstub_check_jobdata 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ics/job-template.json |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 241 | else |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 242 | if [[ "$ICS_FEATURE_LEVEL" != *"INFO-TYPES"* ]]; then |
| 243 | prodstub_check_jobdata_2 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ics/job-template.json |
BjornMagnussonXA | ce4b14c | 2021-05-11 15:40:03 +0200 | [diff] [blame] | 244 | else |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 245 | prodstub_check_jobdata_3 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ics/job-template.json |
BjornMagnussonXA | ce4b14c | 2021-05-11 15:40:03 +0200 | [diff] [blame] | 246 | fi |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 247 | fi |
| 248 | |
| 249 | # Arm producer prod-a for supervision failure |
| 250 | prodstub_arm_producer 200 prod-a 400 |
| 251 | |
| 252 | # Wait for producer prod-a to go disabled |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 253 | ics_api_edp_get_producer_status 200 prod-a DISABLED 360 |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 254 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 255 | if [[ "$ICS_FEATURE_LEVEL" == *"INFO-TYPES"* ]]; then |
| 256 | ics_equal json:data-producer/v1/info-producers 0 1000 |
BjornMagnussonXA | ce4b14c | 2021-05-11 15:40:03 +0200 | [diff] [blame] | 257 | else |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 258 | ics_equal json:ei-producer/v1/eiproducers 0 1000 |
BjornMagnussonXA | ce4b14c | 2021-05-11 15:40:03 +0200 | [diff] [blame] | 259 | fi |
| 260 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 261 | if [[ "$ICS_FEATURE_LEVEL" == *"TYPE-SUBSCRIPTIONS"* ]]; then |
BjornMagnussonXA | 79e3700 | 2021-11-22 13:36:04 +0100 | [diff] [blame] | 262 | cr_equal 0 received_callbacks 3 30 |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 263 | cr_api_check_all_ics_subscription_events 200 0 type-status1 type1 testdata/ics/ei-type-1.json REGISTERED |
| 264 | cr_api_check_all_ics_events 200 0 job1-status DISABLED |
| 265 | cr_api_check_all_ics_events 200 0 job2-status DISABLED |
BjornMagnussonXA | 3cc0b58 | 2021-08-30 10:46:41 +0200 | [diff] [blame] | 266 | else |
BjornMagnussonXA | 79e3700 | 2021-11-22 13:36:04 +0100 | [diff] [blame] | 267 | cr_equal 0 received_callbacks 2 30 |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 268 | cr_api_check_all_ics_events 200 0 job1-status DISABLED |
| 269 | cr_api_check_all_ics_events 200 0 job2-status DISABLED |
BjornMagnussonXA | 3cc0b58 | 2021-08-30 10:46:41 +0200 | [diff] [blame] | 270 | fi |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 271 | |
BjornMagnussonXA | 79e3700 | 2021-11-22 13:36:04 +0100 | [diff] [blame] | 272 | cr_contains_str 0 remote_hosts $HTTP_PROXY_APP_NAME |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 273 | |
| 274 | check_policy_agent_logs |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 275 | check_ics_logs |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 276 | |
| 277 | #### TEST COMPLETE #### |
| 278 | |
| 279 | store_logs END |
| 280 | |
| 281 | print_result |
| 282 | |
| 283 | auto_clean_environment |