Removal of older test profiles
[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 pushed config"
22
23 #App names to include in the test when running docker, space separated list
24 DOCKER_INCLUDED_IMAGES="CP CR MR A1PMS RICSIM KUBEPROXY"
25
26 #Ignore image in DOCKER_INCLUDED_IMAGES, KUBE_INCLUDED_IMAGES if
27 #the image is not configured in the supplied env_file
28 #Used for images not applicable to all supported profile
29 CONDITIONALLY_IGNORED_IMAGES=""
30
31 #Supported test environment profiles
32 SUPPORTED_PROFILES="ONAP-JAKARTA ONAP-KOHN ONAP-LONDON  ORAN-F-RELEASE ORAN-G-RELEASE ORAN-H-RELEASE"
33 #Supported run modes
34 SUPPORTED_RUNMODES="DOCKER"
35
36 . ../common/testcase_common.sh $@
37
38 setup_testenvironment
39
40 #### TEST BEGIN ####
41
42 generate_policy_uuid
43
44 # Clean container and start all needed containers #
45 clean_environment
46
47 start_kube_proxy
48
49 start_a1pms NOPROXY $SIM_GROUP/$A1PMS_COMPOSE_DIR/$A1PMS_CONFIG_FILE
50
51 set_a1pms_trace
52
53 # Create service to be able to receive events when rics becomes available
54 # Must use rest towards the a1pms since dmaap is not configured yet
55 a1pms_api_put_service 201 "ric-registration" 0 "$CR_SERVICE_APP_PATH_0/ric-registration"
56
57 # Start one RIC of each type
58 start_ric_simulators ricsim_g1 1  OSC_2.1.0
59 start_ric_simulators ricsim_g2 1  STD_1.1.3
60 start_ric_simulators ricsim_g3 1  STD_2.0.0
61
62 start_mr
63
64 start_cr 1
65
66 start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
67
68
69
70
71 prepare_a1pms_config      NOSDNC  ".a1pms_config.json"
72
73 a1pms_api_put_configuration 200 ".a1pms_config.json"
74 a1pms_api_get_configuration 200 ".a1pms_config.json"
75
76 a1pms_equal json:rics 3 300
77
78 cr_equal 0 received_callbacks 3 120
79
80 cr_api_check_all_sync_events 200 0 ric-registration ricsim_g1_1 ricsim_g2_1 ricsim_g3_1
81
82 # Add an STD RIC and check
83 start_ric_simulators ricsim_g2 2  STD_1.1.3
84
85 prepare_a1pms_config      NOSDNC  ".a1pms_config.json"
86 a1pms_api_put_configuration 200 ".a1pms_config.json"
87 a1pms_api_get_configuration 200 ".a1pms_config.json"
88
89 a1pms_equal json:rics 4 120
90
91 cr_equal 0 received_callbacks 4 120
92
93 cr_api_check_all_sync_events 200 0 ric-registration ricsim_g2_2
94
95 check_a1pms_logs
96
97
98 # Remove one RIC RIC and check
99 start_ric_simulators ricsim_g2 1  STD_1.1.3
100
101 prepare_a1pms_config      NOSDNC  ".a1pms_config.json"
102 a1pms_api_put_configuration 200 ".a1pms_config.json"
103 a1pms_api_get_configuration 200 ".a1pms_config.json"
104
105 a1pms_equal json:rics 3 120
106
107 cr_equal 0 received_callbacks 4 120
108
109 if [ "$A1PMS_VERSION" == "V2" ]; then
110     a1pms_api_get_configuration 200 ".a1pms_config.json"
111 fi
112
113 check_a1pms_logs
114
115 store_logs          END_$consul_conf
116
117
118
119 #### TEST COMPLETE ####
120
121
122 print_result
123
124 auto_clean_environment