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