Updated test env documentation
[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 #  ========================================================================
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="Testing southbound proxy for A1PMS and ICS"
21
22 #App names to include in the test when running docker, space separated list
23 DOCKER_INCLUDED_IMAGES="CP CR MR A1PMS RICSIM ICS PRODSTUB HTTPPROXY NGW KUBEPROXY"
24
25 #App names to include in the test when running kubernetes, space separated list
26 KUBE_INCLUDED_IMAGES=" MR CR A1PMS PRODSTUB RICSIM CP ICS HTTPPROXY KUBEPROXY NGW"
27 #Pre-started 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
36 SUPPORTED_PROFILES="ONAP-JAKARTA ONAP-KOHN ONAP-LONDON  ORAN-F-RELEASE ORAN-G-RELEASE ORAN-H-RELEASE"
37 #Supported run modes
38 SUPPORTED_RUNMODES="DOCKER KUBE"
39
40 . ../common/testcase_common.sh $@
41
42 setup_testenvironment
43
44 #### TEST BEGIN ####
45
46 #Local vars in test script
47 ##########################
48
49 use_cr_https
50 use_a1pms_rest_https
51 use_simulator_https
52 use_ics_rest_https
53 use_prod_stub_https
54
55 notificationurl=$CR_SERVICE_APP_PATH_0"/test"
56
57 clean_environment
58
59 start_kube_proxy
60
61 STD_NUM_RICS=2
62
63 start_http_proxy
64
65 start_ric_simulators $RIC_SIM_PREFIX"_g3" $STD_NUM_RICS STD_2.0.0
66
67 if [[ "$A1PMS_FEATURE_LEVEL" == *"NO-DMAAP"* ]]; then
68     :
69 else
70     start_mr #Just to prevent errors in the a1pms log...
71 fi
72
73 start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
74
75 if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then
76     start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE
77 fi
78
79 start_a1pms PROXY $SIM_GROUP/$A1PMS_COMPOSE_DIR/$A1PMS_CONFIG_FILE
80
81
82
83 prepare_a1pms_config      NOSDNC  ".a1pms_config.json"
84
85 if [ $RUNMODE == "KUBE" ]; then
86     a1pms_load_config                       ".a1pms_config.json"
87 else
88     a1pms_api_put_configuration 200 ".a1pms_config.json"
89 fi
90
91 start_cr 1
92
93 start_prod_stub
94
95 start_ics PROXY $SIM_GROUP/$ICS_COMPOSE_DIR/$ICS_CONFIG_FILE
96
97 set_a1pms_trace
98
99 set_ics_debug
100
101 sleep_wait 120 "Let A1PMS configuration take effect"
102
103 a1pms_api_get_status 200
104
105 # Print the A1 version for STD 2.X
106 for ((i=1; i<=$STD_NUM_RICS; i++))
107 do
108     sim_print $RIC_SIM_PREFIX"_g3_"$i interface
109 done
110 # Load the policytypes in std
111 for ((i=1; i<=$STD_NUM_RICS; i++))
112 do
113     sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS_0_2_0 demo-testdata/STD2/sim_qos.json
114     sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS2_0.1.0 demo-testdata/STD2/sim_qos2.json
115 done
116
117 #Check the number of schemas and the individual schemas in STD
118 a1pms_equal json:policy-types 2 120
119
120 for ((i=1; i<=$STD_NUM_RICS; i++))
121 do
122     a1pms_equal json:policy-types?ric_id=$RIC_SIM_PREFIX"_g3_"$i 2 120
123 done
124
125 # Check the schemas in STD
126 for ((i=1; i<=$STD_NUM_RICS; i++))
127 do
128     a1pms_api_get_policy_type 200 STD_QOS_0_2_0 demo-testdata/STD2/qos-a1pms-modified.json
129     a1pms_api_get_policy_type 200 'STD_QOS2_0.1.0' demo-testdata/STD2/qos2-a1pms-modified.json
130 done
131
132 #Check the number of types
133 a1pms_equal json:policy-types 2 300
134
135 a1pms_api_put_service 201 "Emergency-response-app" 0 "$CR_SERVICE_APP_PATH_0/1"
136
137 # Create policies in STD
138 for ((i=1; i<=$STD_NUM_RICS; i++))
139 do
140     sim_generate_policy_uuid
141     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
142     sim_generate_policy_uuid
143     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
144 done
145
146
147 # Check the number of policies in STD
148 for ((i=1; i<=$STD_NUM_RICS; i++))
149 do
150     sim_equal $RIC_SIM_PREFIX"_g3_"$i num_instances 2
151 done
152
153 # Print calling hosts STD 2.X
154 for ((i=1; i<=$STD_NUM_RICS; i++))
155 do
156     sim_print $RIC_SIM_PREFIX"_g3_"$i remote_hosts
157     sim_contains_str $RIC_SIM_PREFIX"_g3_"$i remote_hosts proxy
158 done
159
160
161 CB_JOB="$PROD_STUB_SERVICE_PATH$PROD_STUB_JOB_CALLBACK"
162 CB_SV="$PROD_STUB_SERVICE_PATH$PROD_STUB_SUPERVISION_CALLBACK"
163 RIC_G1_1=$RIC_SIM_PREFIX"_g3_1"
164 RIC_G1_2=$RIC_SIM_PREFIX"_g3_2"
165 if [ $RUNMODE == "KUBE" ]; then
166     RIC_G1_1=$(get_kube_sim_host $RIC_G1_1)
167     RIC_G1_2=$(get_kube_sim_host $RIC_G1_2)
168 fi
169 TARGET1="$RIC_SIM_HTTPX://$RIC_G1_1:$RIC_SIM_PORT/datadelivery"
170 TARGET2="$RIC_SIM_HTTPX://$RIC_G1_1:$RIC_SIM_PORT/datadelivery"
171
172 STATUS1="$CR_SERVICE_APP_PATH_0/job1-status"
173 STATUS2="$CR_SERVICE_APP_PATH_0/job2-status"
174
175 prodstub_arm_producer 200 prod-a
176 prodstub_arm_type 200 prod-a type1
177 prodstub_arm_job_create 200 prod-a job1
178 prodstub_arm_job_create 200 prod-a job2
179
180 ### ics status
181 ics_api_service_status 200
182
183 if [[ "$ICS_FEATURE_LEVEL" == *"TYPE-SUBSCRIPTIONS"* ]]; then
184     #Type registration status callbacks
185     TYPESTATUS1="$CR_SERVICE_APP_PATH_0/type-status1"
186
187     ics_api_idc_put_subscription 201 subscription-id-1 owner1 $TYPESTATUS1
188
189     ics_api_idc_get_subscription_ids 200 owner1 subscription-id-1
190 fi
191
192 ## Setup prod-a
193 ics_api_edp_put_type_2 201 type1 testdata/ics/ei-type-1.json
194
195 ics_api_edp_put_producer_2 201 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1
196
197 ics_api_edp_get_producer_2 200 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1
198
199 ics_api_edp_get_producer_status 200 prod-a ENABLED
200
201
202 ## Create a job for prod-a
203 ## job1 - prod-a
204 ics_api_a1_put_job 201 job1 type1 $TARGET1 ricsim_g3_1 $STATUS1 testdata/ics/job-template.json
205
206 # Check the job data in the producer
207 prodstub_check_jobdata_3 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ics/job-template.json
208
209 ## Create a second job for prod-a
210 ## job2 - prod-a
211 ics_api_a1_put_job 201 job2 type1 $TARGET2 ricsim_g3_2 $STATUS2 testdata/ics/job-template.json
212
213 # Check the job data in the producer
214 prodstub_check_jobdata_3 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ics/job-template.json
215
216 # Arm producer prod-a for supervision failure
217 prodstub_arm_producer 200 prod-a 400
218
219 # Wait for producer prod-a to go disabled
220 ics_api_edp_get_producer_status 200 prod-a DISABLED 360
221
222 ics_equal json:data-producer/v1/info-producers 0 1000
223
224 if [[ "$ICS_FEATURE_LEVEL" == *"TYPE-SUBSCRIPTIONS"* ]]; then
225     cr_equal 0 received_callbacks 3 30
226     cr_api_check_all_ics_subscription_events 200 0 type-status1 type1 testdata/ics/ei-type-1.json REGISTERED
227     cr_api_check_all_ics_events 200 0 job1-status DISABLED
228     cr_api_check_all_ics_events 200 0 job2-status DISABLED
229 else
230     cr_equal 0 received_callbacks 2 30
231     cr_api_check_all_ics_events 200 0 job1-status DISABLED
232     cr_api_check_all_ics_events 200 0 job2-status DISABLED
233 fi
234
235 cr_contains_str 0 remote_hosts $HTTP_PROXY_APP_NAME
236
237 check_a1pms_logs
238 check_ics_logs
239
240 #### TEST COMPLETE ####
241
242 store_logs          END
243
244 print_result
245
246 auto_clean_environment