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