Updating FTC 2001, 10, 1 series tests to support a1pms V3 image
[nonrtric.git] / test / auto-test / FTC2001.sh
1 #!/usr/bin/env bash
2
3 #  ============LICENSE_START===============================================
4 #  Copyright (C) 2020-2023 Nordix Foundation. All rights reserved.
5 #  Copyright (C) 2023 OpenInfra Foundation Europe. All rights reserved.
6 #  ========================================================================
7 #  Licensed under the Apache License, Version 2.0 (the "License");
8 #  you may not use this file except in compliance with the License.
9 #  You may obtain a copy of the License at
10 #
11 #       http://www.apache.org/licenses/LICENSE-2.0
12 #
13 #  Unless required by applicable law or agreed to in writing, software
14 #  distributed under the License is distributed on an "AS IS" BASIS,
15 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 #  See the License for the specific language governing permissions and
17 #  limitations under the License.
18 #  ============LICENSE_END=================================================
19 #
20
21 TC_ONELINE_DESCR="Testing southbound proxy for A1PMS and ICS"
22
23 #App names to include in the test when running docker, space separated list
24 DOCKER_INCLUDED_IMAGES="CP CR MR A1PMS RICSIM ICS PRODSTUB HTTPPROXY NGW KUBEPROXY"
25
26 #App names to include in the test when running kubernetes, space separated list
27 KUBE_INCLUDED_IMAGES=" MR CR A1PMS PRODSTUB RICSIM CP ICS HTTPPROXY KUBEPROXY NGW"
28 #Pre-started app (not started by script) to include in the test when running kubernetes, space separated list
29 KUBE_PRESTARTED_IMAGES=""
30
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
36 #Supported test environment profiles
37 SUPPORTED_PROFILES="ONAP-KOHN ONAP-LONDON ONAP-MONTREAL  ORAN-G-RELEASE ORAN-H-RELEASE ORAN-I-RELEASE"
38 #Supported run modes
39 SUPPORTED_RUNMODES="DOCKER KUBE"
40
41 . ../common/testcase_common.sh $@
42
43 setup_testenvironment
44
45 #### TEST BEGIN ####
46 VERSIONS_TO_RUN=2
47
48 if [ -n "$A1PMS_V3_FLAG" ] && [ "${A1PMS_V3_FLAG,,}" == "true" ]; then
49   VERSIONS_TO_RUN=3
50 fi
51
52 for version in $(seq 2 $VERSIONS_TO_RUN); do
53
54   echo "#####################################################################"
55   echo "#####################################################################"
56   echo "### Testing a1pms: V${version}"
57   echo "#####################################################################"
58   echo "#####################################################################"
59
60   if [ "$version" == "3" ]; then
61     if [ -n "$A1PMS_V3" ] && [ -n "$A1PMS_API_PREFIX_V3" ] && [ -n "$A1PMS_ALIVE_URL_V3" ]; then
62       export A1PMS_VERSION="$A1PMS_V3"
63       export A1PMS_API_PREFIX="$A1PMS_API_PREFIX_V3"
64       export A1PMS_ALIVE_URL="$A1PMS_API_PREFIX$A1PMS_ALIVE_URL_V3"
65     else
66       echo "One/All parameters not set in env file (<A1PMS_V3>, <A1PMS_API_PREFIX_V3>, <A1PMS_ALIVE_URL_V3>)"
67       break
68     fi
69   fi
70   #Local vars in test script
71   ##########################
72
73   use_cr_https
74   use_a1pms_rest_https
75   use_simulator_https
76   use_ics_rest_https
77   use_prod_stub_https
78
79   notificationurl=$CR_SERVICE_APP_PATH_0"/test"
80
81   clean_environment
82
83   start_kube_proxy
84
85   STD_NUM_RICS=2
86
87   start_http_proxy
88
89   start_ric_simulators $RIC_SIM_PREFIX"_g3" $STD_NUM_RICS STD_2.0.0
90
91   if [[ "$A1PMS_FEATURE_LEVEL" == *"NO-DMAAP"* ]]; then
92       :
93   else
94       start_mr #Just to prevent errors in the a1pms log...
95   fi
96
97   start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
98
99   if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then
100       start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE
101   fi
102
103   start_a1pms PROXY $SIM_GROUP/$A1PMS_COMPOSE_DIR/$A1PMS_CONFIG_FILE
104
105
106
107   prepare_a1pms_config      NOSDNC  ".a1pms_config.json"
108
109   if [ $RUNMODE == "KUBE" ]; then
110       a1pms_load_config                       ".a1pms_config.json"
111   else
112       a1pms_api_put_configuration 200 ".a1pms_config.json"
113   fi
114
115   start_cr 1
116
117   start_prod_stub
118
119   start_ics PROXY $SIM_GROUP/$ICS_COMPOSE_DIR/$ICS_CONFIG_FILE
120
121   set_a1pms_trace
122
123   set_ics_debug
124
125   sleep_wait 120 "Let A1PMS configuration take effect"
126
127   a1pms_api_get_status 200
128
129   # Print the A1 version for STD 2.X
130   for ((i=1; i<=$STD_NUM_RICS; i++))
131   do
132       sim_print $RIC_SIM_PREFIX"_g3_"$i interface
133   done
134   total_policy_types=2
135   # Load the policytypes in std
136   for ((i=1; i<=$STD_NUM_RICS; i++))
137   do
138       sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS_0_2_0 demo-testdata/STD2/sim_qos.json
139       sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS2_0.1.0 demo-testdata/STD2/sim_qos2.json
140   done
141
142   #Check the number of schemas and the individual schemas in STD
143   if [ "$A1PMS_VERSION" == "V3" ]; then
144     total_policy_type_entries=$((STD_NUM_RICS * total_policy_types))
145     a1pms_equal json:policytypes ${total_policy_type_entries} 120
146   else
147     a1pms_equal json:policy-types ${total_policy_types} 120
148   fi
149
150   for ((i=1; i<=$STD_NUM_RICS; i++))
151   do
152     if [ "$A1PMS_VERSION" == "V3" ]; then
153       a1pms_equal json:policytypes?nearRtRicId=$RIC_SIM_PREFIX"_g3_"$i ${total_policy_types} 120
154     else
155       a1pms_equal json:policy-types?ric_id=$RIC_SIM_PREFIX"_g3_"$i ${total_policy_types} 120
156     fi
157   done
158
159   # Check the schemas in STD
160   for ((i=1; i<=$STD_NUM_RICS; i++))
161   do
162       a1pms_api_get_policy_type 200 STD_QOS_0_2_0 demo-testdata/STD2/qos-a1pms-modified.json
163       a1pms_api_get_policy_type 200 'STD_QOS2_0.1.0' demo-testdata/STD2/qos2-a1pms-modified.json
164   done
165
166   #Check the number of types
167   if [ "$A1PMS_VERSION" == "V3" ]; then
168     total_policy_type_entries=$((STD_NUM_RICS * total_policy_types))
169     a1pms_equal json:policytypes ${total_policy_type_entries} 300
170   else
171     a1pms_equal json:policy-types ${total_policy_types} 300
172   fi
173
174   a1pms_api_put_service 201 "Emergency-response-app" 0 "$CR_SERVICE_APP_PATH_0/1"
175
176   # Create policies in STD
177   for ((i=1; i<=$STD_NUM_RICS; i++))
178   do
179       sim_generate_policy_uuid
180       if [ "$A1PMS_VERSION" == "V3" ]; then
181         a1pms_api_post_policy_v3 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
182         sim_generate_policy_uuid
183         a1pms_api_post_policy_v3 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
184       else
185         a1pms_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
186         sim_generate_policy_uuid
187         a1pms_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
188       fi
189   done
190
191
192   # Check the number of policies in STD
193   for ((i=1; i<=$STD_NUM_RICS; i++))
194   do
195       sim_equal $RIC_SIM_PREFIX"_g3_"$i num_instances 2
196   done
197
198   # Print calling hosts STD 2.X
199   for ((i=1; i<=$STD_NUM_RICS; i++))
200   do
201       sim_print $RIC_SIM_PREFIX"_g3_"$i remote_hosts
202       sim_contains_str $RIC_SIM_PREFIX"_g3_"$i remote_hosts proxy
203   done
204
205
206   CB_JOB="$PROD_STUB_SERVICE_PATH$PROD_STUB_JOB_CALLBACK"
207   CB_SV="$PROD_STUB_SERVICE_PATH$PROD_STUB_SUPERVISION_CALLBACK"
208   RIC_G1_1=$RIC_SIM_PREFIX"_g3_1"
209   RIC_G1_2=$RIC_SIM_PREFIX"_g3_2"
210   if [ $RUNMODE == "KUBE" ]; then
211       RIC_G1_1=$(get_kube_sim_host $RIC_G1_1)
212       RIC_G1_2=$(get_kube_sim_host $RIC_G1_2)
213   fi
214   TARGET1="$RIC_SIM_HTTPX://$RIC_G1_1:$RIC_SIM_PORT/datadelivery"
215   TARGET2="$RIC_SIM_HTTPX://$RIC_G1_1:$RIC_SIM_PORT/datadelivery"
216
217   STATUS1="$CR_SERVICE_APP_PATH_0/job1-status"
218   STATUS2="$CR_SERVICE_APP_PATH_0/job2-status"
219
220   prodstub_arm_producer 200 prod-a
221   prodstub_arm_type 200 prod-a type1
222   prodstub_arm_job_create 200 prod-a job1
223   prodstub_arm_job_create 200 prod-a job2
224
225   ### ics status
226   ics_api_service_status 200
227
228   if [[ "$ICS_FEATURE_LEVEL" == *"TYPE-SUBSCRIPTIONS"* ]]; then
229       #Type registration status callbacks
230       TYPESTATUS1="$CR_SERVICE_APP_PATH_0/type-status1"
231
232       ics_api_idc_put_subscription 201 subscription-id-1 owner1 $TYPESTATUS1
233
234       ics_api_idc_get_subscription_ids 200 owner1 subscription-id-1
235   fi
236
237   ## Setup prod-a
238   ics_api_edp_put_type_2 201 type1 testdata/ics/ei-type-1.json
239
240   ics_api_edp_put_producer_2 201 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1
241
242   ics_api_edp_get_producer_2 200 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1
243
244   ics_api_edp_get_producer_status 200 prod-a ENABLED
245
246
247   ## Create a job for prod-a
248   ## job1 - prod-a
249   ics_api_a1_put_job 201 job1 type1 $TARGET1 ricsim_g3_1 $STATUS1 testdata/ics/job-template.json
250
251   # Check the job data in the producer
252   prodstub_check_jobdata_3 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ics/job-template.json
253
254   ## Create a second job for prod-a
255   ## job2 - prod-a
256   ics_api_a1_put_job 201 job2 type1 $TARGET2 ricsim_g3_2 $STATUS2 testdata/ics/job-template.json
257
258   # Check the job data in the producer
259   prodstub_check_jobdata_3 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ics/job-template.json
260
261   # Arm producer prod-a for supervision failure
262   prodstub_arm_producer 200 prod-a 400
263
264   # Wait for producer prod-a to go disabled
265   ics_api_edp_get_producer_status 200 prod-a DISABLED 360
266
267   ics_equal json:data-producer/v1/info-producers 0 1000
268
269   if [[ "$ICS_FEATURE_LEVEL" == *"TYPE-SUBSCRIPTIONS"* ]]; then
270       cr_equal 0 received_callbacks 3 30
271       cr_api_check_all_ics_subscription_events 200 0 type-status1 type1 testdata/ics/ei-type-1.json REGISTERED
272       cr_api_check_all_ics_events 200 0 job1-status DISABLED
273       cr_api_check_all_ics_events 200 0 job2-status DISABLED
274   else
275       cr_equal 0 received_callbacks 2 30
276       cr_api_check_all_ics_events 200 0 job1-status DISABLED
277       cr_api_check_all_ics_events 200 0 job2-status DISABLED
278   fi
279
280   cr_contains_str 0 remote_hosts $HTTP_PROXY_APP_NAME
281
282   check_a1pms_logs
283   check_ics_logs
284 done
285   #### TEST COMPLETE ####
286
287 store_logs          END
288
289 print_result
290
291 auto_clean_environment