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