BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [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 | 663566c | 2021-11-08 10:25:07 +0100 | [diff] [blame] | 20 | TC_ONELINE_DESCR="Sanity test of Non-RT RIC Helm chats - all components - E-RELEASE" |
| 21 | # This script requires the helm charts for nonrtric, a1simulator and a1controller are installed |
BjornMagnussonXA | dfdca18 | 2021-12-10 10:43:32 +0100 | [diff] [blame] | 22 | # There should be 2 simulator of each A1 interface version started |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 23 | |
| 24 | #App names to include in the test when running docker, space separated list |
| 25 | DOCKER_INCLUDED_IMAGES="" # Not used - KUBE only test script |
| 26 | |
| 27 | #App names to include in the test when running kubernetes, space separated list |
BjornMagnussonXA | dfdca18 | 2021-12-10 10:43:32 +0100 | [diff] [blame] | 28 | KUBE_INCLUDED_IMAGES=" MR DMAAPMR CR PRODSTUB KUBEPROXY KAFKAPC" |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 29 | #Prestarted app (not started by script) to include in the test when running kubernetes, space separated list |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 30 | KUBE_PRESTARTED_IMAGES=" PA RICSIM CP ICS RC SDNC DMAAPMED DMAAPADP" |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 31 | |
| 32 | #Supported test environment profiles |
| 33 | SUPPORTED_PROFILES="ORAN-E-RELEASE" |
| 34 | #Supported run modes |
| 35 | SUPPORTED_RUNMODES="KUBE" |
| 36 | |
| 37 | . ../common/testcase_common.sh $@ |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 38 | |
| 39 | setup_testenvironment |
| 40 | |
| 41 | #### TEST BEGIN #### |
| 42 | |
BjornMagnussonXA | dfdca18 | 2021-12-10 10:43:32 +0100 | [diff] [blame] | 43 | use_mr_https |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 44 | use_cr_https |
| 45 | use_agent_rest_https |
| 46 | use_sdnc_https |
| 47 | use_simulator_https |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 48 | use_ics_rest_https |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 49 | use_prod_stub_https |
BjornMagnussonXA | dfdca18 | 2021-12-10 10:43:32 +0100 | [diff] [blame] | 50 | use_dmaapmed_https |
BjornMagnussonXA | 663566c | 2021-11-08 10:25:07 +0100 | [diff] [blame] | 51 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 52 | if [ $ICS_VERSION == "V1-1" ]; then |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 53 | use_rapp_catalogue_http # https not yet supported |
| 54 | else |
| 55 | ########################################use_rapp_catalogue_https |
| 56 | use_rapp_catalogue_http |
| 57 | fi |
| 58 | |
| 59 | echo -e "$RED CHECK WHY RC HTTPS DOES NOT WORK $ERED" |
| 60 | |
| 61 | ###############################use_control_panel_https |
| 62 | use_control_panel_http |
| 63 | |
| 64 | if [ "$PMS_VERSION" == "V1" ]; then |
| 65 | echo "PMS VERSION 2 (V2) is required" |
| 66 | exit 1 |
| 67 | fi |
| 68 | |
| 69 | clean_environment |
| 70 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 71 | ics_kube_pvc_reset |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 72 | |
BjornMagnussonXA | dfdca18 | 2021-12-10 10:43:32 +0100 | [diff] [blame] | 73 | pms_kube_pvc_reset |
| 74 | |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 75 | start_kube_proxy |
| 76 | |
| 77 | STD_NUM_RICS=2 |
| 78 | OSC_NUM_RICS=2 |
| 79 | |
| 80 | start_ric_simulators a1-sim-osc $STD_NUM_RICS OSC_2.1.0 |
| 81 | echo " RIC MAPPING a1-sim-osc-0 : ric1" |
| 82 | echo " RIC MAPPING a1-sim-osc-1 : ric2" |
| 83 | |
| 84 | start_ric_simulators a1-sim-std $STD_NUM_RICS STD_1.1.3 |
| 85 | echo " RIC MAPPING a1-sim-std-0 : ric3" |
| 86 | echo " RIC MAPPING a1-sim-std-1 : ric4" |
| 87 | |
| 88 | start_ric_simulators a1-sim-std2 $STD_NUM_RICS STD_2.0.0 |
| 89 | echo " RIC MAPPING a1-sim-std2-0 : ric5" |
| 90 | echo " RIC MAPPING a1-sim-std2-1 : ric6" |
| 91 | |
BjornMagnussonXA | dfdca18 | 2021-12-10 10:43:32 +0100 | [diff] [blame] | 92 | start_mr "$MR_READ_TOPIC" "/events" "users/policy-agent" \ |
| 93 | "$MR_WRITE_TOPIC" "/events" "users/mr-stub" \ |
| 94 | "unauthenticated.dmaapmed.json" "/events" "dmaapmediatorproducer/STD_Fault_Messages" \ |
| 95 | "unauthenticated.dmaapadp.json" "/events" "dmaapadapterproducer/msgs" |
| 96 | |
| 97 | start_kafkapc |
| 98 | |
| 99 | kafkapc_api_create_topic 201 "unauthenticated.dmaapadp_kafka.text" "text/plain" |
| 100 | |
| 101 | kafkapc_api_start_sending 200 "unauthenticated.dmaapadp_kafka.text" |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 102 | |
| 103 | start_control_panel |
| 104 | |
| 105 | start_sdnc |
| 106 | |
| 107 | start_policy_agent |
| 108 | |
BjornMagnussonXA | 79e3700 | 2021-11-22 13:36:04 +0100 | [diff] [blame] | 109 | start_cr 1 |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 110 | |
| 111 | start_prod_stub |
| 112 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 113 | start_ics NOPROXY |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 114 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 115 | set_ics_trace |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 116 | |
| 117 | start_rapp_catalogue |
| 118 | |
| 119 | set_agent_trace |
| 120 | |
| 121 | #### Test RAPP Catalogue #### |
| 122 | |
| 123 | rapp_cat_api_get_services 200 EMPTY |
| 124 | |
| 125 | rapp_cat_api_put_service 201 "Emergency-response-app" v1 "Emergency-response-app" "Emergency-response-app" |
| 126 | |
| 127 | rapp_cat_api_get_services 200 "Emergency-response-app" v1 "Emergency-response-app" "Emergency-response-app" |
| 128 | |
| 129 | #Check the number of services |
| 130 | rc_equal json:services 1 |
| 131 | |
| 132 | api_get_status 200 |
| 133 | |
| 134 | #### Test Policy Management Service #### |
| 135 | |
| 136 | # Print the A1 version for STD 1.1.X |
| 137 | for ((i=0; i<$STD_NUM_RICS; i++)) |
| 138 | do |
| 139 | sim_print "a1-sim-std-"$i interface |
| 140 | done |
| 141 | |
| 142 | # Print the A1 version for STD 2.0.X |
| 143 | for ((i=0; i<$STD_NUM_RICS; i++)) |
| 144 | do |
| 145 | sim_print "a1-sim-std2-"$i interface |
| 146 | done |
| 147 | |
| 148 | # Print the A1 version for OSC 2.1.X |
| 149 | for ((i=0; i<$OSC_NUM_RICS; i++)) |
| 150 | do |
| 151 | sim_print "a1-sim-osc-"$i interface |
| 152 | done |
| 153 | |
BjornMagnussonXA | 663566c | 2021-11-08 10:25:07 +0100 | [diff] [blame] | 154 | # Check the number of policies in STD and STD2 |
| 155 | for ((i=0; i<$STD_NUM_RICS; i++)) |
| 156 | do |
| 157 | sim_equal "a1-sim-std-"$i num_instances 0 |
| 158 | sim_equal "a1-sim-std2-"$i num_instances 0 |
| 159 | done |
| 160 | |
| 161 | # Check the number of policies in OSC |
| 162 | for ((i=0; i<$STD_NUM_RICS; i++)) |
| 163 | do |
| 164 | sim_equal "a1-sim-osc-"$i num_instances 0 |
| 165 | done |
| 166 | |
| 167 | #Check the number of schemas |
| 168 | api_equal json:policy-types 1 |
| 169 | |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 170 | # Load the polictypes in STD 2 |
| 171 | for ((i=0; i<$STD_NUM_RICS; i++)) |
| 172 | do |
| 173 | sim_put_policy_type 201 "a1-sim-std2-"$i STD_QOS_0_2_0 testdata/STD2/sim_qos.json |
| 174 | sim_put_policy_type 201 "a1-sim-std2-"$i STD_QOS2_0.1.0 testdata/STD2/sim_qos2.json |
| 175 | done |
| 176 | |
| 177 | # Load the polictypes in OSC |
| 178 | for ((i=0; i<$OSC_NUM_RICS; i++)) |
| 179 | do |
| 180 | sim_put_policy_type 201 "a1-sim-osc-"$i 1 testdata/OSC/sim_1.json |
| 181 | sim_put_policy_type 201 "a1-sim-osc-"$i 2 testdata/OSC/sim_2.json |
| 182 | done |
| 183 | |
| 184 | # Check that all rics are synced in |
| 185 | api_equal json:rics 6 300 |
| 186 | |
| 187 | #Check the number of schemas and the individual schemas |
| 188 | api_equal json:policy-types 5 300 |
| 189 | |
| 190 | for ((i=0; i<$STD_NUM_RICS; i++)) |
| 191 | do |
| 192 | ricid=$((3+$i)) |
| 193 | api_equal json:policy-types?ric_id=ric$ricid 1 120 |
| 194 | done |
| 195 | |
| 196 | for ((i=0; i<$STD_NUM_RICS; i++)) |
| 197 | do |
| 198 | ricid=$((5+$i)) |
| 199 | api_equal json:policy-types?ric_id=ric$ricid 2 120 |
| 200 | done |
| 201 | |
| 202 | for ((i=0; i<$OSC_NUM_RICS; i++)) |
| 203 | do |
| 204 | ricid=$((1+$i)) |
| 205 | api_equal json:policy-types?ric_id=ric$ricid 2 120 |
| 206 | done |
| 207 | |
| 208 | #Check the schemas in STD 2 |
| 209 | for ((i=0; i<$OSC_NUM_RICS; i++)) |
| 210 | do |
| 211 | ricid=$((5+$i)) |
| 212 | api_get_policy_type 200 STD_QOS_0_2_0 testdata/STD2/qos-agent-modified.json |
| 213 | api_get_policy_type 200 STD_QOS2_0.1.0 testdata/STD2/qos2-agent-modified.json |
| 214 | done |
| 215 | |
| 216 | # Check the schemas in OSC |
| 217 | for ((i=0; i<$OSC_NUM_RICS; i++)) |
| 218 | do |
| 219 | api_get_policy_type 200 1 testdata/OSC/1-agent-modified.json |
| 220 | api_get_policy_type 200 2 testdata/OSC/2-agent-modified.json |
| 221 | done |
| 222 | |
| 223 | if [ "$PMS_VERSION" == "V2" ]; then |
| 224 | |
| 225 | api_equal json:policy-types 5 120 |
| 226 | |
| 227 | api_equal json:policies 0 |
| 228 | |
| 229 | api_equal json:policy-instances 0 |
| 230 | else |
| 231 | |
| 232 | api_equal json:policy_schemas 5 120 |
| 233 | |
| 234 | api_equal json:policy_types 5 |
| 235 | |
| 236 | api_equal json:policies 0 |
| 237 | |
| 238 | api_equal json:policy_ids 0 |
| 239 | fi |
| 240 | |
BjornMagnussonXA | 79e3700 | 2021-11-22 13:36:04 +0100 | [diff] [blame] | 241 | api_put_service 201 "Emergency-response-app" 0 "$CR_SERVICE_APP_PATH_0/ER-app" |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 242 | |
| 243 | # Create policies in STD |
| 244 | for ((i=0; i<$STD_NUM_RICS; i++)) |
| 245 | do |
| 246 | ricid=$((3+$i)) |
| 247 | generate_policy_uuid |
BjornMagnussonXA | 79e3700 | 2021-11-22 13:36:04 +0100 | [diff] [blame] | 248 | api_put_policy 201 "Emergency-response-app" ric$ricid NOTYPE $((1100+$i)) NOTRANSIENT $CR_SERVICE_APP_PATH_0/"std2" testdata/STD/pi1_template.json 1 |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 249 | generate_policy_uuid |
BjornMagnussonXA | 79e3700 | 2021-11-22 13:36:04 +0100 | [diff] [blame] | 250 | api_put_policy 201 "Emergency-response-app" ric$ricid NOTYPE $((1200+$i)) NOTRANSIENT $CR_SERVICE_APP_PATH_0/"std2" testdata/STD/pi1_template.json 1 |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 251 | done |
| 252 | |
| 253 | #Create policies in STD 2 |
| 254 | for ((i=0; i<$STD_NUM_RICS; i++)) |
| 255 | do |
| 256 | ricid=$((5+$i)) |
| 257 | generate_policy_uuid |
BjornMagnussonXA | 79e3700 | 2021-11-22 13:36:04 +0100 | [diff] [blame] | 258 | api_put_policy 201 "Emergency-response-app" ric$ricid STD_QOS_0_2_0 $((2100+$i)) NOTRANSIENT $CR_SERVICE_APP_PATH_0/"std2" testdata/STD2/pi_qos_template.json 1 |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 259 | generate_policy_uuid |
BjornMagnussonXA | 79e3700 | 2021-11-22 13:36:04 +0100 | [diff] [blame] | 260 | api_put_policy 201 "Emergency-response-app" ric$ricid STD_QOS2_0.1.0 $((2200+$i)) NOTRANSIENT $CR_SERVICE_APP_PATH_0/"std2" testdata/STD2/pi_qos2_template.json 1 |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 261 | done |
| 262 | |
| 263 | # Create policies in OSC |
| 264 | for ((i=0; i<$OSC_NUM_RICS; i++)) |
| 265 | do |
| 266 | ricid=$((1+$i)) |
| 267 | generate_policy_uuid |
BjornMagnussonXA | 79e3700 | 2021-11-22 13:36:04 +0100 | [diff] [blame] | 268 | api_put_policy 201 "Emergency-response-app" ric$ricid 1 $((3100+$i)) NOTRANSIENT $CR_SERVICE_APP_PATH_0/"osc" testdata/OSC/pi1_template.json 1 |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 269 | generate_policy_uuid |
BjornMagnussonXA | 79e3700 | 2021-11-22 13:36:04 +0100 | [diff] [blame] | 270 | api_put_policy 201 "Emergency-response-app" ric$ricid 2 $((3200+$i)) NOTRANSIENT $CR_SERVICE_APP_PATH_0/"osc" testdata/OSC/pi2_template.json 1 |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 271 | done |
| 272 | |
| 273 | |
| 274 | # Check the number of policies in STD and STD2 |
| 275 | for ((i=0; i<$STD_NUM_RICS; i++)) |
| 276 | do |
| 277 | sim_equal "a1-sim-std-"$i num_instances 2 |
| 278 | sim_equal "a1-sim-std2-"$i num_instances 2 |
| 279 | done |
| 280 | |
| 281 | # Check the number of policies in OSC |
| 282 | for ((i=0; i<$STD_NUM_RICS; i++)) |
| 283 | do |
| 284 | sim_equal "a1-sim-osc-"$i num_instances 2 |
| 285 | done |
| 286 | |
| 287 | stop_policy_agent |
| 288 | |
| 289 | start_stopped_policy_agent |
| 290 | |
| 291 | # Check PMS state after restart |
| 292 | |
| 293 | sleep_wait 200 |
| 294 | |
| 295 | if [ "$PMS_VERSION" == "V2" ]; then |
| 296 | |
| 297 | api_equal json:policy-types 5 120 |
| 298 | |
| 299 | api_equal json:policies 12 |
| 300 | |
| 301 | api_equal json:policy-instances 12 |
| 302 | else |
| 303 | |
| 304 | api_equal json:policy_schemas 5 120 |
| 305 | |
| 306 | api_equal json:policy_types 5 |
| 307 | |
| 308 | api_equal json:policies 12 |
| 309 | |
| 310 | api_equal json:policy_ids 12 |
| 311 | fi |
| 312 | |
| 313 | # Check the number of policies in STD and STD2 |
| 314 | for ((i=0; i<$STD_NUM_RICS; i++)) |
| 315 | do |
| 316 | sim_equal "a1-sim-std-"$i num_instances 2 |
| 317 | sim_equal "a1-sim-std2-"$i num_instances 2 |
| 318 | done |
| 319 | |
| 320 | # Check the number of policies in OSC |
| 321 | for ((i=0; i<$STD_NUM_RICS; i++)) |
| 322 | do |
| 323 | sim_equal "a1-sim-osc-"$i num_instances 2 |
| 324 | done |
| 325 | |
BjornMagnussonXA | dfdca18 | 2021-12-10 10:43:32 +0100 | [diff] [blame] | 326 | cr_api_reset 0 # Reset CR to count new events |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 327 | |
| 328 | echo "ADD EVENT/STATUS CHECK" |
| 329 | echo "ADD MR CHECK" |
| 330 | |
| 331 | FLAT_A1_EI="1" |
| 332 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 333 | ics_api_admin_reset |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 334 | |
| 335 | CB_JOB="$PROD_STUB_SERVICE_PATH$PROD_STUB_JOB_CALLBACK" |
| 336 | CB_SV="$PROD_STUB_SERVICE_PATH$PROD_STUB_SUPERVISION_CALLBACK" |
| 337 | TARGET1="$RIC_SIM_HTTPX://a1-sim-std2-0.a1-sim:$RIC_SIM_PORT/datadelivery" |
| 338 | TARGET2="$RIC_SIM_HTTPX://a1-sim-std2-1.a1-sim:$RIC_SIM_PORT/datadelivery" |
| 339 | |
BjornMagnussonXA | 79e3700 | 2021-11-22 13:36:04 +0100 | [diff] [blame] | 340 | STATUS1="$CR_SERVICE_APP_PATH_0/job1-status" |
| 341 | STATUS2="$CR_SERVICE_APP_PATH_0/job2-status" |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 342 | |
| 343 | prodstub_arm_producer 200 prod-a |
| 344 | prodstub_arm_type 200 prod-a type1 |
| 345 | prodstub_arm_job_create 200 prod-a job1 |
| 346 | prodstub_arm_job_create 200 prod-a job2 |
| 347 | |
| 348 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 349 | ### ics status |
| 350 | ics_api_service_status 200 |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 351 | |
| 352 | ## Setup prod-a |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 353 | if [ $ICS_VERSION == "V1-1" ]; then |
| 354 | ics_api_edp_put_producer 201 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 testdata/ics/ei-type-1.json |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 355 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 356 | ics_api_edp_get_producer 200 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 testdata/ics/ei-type-1.json |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 357 | else |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 358 | ics_api_edp_put_type_2 201 type1 testdata/ics/ei-type-1.json |
| 359 | ics_api_edp_get_type_2 200 type1 |
BjornMagnussonXA | dfdca18 | 2021-12-10 10:43:32 +0100 | [diff] [blame] | 360 | ics_api_edp_get_type_ids 200 STD_Fault_Messages ExampleInformationTypeKafka ExampleInformationType type1 |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 361 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 362 | ics_api_edp_put_producer_2 201 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 |
| 363 | ics_api_edp_put_producer_2 200 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 364 | fi |
| 365 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 366 | ics_api_edp_get_producer_status 200 prod-a ENABLED |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 367 | |
| 368 | |
| 369 | ## Create a job for prod-a |
| 370 | ## job1 - prod-a |
| 371 | if [ -z "$FLAT_A1_EI" ]; then |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 372 | ics_api_a1_put_job 201 type1 job1 $TARGET1 ricsim_g3_1 testdata/ics/job-template.json |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 373 | else |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 374 | ics_api_a1_put_job 201 job1 type1 $TARGET1 ricsim_g3_1 $STATUS1 testdata/ics/job-template.json |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 375 | fi |
| 376 | |
| 377 | # Check the job data in the producer |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 378 | if [ $ICS_VERSION == "V1-1" ]; then |
| 379 | prodstub_check_jobdata 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ics/job-template.json |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 380 | else |
BjornMagnussonXA | dfdca18 | 2021-12-10 10:43:32 +0100 | [diff] [blame] | 381 | if [[ "$ICS_FEATURE3LEVEL" == *"INFO-TYPES"* ]]; then |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 382 | prodstub_check_jobdata_3 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ics/job-template.json |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 383 | else |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 384 | prodstub_check_jobdata_2 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ics/job-template.json |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 385 | fi |
| 386 | fi |
| 387 | |
| 388 | ## Create a second job for prod-a |
| 389 | ## job2 - prod-a |
| 390 | if [ -z "$FLAT_A1_EI" ]; then |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 391 | ics_api_a1_put_job 201 type1 job2 $TARGET2 ricsim_g3_2 testdata/ics/job-template.json |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 392 | else |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 393 | ics_api_a1_put_job 201 job2 type1 $TARGET2 ricsim_g3_2 $STATUS2 testdata/ics/job-template.json |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 394 | fi |
| 395 | |
| 396 | # Check the job data in the producer |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 397 | if [ $ICS_VERSION == "V1-1" ]; then |
| 398 | prodstub_check_jobdata 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ics/job-template.json |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 399 | else |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 400 | if [[ "$ICS_FEATURE_LEVEL" == *"INFO-TYPES"* ]]; then |
| 401 | prodstub_check_jobdata_3 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ics/job-template.json |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 402 | else |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 403 | prodstub_check_jobdata_2 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ics/job-template.json |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 404 | fi |
| 405 | fi |
| 406 | |
BjornMagnussonXA | 663566c | 2021-11-08 10:25:07 +0100 | [diff] [blame] | 407 | # Dmaap mediator and adapter |
| 408 | start_dmaapadp NOPROXY $SIM_GROUP/$DMAAP_ADP_COMPOSE_DIR/$DMAAP_ADP_CONFIG_FILE $SIM_GROUP/$DMAAP_ADP_COMPOSE_DIR/$DMAAP_ADP_DATA_FILE |
| 409 | |
| 410 | start_dmaapmed NOPROXY $SIM_GROUP/$DMAAP_MED_COMPOSE_DIR/$DMAAP_MED_DATA_FILE |
| 411 | |
BjornMagnussonXA | dfdca18 | 2021-12-10 10:43:32 +0100 | [diff] [blame] | 412 | ics_equal json:data-producer/v1/info-producers 3 120 |
BjornMagnussonXA | 663566c | 2021-11-08 10:25:07 +0100 | [diff] [blame] | 413 | |
BjornMagnussonXA | dfdca18 | 2021-12-10 10:43:32 +0100 | [diff] [blame] | 414 | ics_api_idc_get_type_ids 200 ExampleInformationType ExampleInformationTypeKafka STD_Fault_Messages type-1 |
BjornMagnussonXA | 663566c | 2021-11-08 10:25:07 +0100 | [diff] [blame] | 415 | |
BjornMagnussonXA | dfdca18 | 2021-12-10 10:43:32 +0100 | [diff] [blame] | 416 | ics_api_edp_get_producer_ids_2 200 NOTYPE prod-a DmaapGenericInfoProducer DMaaP_Mediator_Producer |
BjornMagnussonXA | 663566c | 2021-11-08 10:25:07 +0100 | [diff] [blame] | 417 | |
BjornMagnussonXA | dfdca18 | 2021-12-10 10:43:32 +0100 | [diff] [blame] | 418 | NUM_JOBS=1 |
BjornMagnussonXA | 663566c | 2021-11-08 10:25:07 +0100 | [diff] [blame] | 419 | |
| 420 | for ((i=1; i<=$NUM_JOBS; i++)) |
| 421 | do |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 422 | ics_api_idc_put_job 201 jobx$i STD_Fault_Messages $CR_SERVICE_MR_PATH_0/jobx-data$i info-ownerx$i $CR_SERVICE_MR_PATH_0/job_status_info-ownerx$i testdata/dmaap-adapter/job-template.json |
BjornMagnussonXA | 663566c | 2021-11-08 10:25:07 +0100 | [diff] [blame] | 423 | done |
| 424 | |
| 425 | for ((i=1; i<=$NUM_JOBS; i++)) |
| 426 | do |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 427 | ics_api_idc_put_job 201 joby$i ExampleInformationType $CR_SERVICE_MR_PATH_0/joby-data$i info-ownery$i $CR_SERVICE_MR_PATH_0/job_status_info-ownery$i testdata/dmaap-adapter/job-template.json |
BjornMagnussonXA | dfdca18 | 2021-12-10 10:43:32 +0100 | [diff] [blame] | 428 | ics_api_idc_put_job 201 jobz$i ExampleInformationTypeKafka $CR_SERVICE_MR_PATH_0/jobz-data$i info-ownerz$i $CR_SERVICE_MR_PATH_0/job_status_info-ownerz$i testdata/dmaap-adapter/job-template-1-kafka.json |
BjornMagnussonXA | 663566c | 2021-11-08 10:25:07 +0100 | [diff] [blame] | 429 | done |
| 430 | |
| 431 | for ((i=1; i<=$NUM_JOBS; i++)) |
| 432 | do |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 433 | ics_api_a1_get_job_status 200 jobx$i ENABLED 30 |
BjornMagnussonXA | dfdca18 | 2021-12-10 10:43:32 +0100 | [diff] [blame] | 434 | ics_api_a1_get_job_status 200 joby$i ENABLED 30 |
| 435 | ics_api_a1_get_job_status 200 jobz$i ENABLED 30 |
BjornMagnussonXA | 663566c | 2021-11-08 10:25:07 +0100 | [diff] [blame] | 436 | done |
| 437 | |
| 438 | mr_api_send_json "/events/unauthenticated.dmaapmed.json" '{"msg":"msg-0"}' |
| 439 | mr_api_send_json "/events/unauthenticated.dmaapadp.json" '{"msg":"msg-1"}' |
| 440 | mr_api_send_json "/events/unauthenticated.dmaapmed.json" '{"msg":"msg-2"}' |
| 441 | mr_api_send_json "/events/unauthenticated.dmaapadp.json" '{"msg":"msg-3"}' |
BjornMagnussonXA | dfdca18 | 2021-12-10 10:43:32 +0100 | [diff] [blame] | 442 | kafkapc_api_post_msg 200 "unauthenticated.dmaapadp_kafka.text" "text/plain" 'Message-------4' |
| 443 | kafkapc_api_post_msg 200 "unauthenticated.dmaapadp_kafka.text" "text/plain" 'Message-------6' |
BjornMagnussonXA | 663566c | 2021-11-08 10:25:07 +0100 | [diff] [blame] | 444 | |
BjornMagnussonXA | dfdca18 | 2021-12-10 10:43:32 +0100 | [diff] [blame] | 445 | |
| 446 | cr_equal 0 received_callbacks $(($NUM_JOBS*2*3)) 200 |
BjornMagnussonXA | 663566c | 2021-11-08 10:25:07 +0100 | [diff] [blame] | 447 | for ((i=1; i<=$NUM_JOBS; i++)) |
| 448 | do |
BjornMagnussonXA | 79e3700 | 2021-11-22 13:36:04 +0100 | [diff] [blame] | 449 | cr_equal 0 received_callbacks?id=jobx-data$i 2 |
| 450 | cr_equal 0 received_callbacks?id=joby-data$i 2 |
BjornMagnussonXA | dfdca18 | 2021-12-10 10:43:32 +0100 | [diff] [blame] | 451 | cr_equal 0 received_callbacks?id=jobz-data$i 2 |
BjornMagnussonXA | 663566c | 2021-11-08 10:25:07 +0100 | [diff] [blame] | 452 | done |
| 453 | |
| 454 | for ((i=1; i<=$NUM_JOBS; i++)) |
| 455 | do |
BjornMagnussonXA | 79e3700 | 2021-11-22 13:36:04 +0100 | [diff] [blame] | 456 | cr_api_check_single_genric_json_event 200 0 jobx-data$i '{"msg":"msg-0"}' |
| 457 | cr_api_check_single_genric_json_event 200 0 jobx-data$i '{"msg":"msg-2"}' |
| 458 | cr_api_check_single_genric_json_event 200 0 joby-data$i '{"msg":"msg-1"}' |
| 459 | cr_api_check_single_genric_json_event 200 0 joby-data$i '{"msg":"msg-3"}' |
BjornMagnussonXA | dfdca18 | 2021-12-10 10:43:32 +0100 | [diff] [blame] | 460 | cr_api_check_single_genric_json_event 200 0 jobz-data$i 'Message-------4' |
| 461 | cr_api_check_single_genric_json_event 200 0 jobz-data$i 'Message-------6' |
BjornMagnussonXA | 663566c | 2021-11-08 10:25:07 +0100 | [diff] [blame] | 462 | done |
| 463 | |
| 464 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 465 | stop_ics |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 466 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 467 | start_stopped_ics |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 468 | |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 469 | # Check ICS status after restart |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 470 | |
| 471 | if [ -z "$FLAT_A1_EI" ]; then |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 472 | ics_api_a1_get_job_status 200 type1 job1 DISABLED |
| 473 | ics_api_a1_get_job_status 200 type1 job2 DISABLED |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 474 | else |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 475 | ics_api_a1_get_job_status 200 job1 DISABLED |
| 476 | ics_api_a1_get_job_status 200 job2 DISABLED |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 477 | fi |
| 478 | |
| 479 | check_policy_agent_logs |
BjornMagnussonXA | 007b645 | 2021-11-29 08:03:38 +0100 | [diff] [blame] | 480 | check_ics_logs |
BjornMagnussonXA | fec823b | 2021-08-03 14:14:05 +0200 | [diff] [blame] | 481 | check_sdnc_logs |
| 482 | |
| 483 | #### TEST COMPLETE #### |
| 484 | |
| 485 | store_logs END |
| 486 | |
| 487 | print_result |