BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 1 | #!/bin/bash |
BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 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="Resync 10000 policies using OSC interface over REST" |
| 21 | |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 22 | #App names to exclude checking pulling images for, space separated list |
BjornMagnussonXA | bf3700b | 2020-10-05 08:39:40 +0200 | [diff] [blame^] | 23 | EXCLUDED_IMAGES="ECS" |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 24 | |
BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 25 | . ../common/testcase_common.sh $@ |
| 26 | . ../common/agent_api_functions.sh |
| 27 | . ../common/ricsimulator_api_functions.sh |
| 28 | |
| 29 | #### TEST BEGIN #### |
| 30 | |
BjornMagnussonXA | ad04778 | 2020-06-08 15:54:11 +0200 | [diff] [blame] | 31 | generate_uuid |
| 32 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 33 | # Tested variants of REST/DMAAP/SDNC config |
| 34 | TESTED_VARIANTS="REST DMAAP REST+SDNC DMAAP+SDNC DMAAP_BATCH DMAAP_BATCH+SDNC" |
| 35 | #Test agent and simulator protocol versions (others are http only) |
| 36 | TESTED_PROTOCOLS="HTTP HTTPS" |
| 37 | for __httpx in $TESTED_PROTOCOLS ; do |
| 38 | for interface in $TESTED_VARIANTS ; do |
BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 39 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 40 | echo "#####################################################################" |
| 41 | echo "#####################################################################" |
| 42 | echo "### Testing agent: "$interface" and "$__httpx |
| 43 | echo "#####################################################################" |
| 44 | echo "#####################################################################" |
BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 45 | |
BjornMagnussonXA | 496156d | 2020-08-10 14:16:24 +0200 | [diff] [blame] | 46 | if [ $__httpx == "HTTPS" ]; then |
BjornMagnussonXA | 496156d | 2020-08-10 14:16:24 +0200 | [diff] [blame] | 47 | CR_PATH="https://$CR_APP_NAME:$CR_EXTERNAL_SECURE_PORT/callbacks" |
| 48 | use_cr_https |
BjornMagnussonXA | bf3700b | 2020-10-05 08:39:40 +0200 | [diff] [blame^] | 49 | use_simulator_https |
| 50 | use_mr_https |
| 51 | if [[ $interface = *"SDNC"* ]]; then |
| 52 | use_sdnc_https |
| 53 | fi |
| 54 | if [[ $interface = *"DMAAP"* ]]; then |
| 55 | use_agent_dmaap_https |
| 56 | else |
| 57 | use_agent_rest_https |
| 58 | fi |
BjornMagnussonXA | 496156d | 2020-08-10 14:16:24 +0200 | [diff] [blame] | 59 | else |
BjornMagnussonXA | 496156d | 2020-08-10 14:16:24 +0200 | [diff] [blame] | 60 | CR_PATH="http://$CR_APP_NAME:$CR_EXTERNAL_PORT/callbacks" |
| 61 | use_cr_http |
BjornMagnussonXA | bf3700b | 2020-10-05 08:39:40 +0200 | [diff] [blame^] | 62 | use_simulator_http |
| 63 | use_mr_http |
| 64 | if [[ $interface = *"SDNC"* ]]; then |
| 65 | use_sdnc_http |
| 66 | fi |
| 67 | if [[ $interface = *"DMAAP"* ]]; then |
| 68 | use_agent_dmaap_http |
| 69 | else |
| 70 | use_agent_rest_http |
| 71 | fi |
BjornMagnussonXA | 496156d | 2020-08-10 14:16:24 +0200 | [diff] [blame] | 72 | fi |
BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 73 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 74 | # Clean container and start all needed containers # |
| 75 | clean_containers |
BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 76 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 77 | start_ric_simulators ricsim_g1 4 OSC_2.1.0 |
BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 78 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 79 | start_ric_simulators ricsim_g2 4 STD_1.1.3 |
BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 80 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 81 | start_mr |
BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 82 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 83 | start_cr |
BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 84 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 85 | start_consul_cbs |
BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 86 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 87 | if [[ $interface = *"SDNC"* ]]; then |
| 88 | start_sdnc |
BjornMagnussonXA | bf3700b | 2020-10-05 08:39:40 +0200 | [diff] [blame^] | 89 | prepare_consul_config SDNC ".consul_config.json" |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 90 | else |
| 91 | prepare_consul_config NOSDNC ".consul_config.json" |
| 92 | fi |
BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 93 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 94 | consul_config_app ".consul_config.json" |
BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 95 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 96 | start_control_panel |
BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 97 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 98 | start_policy_agent |
BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 99 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 100 | set_agent_debug |
BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 101 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 102 | api_get_status 200 |
BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 103 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 104 | sim_print ricsim_g1_1 interface |
BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 105 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 106 | sim_print ricsim_g2_1 interface |
BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 107 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 108 | sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json |
| 109 | |
| 110 | api_equal json:policy_types 2 120 #Wait for the agent to refresh types from the simulator |
| 111 | |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 112 | api_put_service 201 "serv1" 3600 "$CR_PATH/1" |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 113 | |
| 114 | START_ID=2000 |
| 115 | NUM_POLICIES=10000 |
| 116 | |
| 117 | if [[ $interface == *"BATCH"* ]]; then |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 118 | api_put_policy_batch 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT testdata/OSC/pi1_template.json $NUM_POLICIES |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 119 | else |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 120 | api_put_policy 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT testdata/OSC/pi1_template.json $NUM_POLICIES |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 121 | fi |
| 122 | |
| 123 | sim_equal ricsim_g1_1 num_instances 10000 |
| 124 | |
| 125 | sim_post_delete_instances 200 ricsim_g1_1 |
| 126 | |
| 127 | sim_equal ricsim_g1_1 num_instances 0 |
| 128 | |
| 129 | sim_equal ricsim_g1_1 num_instances 10000 300 |
| 130 | |
| 131 | START_ID=$(($START_ID+$NUM_POLICIES)) |
| 132 | |
| 133 | if [[ $interface == *"BATCH"* ]]; then |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 134 | api_put_policy_batch 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT testdata/STD/pi1_template.json $NUM_POLICIES |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 135 | else |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 136 | api_put_policy 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT testdata/STD/pi1_template.json $NUM_POLICIES |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 137 | fi |
| 138 | sim_equal ricsim_g2_1 num_instances 10000 |
| 139 | |
| 140 | sim_post_delete_instances 200 ricsim_g2_1 |
| 141 | |
| 142 | sim_equal ricsim_g2_1 num_instances 0 |
| 143 | |
| 144 | sim_equal ricsim_g2_1 num_instances 10000 300 |
| 145 | |
| 146 | api_delete_policy 204 2435 |
| 147 | |
| 148 | api_delete_policy 204 8693 |
| 149 | |
| 150 | sim_post_delete_instances 200 ricsim_g1_1 |
| 151 | |
| 152 | sim_equal ricsim_g1_1 num_instances 9998 300 |
| 153 | |
| 154 | api_delete_policy 204 12435 |
| 155 | |
| 156 | api_delete_policy 204 18693 |
| 157 | |
| 158 | api_delete_policy 204 18697 |
| 159 | |
| 160 | sim_post_delete_instances 200 ricsim_g2_1 |
| 161 | |
| 162 | sim_equal ricsim_g1_1 num_instances 9998 300 |
| 163 | |
| 164 | sim_equal ricsim_g2_1 num_instances 9997 300 |
| 165 | |
| 166 | api_equal json:policies 19995 |
| 167 | |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 168 | check_policy_agent_logs |
| 169 | |
| 170 | store_logs "${__httpx}__${interface}" |
| 171 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 172 | done |
| 173 | |
| 174 | done |
BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 175 | |
| 176 | |
BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 177 | #### TEST COMPLETE #### |
| 178 | |
BjornMagnussonXA | 80a9200 | 2020-03-19 14:31:06 +0100 | [diff] [blame] | 179 | |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 180 | print_result |
| 181 | |
| 182 | auto_clean_containers |