9c27fda3f8fc6d1fbc91ee3201a819c00e1066f6
[nonrtric.git] / test / auto-test / PM_EI_DEMO.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 demo setup  - policy management and enrichment information"
21
22 #App names to include in the test when running docker, space separated list
23 DOCKER_INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM SDNC ECS PRODSTUB RC HTTPPROXY"
24
25 #App names to include in the test when running kubernetes, space separated list
26 KUBE_INCLUDED_IMAGES=" MR CR PA RC PRODSTUB RICSIM CP ECS SDNC HTTPPROXY"
27 #Prestarted app (not started by script) to include in the test when running kubernetes, space separated list
28 KUBE_PRESTARTED_IMAGES=""
29
30 #Supported test environment profiles
31 SUPPORTED_PROFILES="ONAP-HONOLULU  ORAN-CHERRY ORAN-DAWN"
32 #Supported run modes
33 SUPPORTED_RUNMODES="DOCKER KUBE"
34
35 . ../common/testcase_common.sh $@
36 . ../common/agent_api_functions.sh
37 . ../common/ricsimulator_api_functions.sh
38 . ../common/ecs_api_functions.sh
39 . ../common/prodstub_api_functions.sh
40 . ../common/cr_api_functions.sh
41 . ../common/rapp_catalogue_api_functions.sh
42 . ../common/mr_api_functions.sh
43 . ../common/control_panel_api_functions.sh
44 . ../common/controller_api_functions.sh
45 . ../common/consul_cbs_functions.sh
46 . ../common/http_proxy_api_functions.sh
47
48 #### TEST BEGIN ####
49
50 #Local vars in test script
51 ##########################
52
53 use_cr_https
54 use_agent_rest_https
55 use_sdnc_https
56 use_simulator_https
57 use_ecs_rest_https
58 use_prod_stub_https
59 if [ $ECS_VERSION == "V1-1" ]; then
60     use_rapp_catalogue_http # https not yet supported
61 else
62     use_rapp_catalogue_https
63 fi
64
65
66 if [ "$PMS_VERSION" == "V2" ]; then
67     notificationurl=$CR_SERVICE_PATH"/test"
68 else
69    echo "PMS VERSION 2 (V2) is required"
70    exit 1
71 fi
72
73 clean_environment
74
75 STD_NUM_RICS=2
76
77 #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
78
79 start_ric_simulators $RIC_SIM_PREFIX"_g3" $STD_NUM_RICS STD_2.0.0
80
81 start_mr #Just to prevent errors in the agent log...
82
83 start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/application.properties
84
85 start_sdnc    # Comment this line to run PMS with proxy
86
87 start_policy_agent PROXY $SIM_GROUP/$POLICY_AGENT_COMPOSE_DIR/application.yaml
88
89 if [ $RUNMODE == "DOCKER" ]; then
90     start_consul_cbs
91 fi
92
93 prepare_consul_config      SDNC  ".consul_config.json"   #Change to NOSDNC if running PMS with  proxy
94
95 if [ $RUNMODE == "KUBE" ]; then
96     agent_load_config                       ".consul_config.json"
97 else
98     consul_config_app                      ".consul_config.json"
99 fi
100
101 start_cr
102
103 start_prod_stub
104
105 start_ecs PROXY $SIM_GROUP/$ECS_COMPOSE_DIR/application.yaml
106
107 start_rapp_catalogue
108
109 set_agent_trace
110
111 set_ecs_trace
112
113 rapp_cat_api_get_services 200 EMPTY
114
115 rapp_cat_api_put_service 201 "Emergency-response-app" v1 "Emergency-response-app" "Emergency-response-app"
116
117 rapp_cat_api_get_services 200 "Emergency-response-app" v1 "Emergency-response-app" "Emergency-response-app"
118
119 api_get_status 200
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 # Load the polictypes in std
127 for ((i=1; i<=$STD_NUM_RICS; i++))
128 do
129     sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS_0_2_0 demo-testdata/STD2/sim_qos.json
130     sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS2_0.1.0 demo-testdata/STD2/sim_qos2.json
131 done
132
133 #Check the number of schemas and the individual schemas in STD
134 api_equal json:policy-types 2 120
135
136 for ((i=1; i<=$STD_NUM_RICS; i++))
137 do
138     api_equal json:policy-types?ric_id=$RIC_SIM_PREFIX"_g3_"$i 2 120
139 done
140
141 # Check the schemas in STD
142 for ((i=1; i<=$STD_NUM_RICS; i++))
143 do
144     api_get_policy_type 200 STD_QOS_0_2_0 demo-testdata/STD2/qos-agent-modified.json
145     api_get_policy_type 200 'STD_QOS2_0.1.0' demo-testdata/STD2/qos2-agent-modified.json
146 done
147
148 #Check the number of types
149 api_equal json:policy-types 2 300
150
151 api_put_service 201 "Emergency-response-app" 0 "$CR_SERVICE_PATH/1"
152
153 # Create policies in STD
154 for ((i=1; i<=$STD_NUM_RICS; i++))
155 do
156     generate_uuid
157     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
158     generate_uuid
159     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
160 done
161
162
163 # Check the number of policies in STD
164 for ((i=1; i<=$STD_NUM_RICS; i++))
165 do
166     sim_equal $RIC_SIM_PREFIX"_g3_"$i num_instances 2
167 done
168
169 # Print calling hosts STD 2.X
170 for ((i=1; i<=$STD_NUM_RICS; i++))
171 do
172     sim_print $RIC_SIM_PREFIX"_g3_"$i remote_hosts
173 done
174
175 FLAT_A1_EI="1"
176
177 CB_JOB="$PROD_STUB_SERVICE_PATH$PROD_STUB_JOB_CALLBACK"
178 CB_SV="$PROD_STUB_SERVICE_PATH$PROD_STUB_SUPERVISION_CALLBACK"
179 RIC_G1_1=$RIC_SIM_PREFIX"_g3_1"
180 RIC_G1_2=$RIC_SIM_PREFIX"_g3_2"
181 if [ $RUNMODE == "KUBE" ]; then
182     RIC_G1_1=$(get_kube_sim_host $RIC_G1_1)
183     RIC_G1_2=$(get_kube_sim_host $RIC_G1_2)
184 fi
185 TARGET1="$RIC_SIM_HTTPX://$RIC_G1_1:$RIC_SIM_PORT/datadelivery"
186 TARGET2="$RIC_SIM_HTTPX://$RIC_G1_1:$RIC_SIM_PORT/datadelivery"
187
188 STATUS1="$CR_SERVICE_PATH/callbacks/job1-status"
189 STATUS2="$CR_SERVICE_PATH/callbacks/job2-status"
190
191 prodstub_arm_producer 200 prod-a
192 prodstub_arm_type 200 prod-a type1
193 prodstub_arm_job_create 200 prod-a job1
194 prodstub_arm_job_create 200 prod-a job2
195
196 ### ecs status
197 ecs_api_service_status 200
198
199 ## Setup prod-a
200 if [ $ECS_VERSION == "V1-1" ]; then
201     ecs_api_edp_put_producer 201 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 testdata/ecs/ei-type-1.json
202
203     ecs_api_edp_get_producer 200 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 testdata/ecs/ei-type-1.json
204 else
205     ecs_api_edp_put_type_2 201 type1 testdata/ecs/ei-type-1.json
206
207     ecs_api_edp_put_producer_2 201 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1
208
209     ecs_api_edp_get_producer_2 200 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1
210 fi
211
212 ecs_api_edp_get_producer_status 200 prod-a ENABLED
213
214
215 ## Create a job for prod-a
216 ## job1 - prod-a
217 if [  -z "$FLAT_A1_EI" ]; then
218     ecs_api_a1_put_job 201 type1 job1 $TARGET1 ricsim_g3_1 testdata/ecs/job-template.json
219 else
220     ecs_api_a1_put_job 201 job1 type1 $TARGET1 ricsim_g3_1 $STATUS1 testdata/ecs/job-template.json
221 fi
222
223 # Check the job data in the producer
224 if [ $ECS_VERSION == "V1-1" ]; then
225     prodstub_check_jobdata 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ecs/job-template.json
226 else
227     prodstub_check_jobdata_2 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ecs/job-template.json
228 fi
229
230
231 ## Create a second job for prod-a
232 ## job2 - prod-a
233 if [  -z "$FLAT_A1_EI" ]; then
234     ecs_api_a1_put_job 201 type1 job2 $TARGET2 ricsim_g3_2 testdata/ecs/job-template.json
235 else
236     ecs_api_a1_put_job 201 job2 type1 $TARGET2 ricsim_g3_2 $STATUS2 testdata/ecs/job-template.json
237 fi
238
239 # Check the job data in the producer
240 if [ $ECS_VERSION == "V1-1" ]; then
241     prodstub_check_jobdata 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ecs/job-template.json
242 else
243     prodstub_check_jobdata_2 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ecs/job-template.json
244 fi
245
246 check_policy_agent_logs
247 check_ecs_logs
248 check_sdnc_logs
249
250 #### TEST COMPLETE ####
251
252 store_logs          END
253
254 print_result