Merge "Adapted test scripts to changes in PMS 2.0"
[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 include in the test, space separated list
24 INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM"
25
26 #SUPPORTED TEST ENV FILE
27 SUPPORTED_PROFILES="ONAP-MASTER ONAP-GUILIN"
28
29 . ../common/testcase_common.sh  $@
30 . ../common/agent_api_functions.sh
31 . ../common/ricsimulator_api_functions.sh
32 . ../common/cr_api_functions.sh
33
34 #### TEST BEGIN ####
35
36 generate_uuid
37
38 # Clean container and start all needed containers #
39 clean_containers
40
41 start_policy_agent
42
43 set_agent_trace
44
45 # Create service to be able to receive events when rics becomes available
46 # Must use rest towards the agent since dmaap is not configured yet
47 api_put_service 201 "ric-registration" 0 "$CR_PATH/ric-registration"
48
49 # Start one RIC of each type
50 start_ric_simulators ricsim_g1 1  OSC_2.1.0
51 start_ric_simulators ricsim_g2 1  STD_1.1.3
52 if [ "$PMS_VERSION" == "V2" ]; then
53     start_ric_simulators ricsim_g3 1  STD_2.0.0
54 fi
55
56 start_mr
57
58 start_cr
59
60 start_consul_cbs
61
62 start_control_panel
63
64 prepare_consul_config      NOSDNC  ".consul_config.json"
65
66 consul_config_app                  ".consul_config.json"
67
68 if [ "$PMS_VERSION" == "V2" ]; then
69     api_equal json:rics 3 120
70
71     cr_equal received_callbacks 3 120
72
73     cr_api_check_all_sync_events 200 ric-registration ricsim_g1_1 ricsim_g2_1 ricsim_g3_1
74 else
75     api_equal json:rics 2 120
76 fi
77
78 # Add an STD RIC and check
79 start_ric_simulators ricsim_g2 2  STD_1.1.3
80
81 prepare_consul_config      NOSDNC  ".consul_config.json"
82
83 consul_config_app                  ".consul_config.json"
84
85 if [ "$PMS_VERSION" == "V2" ]; then
86     api_equal json:rics 4 120
87
88     cr_equal received_callbacks 4 120
89
90     cr_api_check_all_sync_events 200 ric-registration ricsim_g2_2
91 else
92     api_equal json:rics 3 120
93 fi
94
95 check_policy_agent_logs
96 check_control_panel_logs
97
98 # Remove one RIC RIC and check
99 start_ric_simulators ricsim_g2 1  STD_1.1.3
100
101 prepare_consul_config      NOSDNC  ".consul_config.json"
102
103 consul_config_app                  ".consul_config.json"
104
105 if [ "$PMS_VERSION" == "V2" ]; then
106     api_equal json:rics 3 120
107
108     cr_equal received_callbacks 4 120
109 else
110     api_equal json:rics 2 120
111 fi
112
113 check_policy_agent_logs
114 check_control_panel_logs
115
116 store_logs          END
117
118
119 #### TEST COMPLETE ####
120
121
122 print_result
123
124 auto_clean_containers