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
10 # http://www.apache.org/licenses/LICENSE-2.0
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=================================================
21 TC_ONELINE_DESCR="Resync of RIC via changes in the consul config or pushed config"
23 #App names to include in the test when running docker, space separated list
24 DOCKER_INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM NGW KUBEPROXY"
26 #Supported test environment profiles
27 SUPPORTED_PROFILES="ONAP-GUILIN ONAP-HONOLULU ONAP-ISTANBUL ONAP-JAKARTA ORAN-CHERRY ORAN-D-RELEASE ORAN-E-RELEASE ORAN-F-RELEASE"
29 SUPPORTED_RUNMODES="DOCKER"
31 . ../common/testcase_common.sh $@
37 if [ "$PMS_VERSION" == "V2" ]; then
38 TESTED_VARIANTS="CONSUL NOCONSUL"
40 TESTED_VARIANTS="CONSUL"
43 for consul_conf in $TESTED_VARIANTS ; do
46 # Clean container and start all needed containers #
51 start_policy_agent NOPROXY $SIM_GROUP/$POLICY_AGENT_COMPOSE_DIR/$POLICY_AGENT_CONFIG_FILE
55 # Create service to be able to receive events when rics becomes available
56 # Must use rest towards the agent since dmaap is not configured yet
57 api_put_service 201 "ric-registration" 0 "$CR_SERVICE_APP_PATH_0/ric-registration"
59 # Start one RIC of each type
60 start_ric_simulators ricsim_g1 1 OSC_2.1.0
61 start_ric_simulators ricsim_g2 1 STD_1.1.3
62 if [ "$PMS_VERSION" == "V2" ]; then
63 start_ric_simulators ricsim_g3 1 STD_2.0.0
70 start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
72 if [ $consul_conf == "CONSUL" ]; then
76 prepare_consul_config NOSDNC ".consul_config.json"
78 if [ "$PMS_VERSION" == "V2" ] && [ $consul_conf == "NOCONSUL" ]; then
79 api_put_configuration 200 ".consul_config.json"
80 api_get_configuration 200 ".consul_config.json"
82 consul_config_app ".consul_config.json"
85 if [ "$PMS_VERSION" == "V2" ]; then
86 api_equal json:rics 3 300
88 cr_equal 0 received_callbacks 3 120
90 cr_api_check_all_sync_events 200 0 ric-registration ricsim_g1_1 ricsim_g2_1 ricsim_g3_1
92 api_equal json:rics 2 300
95 # Add an STD RIC and check
96 start_ric_simulators ricsim_g2 2 STD_1.1.3
98 prepare_consul_config NOSDNC ".consul_config.json"
99 if [ "$PMS_VERSION" == "V2" ] && [ $consul_conf == "NOCONSUL" ]; then
100 api_put_configuration 200 ".consul_config.json"
101 api_get_configuration 200 ".consul_config.json"
103 consul_config_app ".consul_config.json"
106 if [ "$PMS_VERSION" == "V2" ]; then
107 api_equal json:rics 4 120
109 cr_equal 0 received_callbacks 4 120
111 cr_api_check_all_sync_events 200 0 ric-registration ricsim_g2_2
113 api_equal json:rics 3 120
116 check_policy_agent_logs
119 # Remove one RIC RIC and check
120 start_ric_simulators ricsim_g2 1 STD_1.1.3
122 prepare_consul_config NOSDNC ".consul_config.json"
123 if [ "$PMS_VERSION" == "V2" ] && [ $consul_conf == "NOCONSUL" ]; then
124 api_put_configuration 200 ".consul_config.json"
125 api_get_configuration 200 ".consul_config.json"
127 consul_config_app ".consul_config.json"
130 if [ "$PMS_VERSION" == "V2" ]; then
131 api_equal json:rics 3 120
133 cr_equal 0 received_callbacks 4 120
135 api_equal json:rics 2 120
138 if [ "$PMS_VERSION" == "V2" ] && [ $consul_conf == "NOCONSUL" ]; then
139 api_get_configuration 200 ".consul_config.json"
142 check_policy_agent_logs
145 store_logs END_$consul_conf
149 #### TEST COMPLETE ####
154 auto_clean_environment