Add functions test cases for ECS
[nonrtric.git] / test / auto-test / FTC900.sh
1 #!/usr/bin/env 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="Preparation for test of the Control Panel and the Health Check app - populating a number of ric simulators with types and instances"
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 #Local vars in test script
32 ##########################
33 # Path to callback receiver
34 CR_PATH="http://$CR_APP_NAME:$CR_EXTERNAL_PORT/callbacks"
35 use_cr_http
36
37 clean_containers
38
39 OSC_NUM_RICS=6
40 STD_NUM_RICS=5
41
42 start_ric_simulators  $RIC_SIM_PREFIX"_g1" $OSC_NUM_RICS OSC_2.1.0
43
44 start_ric_simulators  $RIC_SIM_PREFIX"_g2" $STD_NUM_RICS STD_1.1.3
45
46 start_mr #Just to prevent errors in the agent log...
47
48 start_control_panel
49
50 start_consul_cbs
51
52 prepare_consul_config      NOSDNC  ".consul_config.json"
53 consul_config_app                  ".consul_config.json"
54
55 start_policy_agent
56
57 use_agent_rest_http
58
59 api_get_status 200
60
61 # Print the A1 version for OSC
62 for ((i=1; i<=$OSC_NUM_RICS; i++))
63 do
64     sim_print $RIC_SIM_PREFIX"_g1_"$i interface
65 done
66
67
68 # Print the A1 version for STD
69 for ((i=1; i<=$STD_NUM_RICS; i++))
70 do
71     sim_print $RIC_SIM_PREFIX"_g2_"$i interface
72 done
73
74
75 # Load the polictypes in osc
76 for ((i=1; i<=$OSC_NUM_RICS; i++))
77 do
78     sim_put_policy_type 201 $RIC_SIM_PREFIX"_g1_"$i 2 testdata/OSC/sim_hw.json
79     sim_put_policy_type 201 $RIC_SIM_PREFIX"_g1_"$i 100 testdata/OSC/sim_qos.json
80     sim_put_policy_type 201 $RIC_SIM_PREFIX"_g1_"$i 20008 testdata/OSC/sim_tsa.json
81 done
82
83
84 #Check the number of schemas and the individual schemas in OSC
85 api_equal json:policy_types 4 120
86
87 for ((i=1; i<=$OSC_NUM_RICS; i++))
88 do
89     api_equal json:policy_types?ric=$RIC_SIM_PREFIX"_g1_"$i 3 120
90 done
91
92 # Check the schemas in OSC
93 for ((i=1; i<=$OSC_NUM_RICS; i++))
94 do
95     api_get_policy_schema 200 2 testdata/OSC/hw-agent-modified.json
96     api_get_policy_schema 200 100 testdata/OSC/qos-agent-modified.json
97     api_get_policy_schema 200 20008 testdata/OSC/tsa-agent-modified.json
98 done
99
100
101 # Create policies
102 use_agent_rest_http
103
104 api_put_service 201 "Emergency-response-app" 0 "$CR_PATH/1"
105
106 # Create policies in OSC
107 for ((i=1; i<=$OSC_NUM_RICS; i++))
108 do
109     generate_uuid
110     api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g1_"$i 2 $((2000+$i)) NOTRANSIENT testdata/OSC/pihw_template.json 1
111     generate_uuid
112     api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g1_"$i 100 $((3000+$i)) NOTRANSIENT testdata/OSC/piqos_template.json 1
113     generate_uuid
114     api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g1_"$i 20008 $((4000+$i)) NOTRANSIENT testdata/OSC/pitsa_template.json 1
115 done
116
117
118 # Check the number of policies in OSC
119 for ((i=1; i<=$OSC_NUM_RICS; i++))
120 do
121     sim_equal $RIC_SIM_PREFIX"_g1_"$i num_instances 3
122 done
123
124
125 # Create policies in STD
126 for ((i=1; i<=$STD_NUM_RICS; i++))
127 do
128     generate_uuid
129     api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g2_"$i NOTYPE $((2100+$i)) NOTRANSIENT testdata/STD/pi1_template.json 1
130 done
131
132
133 # Check the number of policies in STD
134 for ((i=1; i<=$STD_NUM_RICS; i++))
135 do
136     sim_equal $RIC_SIM_PREFIX"_g2_"$i num_instances 1
137 done
138
139 check_policy_agent_logs
140
141 #### TEST COMPLETE ####
142
143 store_logs          END
144
145 print_result