Functional Test Updates for I Release
[nonrtric.git] / test / auto-test / FTC310.sh
1 #!/bin/bash
2
3 #  ============LICENSE_START===============================================
4 #  Copyright (C) 2020-2023 Nordix Foundation. All rights reserved.
5 #  Copyright (C) 2023 OpenInfra Foundation Europe. All rights reserved.
6 #  ========================================================================
7 #  Licensed under the Apache License, Version 2.0 (the "License");
8 #  you may not use this file except in compliance with the License.
9 #  You may obtain a copy of the License at
10 #
11 #       http://www.apache.org/licenses/LICENSE-2.0
12 #
13 #  Unless required by applicable law or agreed to in writing, software
14 #  distributed under the License is distributed on an "AS IS" BASIS,
15 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 #  See the License for the specific language governing permissions and
17 #  limitations under the License.
18 #  ============LICENSE_END=================================================
19 #
20
21
22 TC_ONELINE_DESCR="Resync of RIC via changes in the pushed config"
23
24 #App names to include in the test when running docker, space separated list
25 DOCKER_INCLUDED_IMAGES="CP CR MR A1PMS RICSIM KUBEPROXY"
26
27 #Ignore image in DOCKER_INCLUDED_IMAGES, KUBE_INCLUDED_IMAGES if
28 #the image is not configured in the supplied env_file
29 #Used for images not applicable to all supported profile
30 CONDITIONALLY_IGNORED_IMAGES=""
31
32 #Supported test environment profiles
33 SUPPORTED_PROFILES="ONAP-KOHN ONAP-LONDON ONAP-MONTREAL  ORAN-G-RELEASE ORAN-H-RELEASE ORAN-I-RELEASE"
34 #Supported run modes
35 SUPPORTED_RUNMODES="DOCKER"
36
37 . ../common/testcase_common.sh $@
38
39 setup_testenvironment
40
41 #### TEST BEGIN ####
42
43 sim_generate_policy_uuid
44
45 # Clean container and start all needed containers #
46 clean_environment
47
48 start_kube_proxy
49
50 start_a1pms NOPROXY $SIM_GROUP/$A1PMS_COMPOSE_DIR/$A1PMS_CONFIG_FILE
51
52 set_a1pms_trace
53
54 # Create service to be able to receive events when rics becomes available
55 # Must use rest towards the a1pms since dmaap is not configured yet
56 a1pms_api_put_service 201 "ric-registration" 0 "$CR_SERVICE_APP_PATH_0/ric-registration"
57
58 # Start one RIC of each type
59 start_ric_simulators ricsim_g1 1  OSC_2.1.0
60 start_ric_simulators ricsim_g2 1  STD_1.1.3
61 start_ric_simulators ricsim_g3 1  STD_2.0.0
62
63 if [[ "$A1PMS_FEATURE_LEVEL" == *"NO-DMAAP"* ]]; then
64     :
65 else
66     start_mr
67 fi
68
69 start_cr 1
70
71 start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
72
73
74
75
76 prepare_a1pms_config      NOSDNC  ".a1pms_config.json"
77
78 a1pms_api_put_configuration 200 ".a1pms_config.json"
79 a1pms_api_get_configuration 200 ".a1pms_config.json"
80
81 a1pms_equal json:rics 3 300
82
83 cr_equal 0 received_callbacks 3 120
84
85 cr_api_check_all_sync_events 200 0 ric-registration ricsim_g1_1 ricsim_g2_1 ricsim_g3_1
86
87 # Add an STD RIC and check
88
89 start_ric_simulators ricsim_g2 2  STD_1.1.3
90
91 prepare_a1pms_config      NOSDNC  ".a1pms_config.json"
92 a1pms_api_put_configuration 200 ".a1pms_config.json"
93 a1pms_api_get_configuration 200 ".a1pms_config.json"
94
95 a1pms_equal json:rics 4 120
96
97 cr_equal 0 received_callbacks 4 120
98
99 cr_api_check_all_sync_events 200 0 ric-registration ricsim_g2_2
100
101 check_a1pms_logs
102
103 # Remove one RIC and check
104 start_ric_simulators ricsim_g2 1  STD_1.1.3
105
106 prepare_a1pms_config      NOSDNC  ".a1pms_config.json"
107 a1pms_api_put_configuration 200 ".a1pms_config.json"
108 a1pms_api_get_configuration 200 ".a1pms_config.json"
109
110 a1pms_equal json:rics 3 120
111
112 cr_equal 0 received_callbacks 4 120
113
114 if [ "$A1PMS_VERSION" == "V2" ]; then
115     a1pms_api_get_configuration 200 ".a1pms_config.json"
116 fi
117
118 check_a1pms_logs
119
120 store_logs          END_$consul_conf
121
122
123
124 #### TEST COMPLETE ####
125
126
127 print_result
128
129 auto_clean_environment