blob: 18d681633f740e6c8d9663fc764c3b7e719bd723 [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
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +020023#App names to exclude checking pulling images for, space separated list
24EXCLUDED_IMAGES="SDNC_ONAP"
25
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
BjornMagnussonXA80a92002020-03-19 14:31:06 +010033
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020034# Clean container and start all needed containers #
BjornMagnussonXA80a92002020-03-19 14:31:06 +010035clean_containers
36
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020037# Start one RIC of each type
38start_ric_simulators ricsim_g1 1 OSC_2.1.0
39start_ric_simulators ricsim_g2 1 STD_1.1.3
BjornMagnussonXA80a92002020-03-19 14:31:06 +010040
41start_mr
42
43start_cr
44
45start_consul_cbs
46
47prepare_consul_config NOSDNC ".consul_config.json"
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020048
BjornMagnussonXA80a92002020-03-19 14:31:06 +010049consul_config_app ".consul_config.json"
50
51start_control_panel
52
53start_policy_agent
54
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020055api_equal json:rics 2 120
BjornMagnussonXA80a92002020-03-19 14:31:06 +010056
57
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020058# Add an OSC RIC and check
59start_ric_simulators ricsim_g2 2 STD_1.1.3
BjornMagnussonXA80a92002020-03-19 14:31:06 +010060
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020061prepare_consul_config NOSDNC ".consul_config.json"
BjornMagnussonXA80a92002020-03-19 14:31:06 +010062
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020063consul_config_app ".consul_config.json"
BjornMagnussonXA80a92002020-03-19 14:31:06 +010064
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020065api_equal json:rics 3 120
BjornMagnussonXA80a92002020-03-19 14:31:06 +010066
67check_policy_agent_logs
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020068check_control_panel_logs
BjornMagnussonXA80a92002020-03-19 14:31:06 +010069
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020070# Remove one OSC RIC and check
71start_ric_simulators ricsim_g2 1 STD_1.1.3
72
73prepare_consul_config NOSDNC ".consul_config.json"
74
75consul_config_app ".consul_config.json"
76
77api_equal json:rics 2 120
78
79check_policy_agent_logs
80check_control_panel_logs
BjornMagnussonXA80a92002020-03-19 14:31:06 +010081
82store_logs END
83
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020084
85#### TEST COMPLETE ####
86
87
88print_result
89
90auto_clean_containers