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