Functional Test Updates for I Release
[nonrtric.git] / test / auto-test / PM_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  - populating a number of ric simulators with types and instances"
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 NGW KUBEPROXY"
25
26 #App names to include in the test when running kubernetes, space separated list
27 KUBE_INCLUDED_IMAGES="CP CR MR A1PMS RICSIM SDNC 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
60 notificationurl=$CR_SERVICE_APP_PATH_0"/test"
61
62 clean_environment
63
64 start_kube_proxy
65
66 OSC_NUM_RICS=6
67 STD_NUM_RICS=5
68
69 start_ric_simulators  $RIC_SIM_PREFIX"_g1" $OSC_NUM_RICS OSC_2.1.0
70
71 start_ric_simulators  $RIC_SIM_PREFIX"_g2" $STD_NUM_RICS STD_1.1.3
72
73 start_ric_simulators $RIC_SIM_PREFIX"_g3" $STD_NUM_RICS STD_2.0.0
74
75 if [[ "$A1PMS_FEATURE_LEVEL" == *"NO-DMAAP"* ]]; then
76     :
77 else
78     start_mr #Just to prevent errors in the a1pms log...
79 fi
80
81 start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
82
83 if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then
84     start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE
85 fi
86
87 start_sdnc
88 controller_api_wait_for_status_ok 200 ricsim_g1_1
89
90 start_a1pms NORPOXY $SIM_GROUP/$A1PMS_COMPOSE_DIR/$A1PMS_CONFIG_FILE
91
92 set_a1pms_trace
93
94
95
96 prepare_a1pms_config      SDNC  ".a1pms_config.json"
97
98 if [ $RUNMODE == "KUBE" ]; then
99     a1pms_load_config                       ".a1pms_config.json"
100 else
101     a1pms_api_put_configuration 200 ".a1pms_config.json"
102 fi
103
104 sleep_wait 120 "Let A1PMS configuration take effect"
105
106 a1pms_api_get_status 200
107
108 # Print the A1 version for OSC
109 for ((i=1; i<=$OSC_NUM_RICS; i++))
110 do
111     sim_print $RIC_SIM_PREFIX"_g1_"$i interface
112 done
113
114
115 # Print the A1 version for STD 1.X
116 for ((i=1; i<=$STD_NUM_RICS; i++))
117 do
118     sim_print $RIC_SIM_PREFIX"_g2_"$i interface
119 done
120
121 # Print the A1 version for STD 2.X
122 for ((i=1; i<=$STD_NUM_RICS; i++))
123 do
124     sim_print $RIC_SIM_PREFIX"_g3_"$i interface
125 done
126
127
128 # Load the policytypes in osc
129 for ((i=1; i<=$OSC_NUM_RICS; i++))
130 do
131     sim_put_policy_type 201 $RIC_SIM_PREFIX"_g1_"$i 100 demo-testdata/OSC/sim_qos.json
132     sim_put_policy_type 201 $RIC_SIM_PREFIX"_g1_"$i 20008 demo-testdata/OSC/sim_tsa.json
133 done
134
135
136 #Check the number of schemas and the individual schemas in OSC
137 a1pms_equal json:policy-types 3 300
138
139 for ((i=1; i<=$OSC_NUM_RICS; i++))
140 do
141     a1pms_equal json:policy-types?ric_id=$RIC_SIM_PREFIX"_g1_"$i 2 120
142 done
143
144 # Check the schemas in OSC
145 for ((i=1; i<=$OSC_NUM_RICS; i++))
146 do
147     a1pms_api_get_policy_type 200 100 demo-testdata/OSC/qos-a1pms-modified.json
148     a1pms_api_get_policy_type 200 20008 demo-testdata/OSC/tsa-a1pms-modified.json
149 done
150
151
152 # Load the policytypes in std
153 for ((i=1; i<=$STD_NUM_RICS; i++))
154 do
155     sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS_0_2_0 demo-testdata/STD2/sim_qos.json
156     sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS2_0.1.0 demo-testdata/STD2/sim_qos2.json
157 done
158
159 #Check the number of schemas and the individual schemas in STD
160 a1pms_equal json:policy-types 5 120
161
162 for ((i=1; i<=$STD_NUM_RICS; i++))
163 do
164     a1pms_equal json:policy-types?ric_id=$RIC_SIM_PREFIX"_g3_"$i 2 120
165 done
166
167 # Check the schemas in STD
168 for ((i=1; i<=$STD_NUM_RICS; i++))
169 do
170     a1pms_api_get_policy_type 200 STD_QOS_0_2_0 demo-testdata/STD2/qos-a1pms-modified.json
171     a1pms_api_get_policy_type 200 'STD_QOS2_0.1.0' demo-testdata/STD2/qos2-a1pms-modified.json
172 done
173
174 #Check the number of types
175 a1pms_equal json:policy-types 5 120
176
177
178 # Create policies
179 use_a1pms_rest_http
180
181 a1pms_api_put_service 201 "Emergency-response-app" 0 "$CR_SERVICE_APP_PATH_0/1"
182
183 # Create policies in OSC
184 for ((i=1; i<=$OSC_NUM_RICS; i++))
185 do
186     sim_generate_policy_uuid
187     a1pms_api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g1_"$i 100 $((3000+$i)) NOTRANSIENT $notificationurl demo-testdata/OSC/piqos_template.json 1
188     sim_generate_policy_uuid
189     a1pms_api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g1_"$i 20008 $((4000+$i)) NOTRANSIENT $notificationurl demo-testdata/OSC/pitsa_template.json 1
190 done
191
192
193 # Check the number of policies in OSC
194 for ((i=1; i<=$OSC_NUM_RICS; i++))
195 do
196     sim_equal $RIC_SIM_PREFIX"_g1_"$i num_instances 2
197 done
198
199
200 # Create policies in STD
201 for ((i=1; i<=$STD_NUM_RICS; i++))
202 do
203     sim_generate_policy_uuid
204     a1pms_api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g2_"$i NOTYPE $((2100+$i)) NOTRANSIENT $notificationurl demo-testdata/STD/pi1_template.json 1
205     sim_generate_policy_uuid
206     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
207     sim_generate_policy_uuid
208     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
209 done
210
211
212 # Check the number of policies in STD
213 for ((i=1; i<=$STD_NUM_RICS; i++))
214 do
215     sim_equal $RIC_SIM_PREFIX"_g2_"$i num_instances 1
216     sim_equal $RIC_SIM_PREFIX"_g3_"$i num_instances 2
217 done
218
219 check_a1pms_logs
220 check_sdnc_logs
221
222 #### TEST COMPLETE ####
223
224 store_logs          END
225
226 print_result
227
228 auto_clean_environment