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"
23 #App names to include in the test, space separated list
24 INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM SDNC"
26 . ../common/testcase_common.sh $@
27 . ../common/agent_api_functions.sh
28 . ../common/ricsimulator_api_functions.sh
29 . ../common/controller_api_functions.sh
35 # Clean container and start all needed containers #
38 # Start one RIC of each type
39 start_ric_simulators ricsim_g1 1 OSC_2.1.0
40 start_ric_simulators ricsim_g2 1 STD_1.1.3
41 if [ "$PMS_VERSION" == "V2" ]; then
42 start_ric_simulators ricsim_g3 1 STD_2.0.0
51 prepare_consul_config NOSDNC ".consul_config.json"
53 consul_config_app ".consul_config.json"
59 if [ "$PMS_VERSION" == "V2" ]; then
60 api_equal json:rics 3 120
62 api_equal json:rics 2 120
66 # Add an STD RIC and check
67 start_ric_simulators ricsim_g2 2 STD_1.1.3
69 prepare_consul_config NOSDNC ".consul_config.json"
71 consul_config_app ".consul_config.json"
73 if [ "$PMS_VERSION" == "V2" ]; then
74 api_equal json:rics 4 120
76 api_equal json:rics 3 120
79 check_policy_agent_logs
80 check_control_panel_logs
82 # Remove one RIC RIC and check
83 start_ric_simulators ricsim_g2 1 STD_1.1.3
85 prepare_consul_config NOSDNC ".consul_config.json"
87 consul_config_app ".consul_config.json"
89 if [ "$PMS_VERSION" == "V2" ]; then
90 api_equal json:rics 3 120
92 api_equal json:rics 2 120
95 check_policy_agent_logs
96 check_control_panel_logs
101 #### TEST COMPLETE ####
106 auto_clean_containers