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