blob: bf5785ef035023d80135dcd3cc2f09fcefc9b22d [file] [log] [blame]
BjornMagnussonXA70e878f2020-05-11 14:11:30 +02001#!/bin/bash
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002
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
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020020
21TC_ONELINE_DESCR="Resync of RIC via changes in the consul config"
BjornMagnussonXA80a92002020-03-19 14:31:06 +010022
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +020023#App names to include in the test, space separated list
24INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM SDNC"
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +020025
BjornMagnussonXA80a92002020-03-19 14:31:06 +010026. ../common/testcase_common.sh $@
27. ../common/agent_api_functions.sh
28. ../common/ricsimulator_api_functions.sh
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020029. ../common/controller_api_functions.sh
BjornMagnussonXA80a92002020-03-19 14:31:06 +010030
31#### TEST BEGIN ####
32
BjornMagnussonXAad047782020-06-08 15:54:11 +020033generate_uuid
BjornMagnussonXA80a92002020-03-19 14:31:06 +010034
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020035# Clean container and start all needed containers #
BjornMagnussonXA80a92002020-03-19 14:31:06 +010036clean_containers
37
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020038# Start one RIC of each type
39start_ric_simulators ricsim_g1 1 OSC_2.1.0
40start_ric_simulators ricsim_g2 1 STD_1.1.3
BjornMagnussonXA4207b832020-11-03 09:52:49 +010041if [ "$PMS_VERSION" == "V2" ]; then
42 start_ric_simulators ricsim_g3 1 STD_2.0.0
43fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +010044
45start_mr
46
47start_cr
48
49start_consul_cbs
50
51prepare_consul_config NOSDNC ".consul_config.json"
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020052
BjornMagnussonXA80a92002020-03-19 14:31:06 +010053consul_config_app ".consul_config.json"
54
55start_control_panel
56
57start_policy_agent
58
BjornMagnussonXA4207b832020-11-03 09:52:49 +010059if [ "$PMS_VERSION" == "V2" ]; then
60 api_equal json:rics 3 120
61else
62 api_equal json:rics 2 120
63fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +010064
65
BjornMagnussonXA4207b832020-11-03 09:52:49 +010066# Add an STD RIC and check
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020067start_ric_simulators ricsim_g2 2 STD_1.1.3
BjornMagnussonXA80a92002020-03-19 14:31:06 +010068
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020069prepare_consul_config NOSDNC ".consul_config.json"
BjornMagnussonXA80a92002020-03-19 14:31:06 +010070
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020071consul_config_app ".consul_config.json"
BjornMagnussonXA80a92002020-03-19 14:31:06 +010072
BjornMagnussonXA4207b832020-11-03 09:52:49 +010073if [ "$PMS_VERSION" == "V2" ]; then
74 api_equal json:rics 4 120
75else
76 api_equal json:rics 3 120
77fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +010078
79check_policy_agent_logs
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020080check_control_panel_logs
BjornMagnussonXA80a92002020-03-19 14:31:06 +010081
BjornMagnussonXA4207b832020-11-03 09:52:49 +010082# Remove one RIC RIC and check
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020083start_ric_simulators ricsim_g2 1 STD_1.1.3
84
85prepare_consul_config NOSDNC ".consul_config.json"
86
87consul_config_app ".consul_config.json"
88
BjornMagnussonXA4207b832020-11-03 09:52:49 +010089if [ "$PMS_VERSION" == "V2" ]; then
90 api_equal json:rics 3 120
91else
92 api_equal json:rics 2 120
93fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020094
95check_policy_agent_logs
96check_control_panel_logs
BjornMagnussonXA80a92002020-03-19 14:31:06 +010097
98store_logs END
99
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200100
101#### TEST COMPLETE ####
102
103
104print_result
105
106auto_clean_containers