Functional Test Updates for I Release
[nonrtric.git] / test / auto-test / PM_EI_DEMO.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="Preparation demo setup  - policy management and information information"
22
23 #App names to include in the test when running docker, space separated list
24 DOCKER_INCLUDED_IMAGES="CP CR MR A1PMS RICSIM SDNC ICS PRODSTUB RC HTTPPROXY KUBEPROXY NGW"
25
26 #App names to include in the test when running kubernetes, space separated list
27 KUBE_INCLUDED_IMAGES=" MR CR A1PMS RC PRODSTUB RICSIM CP ICS SDNC 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
47 #Local vars in test script
48 ##########################
49
50 use_cr_https
51 use_a1pms_rest_https
52 if [[ "$SDNC_FEATURE_LEVEL" == *"NO_NB_HTTPS"* ]]; then
53     deviation "SDNC does not support NB https"
54     use_sdnc_http
55 else
56     use_sdnc_https
57 fi
58 use_simulator_https
59 use_ics_rest_https
60 use_prod_stub_https
61 use_rapp_catalogue_https
62
63
64 notificationurl=$CR_SERVICE_APP_PATH_0"/test"
65
66 clean_environment
67
68 start_kube_proxy
69
70 STD_NUM_RICS=2
71
72 #start_http_proxy  #Remove the comment on this line, comment out 'start_sdnc' and change SDNC to NOSDNC a few lines below to run with proxy
73
74 start_ric_simulators $RIC_SIM_PREFIX"_g3" $STD_NUM_RICS STD_2.0.0
75
76 if [[ "$A1PMS_FEATURE_LEVEL" == *"NO-DMAAP"* ]]; then
77     :
78 else
79     start_mr #Just to prevent errors in the a1pms log...
80 fi
81
82 start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
83
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_sdnc    # Comment this line to run A1PMS with proxy
89 controller_api_wait_for_status_ok 200 ricsim_g3_1 # Comment this line to run A1PMS with proxy
90
91 start_a1pms PROXY $SIM_GROUP/$A1PMS_COMPOSE_DIR/$A1PMS_CONFIG_FILE
92
93
94
95 prepare_a1pms_config      SDNC  ".a1pms_config.json"  #Change to NOSDNC if running A1PMS with  proxy
96
97 if [ $RUNMODE == "KUBE" ]; then
98     a1pms_load_config                       ".a1pms_config.json"
99 else
100     a1pms_api_put_configuration 200 ".a1pms_config.json"
101 fi
102
103 start_cr 1
104
105 start_prod_stub
106
107 start_ics PROXY $SIM_GROUP/$ICS_COMPOSE_DIR/$ICS_CONFIG_FILE
108
109 start_rapp_catalogue
110
111 set_a1pms_trace
112
113 set_ics_trace
114
115 rapp_cat_api_get_services 200 EMPTY
116
117 rapp_cat_api_put_service 201 "Emergency-response-app" v1 "Emergency-response-app" "Emergency-response-app"
118
119 rapp_cat_api_get_services 200 "Emergency-response-app" v1 "Emergency-response-app" "Emergency-response-app"
120
121 sleep_wait 120 "Let A1PMS configuration take effect"
122
123 a1pms_api_get_status 200
124
125 # Print the A1 version for STD 2.X
126 for ((i=1; i<=$STD_NUM_RICS; i++))
127 do
128     sim_print $RIC_SIM_PREFIX"_g3_"$i interface
129 done
130 # Load the policytypes in std
131 for ((i=1; i<=$STD_NUM_RICS; i++))
132 do
133     sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS_0_2_0 demo-testdata/STD2/sim_qos.json
134     sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS2_0.1.0 demo-testdata/STD2/sim_qos2.json
135 done
136
137 #Check the number of schemas and the individual schemas in STD
138 a1pms_equal json:policy-types 2 120
139
140 for ((i=1; i<=$STD_NUM_RICS; i++))
141 do
142     a1pms_equal json:policy-types?ric_id=$RIC_SIM_PREFIX"_g3_"$i 2 120
143 done
144
145 # Check the schemas in STD
146 for ((i=1; i<=$STD_NUM_RICS; i++))
147 do
148     a1pms_api_get_policy_type 200 STD_QOS_0_2_0 demo-testdata/STD2/qos-a1pms-modified.json
149     a1pms_api_get_policy_type 200 'STD_QOS2_0.1.0' demo-testdata/STD2/qos2-a1pms-modified.json
150 done
151
152 #Check the number of types
153 a1pms_equal json:policy-types 2 300
154
155 a1pms_api_put_service 201 "Emergency-response-app" 0 "$CR_SERVICE_APP_PATH_0/1"
156
157 # Create policies in STD
158 for ((i=1; i<=$STD_NUM_RICS; i++))
159 do
160     sim_generate_policy_uuid
161     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
162     sim_generate_policy_uuid
163     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
164 done
165
166
167 # Check the number of policies in STD
168 for ((i=1; i<=$STD_NUM_RICS; i++))
169 do
170     sim_equal $RIC_SIM_PREFIX"_g3_"$i num_instances 2
171 done
172
173 # Print calling hosts STD 2.X
174 for ((i=1; i<=$STD_NUM_RICS; i++))
175 do
176     sim_print $RIC_SIM_PREFIX"_g3_"$i remote_hosts
177 done
178
179 CB_JOB="$PROD_STUB_SERVICE_PATH$PROD_STUB_JOB_CALLBACK"
180 CB_SV="$PROD_STUB_SERVICE_PATH$PROD_STUB_SUPERVISION_CALLBACK"
181 RIC_G1_1=$RIC_SIM_PREFIX"_g3_1"
182 RIC_G1_2=$RIC_SIM_PREFIX"_g3_2"
183 if [ $RUNMODE == "KUBE" ]; then
184     RIC_G1_1=$(get_kube_sim_host $RIC_G1_1)
185     RIC_G1_2=$(get_kube_sim_host $RIC_G1_2)
186 fi
187 TARGET1="$RIC_SIM_HTTPX://$RIC_G1_1:$RIC_SIM_PORT/datadelivery"
188 TARGET2="$RIC_SIM_HTTPX://$RIC_G1_1:$RIC_SIM_PORT/datadelivery"
189
190 STATUS1="$CR_SERVICE_APP_PATH_0/callbacks/job1-status"
191 STATUS2="$CR_SERVICE_APP_PATH_0/callbacks/job2-status"
192
193 prodstub_arm_producer 200 prod-a
194 prodstub_arm_type 200 prod-a type1
195 prodstub_arm_job_create 200 prod-a job1
196 prodstub_arm_job_create 200 prod-a job2
197
198 ### ics status
199 ics_api_service_status 200
200
201 ## Setup prod-a
202 ics_api_edp_put_type_2 201 type1 testdata/ics/ei-type-1.json
203
204 ics_api_edp_put_producer_2 201 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1
205
206 ics_api_edp_get_producer_2 200 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1
207
208 ics_api_edp_get_producer_status 200 prod-a ENABLED
209
210
211 ## Create a job for prod-a
212 ## job1 - prod-a
213 ics_api_a1_put_job 201 job1 type1 $TARGET1 ricsim_g3_1 $STATUS1 testdata/ics/job-template.json
214
215 # Check the job data in the producer
216  prodstub_check_jobdata_3 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ics/job-template.json
217
218 ## Create a second job for prod-a
219 ## job2 - prod-a
220 ics_api_a1_put_job 201 job2 type1 $TARGET2 ricsim_g3_2 $STATUS2 testdata/ics/job-template.json
221
222 # Check the job data in the producer
223 prodstub_check_jobdata_3 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ics/job-template.json
224
225 check_a1pms_logs
226 check_ics_logs
227 check_sdnc_logs
228
229 #### TEST COMPLETE ####
230
231 store_logs          END
232
233 print_result
234
235 auto_clean_environment