Updated test env documentation
[nonrtric.git] / test / auto-test / FTC900.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 for test of the Control Panel and the Health Check app - 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 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 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 clean_environment
47
48 start_kube_proxy
49
50 OSC_NUM_RICS=6
51 STD_NUM_RICS=5
52
53 start_ric_simulators  $RIC_SIM_PREFIX"_g1" $OSC_NUM_RICS OSC_2.1.0
54
55 start_ric_simulators  $RIC_SIM_PREFIX"_g2" $STD_NUM_RICS STD_1.1.3
56
57 start_ric_simulators  $RIC_SIM_PREFIX"_g3" $STD_NUM_RICS STD_2.0.0
58
59 if [[ "$A1PMS_FEATURE_LEVEL" == *"NO-DMAAP"* ]]; then
60     :
61 else
62     start_mr #Just to prevent errors in the a1pms log...
63 fi
64
65 start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
66
67 if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then
68     start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE
69 fi
70
71 start_a1pms NORPOXY $SIM_GROUP/$A1PMS_COMPOSE_DIR/$A1PMS_CONFIG_FILE
72
73 use_a1pms_rest_http
74
75
76
77 prepare_a1pms_config      NOSDNC  ".a1pms_config.json"
78
79 if [ $RUNMODE == "KUBE" ]; then
80     a1pms_load_config                       ".a1pms_config.json"
81 else
82     a1pms_api_put_configuration 200 ".a1pms_config.json"
83 fi
84
85 sleep_wait 120 "Let A1PMS configuration take effect"
86
87 a1pms_api_get_status 200
88
89 # Print the A1 version for OSC
90 for ((i=1; i<=$OSC_NUM_RICS; i++))
91 do
92     sim_print $RIC_SIM_PREFIX"_g1_"$i interface
93 done
94
95
96 # Print the A1 version for STD
97 for ((i=1; i<=$STD_NUM_RICS; i++))
98 do
99     sim_print $RIC_SIM_PREFIX"_g2_"$i interface
100 done
101
102 # Print the A1 version for STD 2.X
103 for ((i=1; i<=$STD_NUM_RICS; i++))
104 do
105     sim_print $RIC_SIM_PREFIX"_g3_"$i interface
106 done
107
108 # Load the policytypes in osc
109 for ((i=1; i<=$OSC_NUM_RICS; i++))
110 do
111     sim_put_policy_type 201 $RIC_SIM_PREFIX"_g1_"$i 2 testdata/OSC/sim_hw.json
112     sim_put_policy_type 201 $RIC_SIM_PREFIX"_g1_"$i 100 testdata/OSC/sim_qos.json
113     sim_put_policy_type 201 $RIC_SIM_PREFIX"_g1_"$i 20008 testdata/OSC/sim_tsa.json
114 done
115
116
117 #Check the number of schemas and the individual schemas in OSC
118 a1pms_equal json:policy-types 4 300
119
120 for ((i=1; i<=$OSC_NUM_RICS; i++))
121 do
122     a1pms_equal json:policy-types?ric_id=$RIC_SIM_PREFIX"_g1_"$i 3 120
123 done
124
125 # Check the schemas in OSC
126 for ((i=1; i<=$OSC_NUM_RICS; i++))
127 do
128     a1pms_api_get_policy_type 200 2 testdata/OSC/hw-a1pms-modified.json
129     a1pms_api_get_policy_type 200 100 testdata/OSC/qos-a1pms-modified.json
130     a1pms_api_get_policy_type 200 20008 testdata/OSC/tsa-a1pms-modified.json
131 done
132
133 # Load the policytypes in std
134 for ((i=1; i<=$STD_NUM_RICS; i++))
135 do
136     sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS_0_2_0 demo-testdata/STD2/sim_qos.json
137     sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS2_0.1.0 demo-testdata/STD2/sim_qos2.json
138 done
139
140 #Check the number of schemas and the individual schemas in STD
141 a1pms_equal json:policy-types 6 120
142
143 for ((i=1; i<=$STD_NUM_RICS; i++))
144 do
145     a1pms_equal json:policy-types?ric_id=$RIC_SIM_PREFIX"_g3_"$i 2 120
146 done
147
148 # Check the schemas in STD
149 for ((i=1; i<=$STD_NUM_RICS; i++))
150 do
151     a1pms_api_get_policy_type 200 STD_QOS_0_2_0 demo-testdata/STD2/qos-a1pms-modified.json
152     a1pms_api_get_policy_type 200 'STD_QOS2_0.1.0' demo-testdata/STD2/qos2-a1pms-modified.json
153 done
154
155 # Create policies
156 use_a1pms_rest_http
157
158 a1pms_api_put_service 201 "Emergency-response-app" 0 "$CR_SERVICE_APP_PATH_0/1"
159
160 notificationurl=$CR_SERVICE_APP_PATH_0"/test"
161
162 # Create policies in OSC
163 for ((i=1; i<=$OSC_NUM_RICS; i++))
164 do
165     sim_generate_policy_uuid
166     a1pms_api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g1_"$i 2 $((2000+$i)) NOTRANSIENT $notificationurl testdata/OSC/pihw_template.json 1
167     sim_generate_policy_uuid
168     a1pms_api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g1_"$i 100 $((3000+$i)) NOTRANSIENT $notificationurl testdata/OSC/piqos_template.json 1
169     sim_generate_policy_uuid
170     a1pms_api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g1_"$i 20008 $((4000+$i)) NOTRANSIENT $notificationurl testdata/OSC/pitsa_template.json 1
171 done
172
173
174 # Check the number of policies in OSC
175 for ((i=1; i<=$OSC_NUM_RICS; i++))
176 do
177     sim_equal $RIC_SIM_PREFIX"_g1_"$i num_instances 3
178 done
179
180
181 # Create policies in STD
182 for ((i=1; i<=$STD_NUM_RICS; i++))
183 do
184     sim_generate_policy_uuid
185     a1pms_api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g2_"$i NOTYPE $((2100+$i)) NOTRANSIENT $notificationurl testdata/STD/pi1_template.json 1
186     sim_generate_policy_uuid
187     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
188     sim_generate_policy_uuid
189     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
190 done
191
192
193 # Check the number of policies in STD
194 for ((i=1; i<=$STD_NUM_RICS; i++))
195 do
196     sim_equal $RIC_SIM_PREFIX"_g2_"$i num_instances 1
197     sim_equal $RIC_SIM_PREFIX"_g3_"$i num_instances 2
198 done
199
200 check_a1pms_logs
201
202 #### TEST COMPLETE ####
203
204 store_logs          END
205
206 print_result
207
208 auto_clean_environment