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