Merge "Add functions test cases for ECS"
[nonrtric.git] / test / auto-test / FTC10.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 TC_ONELINE_DESCR="Basic use case, register service, create/update policy, delete policy, de-register service using both STD and OSC interface while mixing REST and Dmaap"
21
22 #App names to include in the test, space separated list
23 INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM"
24
25 . ../common/testcase_common.sh $@
26 . ../common/agent_api_functions.sh
27 . ../common/ricsimulator_api_functions.sh
28
29 #### TEST BEGIN ####
30
31 generate_uuid
32
33 #Local vars in test script
34 ##########################
35 # Path to callback receiver
36 CR_PATH="http://$CR_APP_NAME:$CR_EXTERNAL_PORT/callbacks"
37
38 use_cr_http
39 use_simulator_http
40 use_mr_http
41 use_agent_rest_http
42
43
44 clean_containers
45
46 start_ric_simulators  ricsim_g1 3 OSC_2.1.0
47
48 start_ric_simulators  ricsim_g2 5 STD_1.1.3
49
50 start_mr
51
52 start_cr
53
54 start_consul_cbs
55
56 prepare_consul_config      NOSDNC  ".consul_config.json"
57 consul_config_app                  ".consul_config.json"
58
59 start_control_panel
60
61 start_policy_agent
62
63 set_agent_debug
64
65 use_agent_rest_http
66
67 api_get_status 200
68
69 sim_print ricsim_g1_1 interface
70
71 sim_print ricsim_g2_1 interface
72
73 sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
74
75 api_equal json:policy_types 2 60
76
77
78 # Create policies
79 use_agent_rest_http
80
81 api_put_service 201 "service1" 3600 "$CR_PATH/1"
82
83 api_put_policy 201 "service1" ricsim_g1_1 1 2000 NOTRANSIENT testdata/OSC/pi1_template.json 1
84
85 sim_equal ricsim_g1_1 num_instances 1
86
87
88 use_agent_dmaap_http
89
90 api_put_policy 201 "service1" ricsim_g1_1 1 3000 NOTRANSIENT testdata/OSC/pi1_template.json 1
91
92 sim_equal ricsim_g1_1 num_instances 2
93
94
95 use_agent_rest_http
96
97 api_put_policy 201 "service1" ricsim_g2_1 NOTYPE 2100 NOTRANSIENT testdata/STD/pi1_template.json 1
98
99 sim_equal ricsim_g2_1 num_instances 1
100
101
102 use_agent_dmaap_http
103
104 api_put_policy 201 "service1" ricsim_g2_1 NOTYPE 3100 NOTRANSIENT testdata/STD/pi1_template.json 1
105
106 sim_equal ricsim_g2_1 num_instances 2
107
108
109 #Update policies
110 use_agent_rest_http
111
112 api_put_service 200 "service1" 3600 "$CR_PATH/1"
113
114 api_put_policy 200 "service1" ricsim_g1_1 1 2000 NOTRANSIENT testdata/OSC/pi1_template.json 1
115
116 sim_equal ricsim_g1_1 num_instances 2
117
118
119 use_agent_dmaap_http
120
121 api_put_policy 200 "service1" ricsim_g1_1 1 3000 NOTRANSIENT testdata/OSC/pi1_template.json 1
122
123 sim_equal ricsim_g1_1 num_instances 2
124
125
126 use_agent_rest_http
127
128
129 api_put_policy 200 "service1" ricsim_g2_1 NOTYPE 2100 NOTRANSIENT testdata/STD/pi1_template.json 1
130
131 sim_equal ricsim_g2_1 num_instances 2
132
133
134 use_agent_dmaap_http
135
136 api_put_policy 200 "service1" ricsim_g2_1 NOTYPE 3100 NOTRANSIENT testdata/STD/pi1_template.json 1
137
138 sim_equal ricsim_g2_1 num_instances 2
139
140 # Check policies
141 api_get_policy 200 2000 testdata/OSC/pi1_template.json
142 api_get_policy 200 3000 testdata/OSC/pi1_template.json
143 api_get_policy 200 2100 testdata/STD/pi1_template.json
144 api_get_policy 200 3100 testdata/STD/pi1_template.json
145
146 # Remove policies
147
148 use_agent_dmaap_http
149 api_delete_policy 204 2000
150 use_agent_rest_http
151 api_delete_policy 204 3000
152 use_agent_dmaap_http
153 api_delete_policy 204 2100
154 use_agent_rest_http
155 api_delete_policy 204 3100
156
157 sim_equal ricsim_g1_1 num_instances 0
158 sim_equal ricsim_g2_1 num_instances 0
159
160 # Check remote host access to simulator
161
162 sim_contains_str ricsim_g1_1 remote_hosts "policy-agent"
163 sim_contains_str ricsim_g2_1 remote_hosts "policy-agent"
164
165 # Check policy removal
166 use_agent_rest_http
167 api_get_policy 404 2000
168 api_get_policy 404 3000
169 api_get_policy 404 2100
170 api_get_policy 404 3100
171
172 # Remove the service
173 use_agent_dmaap_http
174 api_delete_services 204 "service1"
175
176 api_get_services 404 "service1"
177
178
179
180 check_policy_agent_logs
181
182 #### TEST COMPLETE ####
183
184 store_logs          END
185
186 print_result
187
188 auto_clean_containers