Updated function test env with new tests and features
[nonrtric.git] / test / auto-test / FTC310.sh
1 #!/bin/bash
2
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
20
21 TC_ONELINE_DESCR="Resync of RIC via changes in the consul config"
22
23 #App names to exclude checking pulling images for, space separated list
24 EXCLUDED_IMAGES="SDNC_ONAP"
25
26 . ../common/testcase_common.sh  $@
27 . ../common/agent_api_functions.sh
28 . ../common/ricsimulator_api_functions.sh
29 . ../common/controller_api_functions.sh
30
31 #### TEST BEGIN ####
32
33
34 # Clean container and start all needed containers #
35 clean_containers
36
37 # Start one RIC of each type
38 start_ric_simulators ricsim_g1 1  OSC_2.1.0
39 start_ric_simulators ricsim_g2 1  STD_1.1.3
40
41 start_mr
42
43 start_cr
44
45 start_consul_cbs
46
47 prepare_consul_config      NOSDNC  ".consul_config.json"
48
49 consul_config_app                  ".consul_config.json"
50
51 start_control_panel
52
53 start_policy_agent
54
55 api_equal json:rics 2 120
56
57
58 # Add an OSC RIC and check
59 start_ric_simulators ricsim_g2 2  STD_1.1.3
60
61 prepare_consul_config      NOSDNC  ".consul_config.json"
62
63 consul_config_app                  ".consul_config.json"
64
65 api_equal json:rics 3 120
66
67 check_policy_agent_logs
68 check_control_panel_logs
69
70 # Remove one OSC RIC and check
71 start_ric_simulators ricsim_g2 1  STD_1.1.3
72
73 prepare_consul_config      NOSDNC  ".consul_config.json"
74
75 consul_config_app                  ".consul_config.json"
76
77 api_equal json:rics 2 120
78
79 check_policy_agent_logs
80 check_control_panel_logs
81
82 store_logs          END
83
84
85 #### TEST COMPLETE ####
86
87
88 print_result
89
90 auto_clean_containers