BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 1 | #!/bin/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 | |
| 21 | TC_ONELINE_DESCR="Testing of service registration timeouts and keepalive" |
| 22 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 23 | #App names to include in the test when running docker, space separated list |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 24 | DOCKER_INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM NGW" |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 25 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 26 | #App names to include in the test when running kubernetes, space separated list |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 27 | KUBE_INCLUDED_IMAGES="CP CR MR PA RICSIM KUBEPROXY NGW" |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 28 | #Prestarted app (not started by script) to include in the test when running kubernetes, space separated list |
| 29 | KUBE_PRESTARTED_IMAGES="" |
| 30 | |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 31 | #Ignore image in DOCKER_INCLUDED_IMAGES, KUBE_INCLUDED_IMAGES if |
| 32 | #the image is not configured in the supplied env_file |
| 33 | #Used for images not applicable to all supported profile |
| 34 | CONDITIONALLY_IGNORED_IMAGES="NGW" |
| 35 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 36 | #Supported test environment profiles |
BjornMagnussonXA | e6b019f | 2021-04-27 15:34:09 +0200 | [diff] [blame] | 37 | SUPPORTED_PROFILES="ONAP-GUILIN ONAP-HONOLULU ONAP-ISTANBUL ORAN-CHERRY ORAN-DAWN" |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 38 | #Supported run modes |
| 39 | SUPPORTED_RUNMODES="DOCKER KUBE" |
BjornMagnussonXA | 49f0e5a | 2020-11-08 22:41:39 +0100 | [diff] [blame] | 40 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 41 | . ../common/testcase_common.sh $@ |
| 42 | . ../common/agent_api_functions.sh |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 43 | . ../common/consul_cbs_functions.sh |
| 44 | . ../common/control_panel_api_functions.sh |
BjornMagnussonXA | 49f0e5a | 2020-11-08 22:41:39 +0100 | [diff] [blame] | 45 | . ../common/cr_api_functions.sh |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 46 | . ../common/mr_api_functions.sh |
| 47 | . ../common/ricsimulator_api_functions.sh |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 48 | . ../common/kube_proxy_api_functions.sh |
| 49 | . ../common/gateway_api_functions.sh |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 50 | |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 51 | setup_testenvironment |
| 52 | |
| 53 | #### TEST BEGIN #### |
| 54 | |
| 55 | generate_policy_uuid |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 56 | |
BjornMagnussonXA | 496156d | 2020-08-10 14:16:24 +0200 | [diff] [blame] | 57 | use_cr_http |
BjornMagnussonXA | bf3700b | 2020-10-05 08:39:40 +0200 | [diff] [blame] | 58 | use_simulator_http |
| 59 | use_mr_http |
| 60 | use_agent_rest_http |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 61 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 62 | clean_environment |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 63 | |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 64 | if [ $RUNMODE == "KUBE" ]; then |
| 65 | start_kube_proxy |
| 66 | fi |
| 67 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 68 | start_ric_simulators ricsim_g1 1 OSC_2.1.0 |
BjornMagnussonXA | 4207b83 | 2020-11-03 09:52:49 +0100 | [diff] [blame] | 69 | start_ric_simulators ricsim_g2 1 STD_1.1.3 |
| 70 | if [ "$PMS_VERSION" == "V2" ]; then |
| 71 | start_ric_simulators ricsim_g3 1 STD_2.0.0 |
| 72 | fi |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 73 | |
| 74 | start_mr |
| 75 | |
| 76 | start_cr |
| 77 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 78 | if [ $RUNMODE == "DOCKER" ]; then |
| 79 | start_consul_cbs |
| 80 | fi |
| 81 | |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 82 | start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 83 | |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 84 | if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then |
| 85 | start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE |
| 86 | fi |
| 87 | |
| 88 | start_policy_agent NORPOXY $SIM_GROUP/$POLICY_AGENT_COMPOSE_DIR/$POLICY_AGENT_CONFIG_FILE |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 89 | |
| 90 | prepare_consul_config NOSDNC ".consul_config.json" |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 91 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 92 | if [ $RUNMODE == "KUBE" ]; then |
| 93 | agent_load_config ".consul_config.json" |
| 94 | else |
| 95 | consul_config_app ".consul_config.json" |
| 96 | fi |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 97 | |
| 98 | set_agent_debug |
| 99 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 100 | mr_equal requests_submitted 0 |
| 101 | |
| 102 | #Check agent alive |
| 103 | api_get_status 200 |
| 104 | |
| 105 | #Print simulator interface version |
| 106 | sim_print ricsim_g1_1 interface |
BjornMagnussonXA | 4207b83 | 2020-11-03 09:52:49 +0100 | [diff] [blame] | 107 | sim_print ricsim_g2_1 interface |
| 108 | if [ "$PMS_VERSION" == "V2" ]; then |
| 109 | sim_print ricsim_g3_1 interface |
| 110 | fi |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 111 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 112 | api_put_service 201 "service1" 15 "$CR_SERVICE_PATH/service1" |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 113 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 114 | api_get_services 200 "service1" "service1" 15 "$CR_SERVICE_PATH/service1" |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 115 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 116 | api_put_service 201 "service2" 120 "$CR_SERVICE_PATH/service2" |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 117 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 118 | api_get_services 200 "service2" "service2" 120 "$CR_SERVICE_PATH/service2" |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 119 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 120 | api_put_service 200 "service1" 50 "$CR_SERVICE_PATH/service1" |
| 121 | api_put_service 200 "service2" 180 "$CR_SERVICE_PATH/service2" |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 122 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 123 | api_get_services 200 "service1" "service1" 50 "$CR_SERVICE_PATH/service1" |
| 124 | api_get_services 200 "service2" "service2" 180 "$CR_SERVICE_PATH/service2" |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 125 | |
| 126 | api_get_service_ids 200 "service1" "service2" |
| 127 | |
| 128 | sleep_wait 30 "Waiting for keep alive timeout" |
| 129 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 130 | api_get_services 200 "service1" "service1" 50 "$CR_SERVICE_PATH/service1" |
| 131 | api_get_services 200 "service2" "service2" 180 "$CR_SERVICE_PATH/service2" |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 132 | |
| 133 | sleep_wait 100 "Waiting for keep alive timeout" |
| 134 | |
| 135 | api_get_services 404 "service1" |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 136 | api_get_services 200 "service2" "service2" 180 "$CR_SERVICE_PATH/service2" |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 137 | |
| 138 | api_delete_services 204 "service2" |
| 139 | |
| 140 | api_get_services 404 "service1" |
| 141 | api_get_services 404 "service2" |
| 142 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 143 | api_put_service 201 "service3" 60 "$CR_SERVICE_PATH/service3" |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 144 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 145 | api_get_services 200 "service3" "service3" 60 "$CR_SERVICE_PATH/service3" |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 146 | |
| 147 | sleep_wait 30 "Waiting for keep alive timeout" |
| 148 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 149 | api_put_service 200 "service3" 60 "$CR_SERVICE_PATH/service3" |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 150 | |
| 151 | sleep_wait 100 "Waiting for keep alive timeout" |
| 152 | |
| 153 | api_get_services 404 "service3" |
| 154 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 155 | api_put_service 201 "service4" 120 "$CR_SERVICE_PATH/service4" |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 156 | |
| 157 | sleep_wait 60 "Waiting for keep alive timeout" |
| 158 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 159 | api_get_services 200 "service4" "service4" 120 "$CR_SERVICE_PATH/service4" |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 160 | |
| 161 | api_put_services_keepalive 200 "service4" |
| 162 | |
| 163 | sleep_wait 90 "Waiting for keep alive timeout" |
| 164 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 165 | api_get_services 200 "service4" "service4" 120 "$CR_SERVICE_PATH/service4" |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 166 | |
| 167 | api_delete_services 204 "service4" |
| 168 | |
| 169 | api_get_services 404 "service4" |
| 170 | |
| 171 | api_get_services 404 "service1" |
| 172 | api_get_services 404 "service2" |
| 173 | api_get_services 404 "service3" |
| 174 | |
| 175 | api_get_service_ids 200 |
| 176 | |
| 177 | api_delete_services 404 "service1" |
| 178 | api_delete_services 404 "service2" |
| 179 | api_delete_services 404 "service3" |
| 180 | api_delete_services 404 "service4" |
| 181 | |
| 182 | api_put_services_keepalive 404 "service1" |
| 183 | api_put_services_keepalive 404 "service2" |
| 184 | api_put_services_keepalive 404 "service3" |
| 185 | api_put_services_keepalive 404 "service4" |
| 186 | |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 187 | # Policy delete after timeout |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 188 | api_put_service 201 "service10" 600 "$CR_SERVICE_PATH/service10" |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 189 | |
| 190 | sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json |
| 191 | |
BjornMagnussonXA | 4207b83 | 2020-11-03 09:52:49 +0100 | [diff] [blame] | 192 | if [ "$PMS_VERSION" == "V2" ]; then |
BjornMagnussonXA | 2791e08 | 2020-11-12 00:52:08 +0100 | [diff] [blame] | 193 | |
| 194 | sim_put_policy_type 201 ricsim_g3_1 STD_QOS2_0.1.0 testdata/STD2/sim_qos2.json |
| 195 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 196 | api_equal json:rics 3 300 |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 197 | |
BjornMagnussonXA | 4207b83 | 2020-11-03 09:52:49 +0100 | [diff] [blame] | 198 | #api_equal json:policy_schemas 2 120 |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 199 | |
BjornMagnussonXA | 2791e08 | 2020-11-12 00:52:08 +0100 | [diff] [blame] | 200 | api_equal json:policy-types 3 120 |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 201 | |
BjornMagnussonXA | 4207b83 | 2020-11-03 09:52:49 +0100 | [diff] [blame] | 202 | api_equal json:policies 0 |
| 203 | else |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 204 | api_equal json:rics 2 300 |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 205 | |
BjornMagnussonXA | 4207b83 | 2020-11-03 09:52:49 +0100 | [diff] [blame] | 206 | api_equal json:policy_schemas 2 120 |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 207 | |
BjornMagnussonXA | 4207b83 | 2020-11-03 09:52:49 +0100 | [diff] [blame] | 208 | api_equal json:policy_types 2 |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 209 | |
BjornMagnussonXA | 4207b83 | 2020-11-03 09:52:49 +0100 | [diff] [blame] | 210 | api_equal json:policies 0 |
| 211 | fi |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 212 | |
BjornMagnussonXA | 4207b83 | 2020-11-03 09:52:49 +0100 | [diff] [blame] | 213 | if [ "$PMS_VERSION" == "V2" ]; then |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 214 | notificationurl=$CR_SERVICE_PATH"/test" |
BjornMagnussonXA | 4207b83 | 2020-11-03 09:52:49 +0100 | [diff] [blame] | 215 | else |
| 216 | notificationurl="" |
| 217 | fi |
| 218 | |
| 219 | api_put_policy 201 "service10" ricsim_g1_1 1 5000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json |
| 220 | api_put_policy 201 "service10" ricsim_g2_1 NOTYPE 5100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 221 | |
BjornMagnussonXA | 2791e08 | 2020-11-12 00:52:08 +0100 | [diff] [blame] | 222 | if [ "$PMS_VERSION" == "V2" ]; then |
| 223 | api_put_policy 201 "service10" ricsim_g3_1 STD_QOS2_0.1.0 5200 NOTRANSIENT $notificationurl testdata/STD2/pi_qos2_template.json |
| 224 | api_equal json:policies 3 |
| 225 | else |
| 226 | api_equal json:policies 2 |
| 227 | fi |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 228 | |
BjornMagnussonXA | 4207b83 | 2020-11-03 09:52:49 +0100 | [diff] [blame] | 229 | sim_equal ricsim_g1_1 num_instances 1 |
| 230 | sim_equal ricsim_g2_1 num_instances 1 |
| 231 | |
| 232 | api_put_policy 201 "service10" ricsim_g1_1 1 5001 true $notificationurl testdata/OSC/pi1_template.json |
| 233 | api_put_policy 201 "service10" ricsim_g2_1 NOTYPE 5101 true $notificationurl testdata/STD/pi1_template.json |
| 234 | |
BjornMagnussonXA | 2791e08 | 2020-11-12 00:52:08 +0100 | [diff] [blame] | 235 | if [ "$PMS_VERSION" == "V2" ]; then |
| 236 | api_put_policy 201 "service10" ricsim_g3_1 STD_QOS2_0.1.0 5201 true $notificationurl testdata/STD2/pi_qos2_template.json |
| 237 | api_equal json:policies 6 |
| 238 | else |
| 239 | api_equal json:policies 4 |
| 240 | fi |
BjornMagnussonXA | 4207b83 | 2020-11-03 09:52:49 +0100 | [diff] [blame] | 241 | |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 242 | sim_equal ricsim_g1_1 num_instances 2 |
BjornMagnussonXA | 4207b83 | 2020-11-03 09:52:49 +0100 | [diff] [blame] | 243 | sim_equal ricsim_g2_1 num_instances 2 |
BjornMagnussonXA | 2791e08 | 2020-11-12 00:52:08 +0100 | [diff] [blame] | 244 | if [ "$PMS_VERSION" == "V2" ]; then |
| 245 | sim_equal ricsim_g3_1 num_instances 2 |
| 246 | fi |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 247 | |
| 248 | sim_post_delete_instances 200 ricsim_g1_1 |
BjornMagnussonXA | 4207b83 | 2020-11-03 09:52:49 +0100 | [diff] [blame] | 249 | sim_post_delete_instances 200 ricsim_g2_1 |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 250 | |
BjornMagnussonXA | 2791e08 | 2020-11-12 00:52:08 +0100 | [diff] [blame] | 251 | if [ "$PMS_VERSION" == "V2" ]; then |
| 252 | sim_post_delete_instances 200 ricsim_g3_1 |
| 253 | fi |
| 254 | |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 255 | #Wait for recreate of non transient policy |
BjornMagnussonXA | 2791e08 | 2020-11-12 00:52:08 +0100 | [diff] [blame] | 256 | if [ "$PMS_VERSION" == "V2" ]; then |
| 257 | api_equal json:policies 3 180 |
| 258 | else |
| 259 | api_equal json:policies 2 180 |
| 260 | fi |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 261 | |
| 262 | sim_equal ricsim_g1_1 num_instances 1 |
BjornMagnussonXA | 4207b83 | 2020-11-03 09:52:49 +0100 | [diff] [blame] | 263 | sim_equal ricsim_g2_1 num_instances 1 |
BjornMagnussonXA | 2791e08 | 2020-11-12 00:52:08 +0100 | [diff] [blame] | 264 | if [ "$PMS_VERSION" == "V2" ]; then |
| 265 | sim_equal ricsim_g3_1 num_instances 1 |
| 266 | fi |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 267 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 268 | api_put_service 200 "service10" 10 "$CR_SERVICE_PATH/service10" |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 269 | |
| 270 | #Wait for service expiry |
| 271 | api_equal json:policies 0 120 |
| 272 | |
| 273 | sim_equal ricsim_g1_1 num_instances 0 |
BjornMagnussonXA | 4207b83 | 2020-11-03 09:52:49 +0100 | [diff] [blame] | 274 | sim_equal ricsim_g2_1 num_instances 0 |
BjornMagnussonXA | 2791e08 | 2020-11-12 00:52:08 +0100 | [diff] [blame] | 275 | if [ "$PMS_VERSION" == "V2" ]; then |
| 276 | sim_equal ricsim_g3_1 num_instances 0 |
| 277 | fi |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 278 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 279 | api_get_service_ids 200 |
| 280 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 281 | mr_equal requests_submitted 0 |
| 282 | |
| 283 | check_policy_agent_logs |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 284 | |
| 285 | #### TEST COMPLETE #### |
| 286 | |
| 287 | store_logs END |
| 288 | |
| 289 | print_result |
| 290 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 291 | auto_clean_environment |