blob: a7360d015f961ef08e1e0237e46c148e02ae9fb5 [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
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010021TC_ONELINE_DESCR="Resync of RIC via changes in the consul config or pushed config"
BjornMagnussonXA80a92002020-03-19 14:31:06 +010022
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010023#App names to include in the test when running docker, space separated list
BjornMagnussonXA663566c2021-11-08 10:25:07 +010024DOCKER_INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM NGW KUBEPROXY"
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +010025
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010026#Supported test environment profiles
BjornMagnussonXAe60d04e2021-12-27 13:38:01 +010027SUPPORTED_PROFILES="ONAP-GUILIN ONAP-HONOLULU ONAP-ISTANBUL ONAP-JAKARTA ORAN-CHERRY ORAN-D-RELEASE ORAN-E-RELEASE ORAN-F-RELEASE"
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010028#Supported run modes
29SUPPORTED_RUNMODES="DOCKER"
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +020030
BjornMagnussonXA79e37002021-11-22 13:36:04 +010031. ../common/testcase_common.sh $@
BjornMagnussonXA80a92002020-03-19 14:31:06 +010032
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010033setup_testenvironment
34
BjornMagnussonXA80a92002020-03-19 14:31:06 +010035#### TEST BEGIN ####
36
BjornMagnussonXA4207b832020-11-03 09:52:49 +010037if [ "$PMS_VERSION" == "V2" ]; then
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010038 TESTED_VARIANTS="CONSUL NOCONSUL"
BjornMagnussonXA4207b832020-11-03 09:52:49 +010039else
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010040 TESTED_VARIANTS="CONSUL"
BjornMagnussonXA4207b832020-11-03 09:52:49 +010041fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +010042
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010043for consul_conf in $TESTED_VARIANTS ; do
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010044 generate_policy_uuid
BjornMagnussonXA80a92002020-03-19 14:31:06 +010045
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010046 # Clean container and start all needed containers #
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010047 clean_environment
BjornMagnussonXA80a92002020-03-19 14:31:06 +010048
BjornMagnussonXA663566c2021-11-08 10:25:07 +010049 start_kube_proxy
50
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010051 start_policy_agent NOPROXY $SIM_GROUP/$POLICY_AGENT_COMPOSE_DIR/$POLICY_AGENT_CONFIG_FILE
BjornMagnussonXA80a92002020-03-19 14:31:06 +010052
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010053 set_agent_trace
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +010054
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010055 # 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
BjornMagnussonXA79e37002021-11-22 13:36:04 +010057 api_put_service 201 "ric-registration" 0 "$CR_SERVICE_APP_PATH_0/ric-registration"
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +010058
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010059 # 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
64 fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +010065
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010066 start_mr
BjornMagnussonXA80a92002020-03-19 14:31:06 +010067
BjornMagnussonXA79e37002021-11-22 13:36:04 +010068 start_cr 1
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020069
BjornMagnussonXAfec823b2021-08-03 14:14:05 +020070 start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020071
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010072 if [ $consul_conf == "CONSUL" ]; then
73 start_consul_cbs
74 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020075
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010076 prepare_consul_config NOSDNC ".consul_config.json"
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +010077
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010078 if [ "$PMS_VERSION" == "V2" ] && [ $consul_conf == "NOCONSUL" ]; then
79 api_put_configuration 200 ".consul_config.json"
80 api_get_configuration 200 ".consul_config.json"
81 else
82 consul_config_app ".consul_config.json"
83 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020084
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010085 if [ "$PMS_VERSION" == "V2" ]; then
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010086 api_equal json:rics 3 300
BjornMagnussonXA80a92002020-03-19 14:31:06 +010087
BjornMagnussonXA79e37002021-11-22 13:36:04 +010088 cr_equal 0 received_callbacks 3 120
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010089
BjornMagnussonXA79e37002021-11-22 13:36:04 +010090 cr_api_check_all_sync_events 200 0 ric-registration ricsim_g1_1 ricsim_g2_1 ricsim_g3_1
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010091 else
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010092 api_equal json:rics 2 300
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010093 fi
94
95 # Add an STD RIC and check
96 start_ric_simulators ricsim_g2 2 STD_1.1.3
97
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"
102 else
103 consul_config_app ".consul_config.json"
104 fi
105
106 if [ "$PMS_VERSION" == "V2" ]; then
107 api_equal json:rics 4 120
108
BjornMagnussonXA79e37002021-11-22 13:36:04 +0100109 cr_equal 0 received_callbacks 4 120
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100110
BjornMagnussonXA79e37002021-11-22 13:36:04 +0100111 cr_api_check_all_sync_events 200 0 ric-registration ricsim_g2_2
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100112 else
113 api_equal json:rics 3 120
114 fi
115
116 check_policy_agent_logs
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100117
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100118
119 # Remove one RIC RIC and check
120 start_ric_simulators ricsim_g2 1 STD_1.1.3
121
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"
126 else
127 consul_config_app ".consul_config.json"
128 fi
129
130 if [ "$PMS_VERSION" == "V2" ]; then
131 api_equal json:rics 3 120
132
BjornMagnussonXA79e37002021-11-22 13:36:04 +0100133 cr_equal 0 received_callbacks 4 120
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100134 else
135 api_equal json:rics 2 120
136 fi
137
138 if [ "$PMS_VERSION" == "V2" ] && [ $consul_conf == "NOCONSUL" ]; then
139 api_get_configuration 200 ".consul_config.json"
140 fi
141
142 check_policy_agent_logs
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100143 check_sdnc_logs
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100144
145 store_logs END_$consul_conf
146done
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100147
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200148
149#### TEST COMPLETE ####
150
151
152print_result
153
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100154auto_clean_environment