Merge "Step version for release"
[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="Testing of the Control Panel and the Health Check app - populating with types and instances"
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 OSC_NUM_RICS=6
39 STD_NUM_RICS=5
40
41 start_ric_simulators  ricsim_g1 $OSC_NUM_RICS OSC_2.1.0
42
43 start_ric_simulators  ricsim_g2 $STD_NUM_RICS STD_1.1.3
44
45 start_mr #Just to prevent errors in the agent log...
46
47 start_control_panel
48
49 start_consul_cbs
50
51 prepare_consul_config      NOSDNC  ".consul_config.json"
52 consul_config_app                  ".consul_config.json"
53
54 start_policy_agent
55
56 use_agent_rest_http
57
58 api_get_status 200
59
60 # Print the A1 version for OSC
61 for ((i=1; i<=$OSC_NUM_RICS; i++))
62 do
63     sim_print ricsim_g1_$i interface
64 done
65
66
67 # Print the A1 version for STD
68 for ((i=1; i<=$STD_NUM_RICS; i++))
69 do
70     sim_print ricsim_g2_$i interface
71 done
72
73
74 # Load the polictypes in osc
75 for ((i=1; i<=$OSC_NUM_RICS; i++))
76 do
77     sim_put_policy_type 201 ricsim_g1_$i 2 testdata/OSC/sim_hw.json
78     sim_put_policy_type 201 ricsim_g1_$i 20008 testdata/OSC/sim_tsa.json
79 done
80
81
82 #Check the number of schemas and the individual schemas in OSC
83 api_equal json:policy_types 3 120
84
85 for ((i=1; i<=$OSC_NUM_RICS; i++))
86 do
87     api_equal json:policy_types?ric=ricsim_g1_$i 2 120
88 done
89
90 # Check the schemas in OSC
91 for ((i=1; i<=$OSC_NUM_RICS; i++))
92 do
93     api_get_policy_schema 200 2 testdata/OSC/hw-agent-modified.json
94     api_get_policy_schema 200 20008 testdata/OSC/tsa-agent-modified.json
95 done
96
97
98 # Create policies
99 use_agent_rest_http
100
101 api_put_service 201 "rapp1" 0 "$CR_PATH/1"
102
103 # Create policies in OSC
104 for ((i=1; i<=$OSC_NUM_RICS; i++))
105 do
106     api_put_policy 201 "rapp1" ricsim_g1_$i 2 $((2000+$i)) NOTRANSIENT testdata/OSC/pihw_template.json 1
107     api_put_policy 201 "rapp1" ricsim_g1_$i 20008 $((2050+$i*10)) NOTRANSIENT testdata/OSC/pitsa_template.json 1
108 done
109
110
111 # Check the number of policies in OSC
112 for ((i=1; i<=$OSC_NUM_RICS; i++))
113 do
114     sim_equal ricsim_g1_$i num_instances 2
115 done
116
117
118 # Create policies in STD
119 for ((i=1; i<=$STD_NUM_RICS; i++))
120 do
121     api_put_policy 201 "rapp1" ricsim_g2_$i NOTYPE $((2100+$i)) NOTRANSIENT testdata/STD/pi1_template.json 1
122 done
123
124
125 # Check the number of policies in STD
126 for ((i=1; i<=$STD_NUM_RICS; i++))
127 do
128     sim_equal ricsim_g2_$i num_instances 1
129 done
130
131 check_policy_agent_logs
132
133 #### TEST COMPLETE ####
134
135 store_logs          END
136
137 print_result