BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 1 | #!/bin/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="Create 10000 policies in sequence using http/https and Agent REST/DMAAP with/without SDNC controller" |
| 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 | 70e878f | 2020-05-11 14:11:30 +0200 | [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 | #Local vars in test script |
| 34 | ########################## |
| 35 | # Path to callback receiver |
| 36 | CR_PATH="http://$CR_APP_NAME:$CR_EXTERNAL_PORT/callbacks" |
| 37 | # Number of policies in each sequence |
| 38 | NUM_POLICIES=10000 |
| 39 | |
| 40 | # Tested variants of REST/DMAAP/SDNC config |
| 41 | TESTED_VARIANTS="NOSDNC SDNC" |
| 42 | |
| 43 | #Test agent and simulator protocol versions (others are http only) |
| 44 | TESTED_PROTOCOLS="HTTP HTTPS" |
| 45 | for __httpx in $TESTED_PROTOCOLS ; do |
| 46 | for interface in $TESTED_VARIANTS ; do |
| 47 | |
| 48 | echo "#####################################################################" |
| 49 | echo "#####################################################################" |
| 50 | echo "### Testing agent via $interface using $__httpx" |
| 51 | echo "#####################################################################" |
| 52 | echo "#####################################################################" |
| 53 | |
| 54 | # Policy instance start id |
| 55 | START_ID=1 |
| 56 | |
| 57 | clean_containers |
| 58 | |
| 59 | if [ $__httpx == "HTTPS" ]; then |
| 60 | #"Using secure ports towards simulators" |
| 61 | use_simulator_https |
| 62 | else |
| 63 | #"Using non-secure ports towards simulators" |
| 64 | use_simulator_http |
| 65 | fi |
| 66 | |
| 67 | start_ric_simulators ricsim_g1 1 OSC_2.1.0 |
| 68 | start_ric_simulators ricsim_g2 1 STD_1.1.3 |
| 69 | |
| 70 | start_mr |
| 71 | |
| 72 | if [ $__httpx == "HTTPS" ]; then |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 73 | #echo "Using secure ports between agent and MR" |
BjornMagnussonXA | 0f9d517 | 2020-06-17 15:43:39 +0200 | [diff] [blame] | 74 | use_mr_https |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 75 | else |
| 76 | #"Using non-secure ports between agent and MR" |
| 77 | use_mr_http |
| 78 | fi |
| 79 | |
| 80 | start_cr |
| 81 | |
| 82 | if [ $interface == "SDNC" ]; then |
| 83 | |
| 84 | start_sdnc |
| 85 | |
| 86 | if [ $__httpx == "HTTPS" ]; then |
| 87 | # "Using secure ports towards SDNC" |
| 88 | use_sdnc_https |
| 89 | else |
| 90 | #"Using non-secure ports towards SDNC" |
| 91 | use_sdnc_http |
| 92 | fi |
| 93 | fi |
| 94 | |
| 95 | start_consul_cbs |
| 96 | |
| 97 | if [ $interface == "SDNC" ]; then |
| 98 | prepare_consul_config SDNC ".consul_config.json" |
| 99 | else |
| 100 | prepare_consul_config NOSDNC ".consul_config.json" |
| 101 | fi |
| 102 | |
| 103 | consul_config_app ".consul_config.json" |
| 104 | |
| 105 | start_control_panel |
| 106 | |
| 107 | start_policy_agent |
| 108 | |
| 109 | set_agent_debug |
| 110 | |
| 111 | if [ $__httpx == "HTTPS" ]; then |
| 112 | # "Using secure ports towards the agent" |
| 113 | use_agent_rest_https |
| 114 | else |
| 115 | # "Using non-secure ports towards the agent" |
| 116 | use_agent_rest_http |
| 117 | fi |
| 118 | |
| 119 | |
| 120 | cr_equal received_callbacks 0 |
| 121 | mr_equal requests_submitted 0 |
| 122 | |
| 123 | |
| 124 | api_get_status 200 |
| 125 | |
| 126 | sim_print ricsim_g1_1 interface |
| 127 | sim_print ricsim_g2_1 interface |
| 128 | |
| 129 | sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json |
| 130 | |
| 131 | |
| 132 | api_equal json:policy_types 2 120 #Wait for the agent to refresh types from the simulators |
| 133 | |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 134 | api_put_service 201 "serv1" 3600 "$CR_PATH/1" |
BjornMagnussonXA | 70e878f | 2020-05-11 14:11:30 +0200 | [diff] [blame] | 135 | |
| 136 | start_timer "Create polices in OSC via agent REST and $interface using "$__httpx |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 137 | 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] | 138 | print_timer "Create polices in OSC via agent REST and $interface using "$__httpx |
| 139 | |
| 140 | sim_equal ricsim_g1_1 num_instances $NUM_POLICIES |
| 141 | |
| 142 | START_ID=$(($START_ID+$NUM_POLICIES)) |
| 143 | |
| 144 | start_timer "Create polices in STD via agent REST and $interface using "$__httpx |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 145 | 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] | 146 | print_timer "Create polices in STD via agent REST and $interface using "$__httpx |
| 147 | |
| 148 | sim_equal ricsim_g2_1 num_instances $NUM_POLICIES |
| 149 | |
| 150 | use_agent_dmaap |
| 151 | |
| 152 | START_ID=$(($START_ID+$NUM_POLICIES)) |
| 153 | |
| 154 | start_timer "Create polices in OSC via agent DMAAP, one by one, and $interface using "$__httpx |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 155 | 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] | 156 | print_timer "Create polices in OSC via agent DMAAP, one by one, and $interface using "$__httpx |
| 157 | |
| 158 | sim_equal ricsim_g1_1 num_instances $((2*$NUM_POLICIES)) |
| 159 | |
| 160 | START_ID=$(($START_ID+$NUM_POLICIES)) |
| 161 | |
| 162 | start_timer "Create polices in STD via agent DMAAP, one by one, and $interface using "$__httpx |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 163 | 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] | 164 | print_timer "Create polices in STD via agent DMAAP, one by one, and $interface using "$__httpx |
| 165 | |
| 166 | sim_equal ricsim_g2_1 num_instances $((2*$NUM_POLICIES)) |
| 167 | |
| 168 | START_ID=$(($START_ID+$NUM_POLICIES)) |
| 169 | |
| 170 | start_timer "Create polices in OSC via agent DMAAP in batch and $interface using "$__httpx |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 171 | 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] | 172 | print_timer "Create polices in OSC via agent DMAAP in batch and $interface using "$__httpx |
| 173 | |
| 174 | sim_equal ricsim_g1_1 num_instances $((3*$NUM_POLICIES)) |
| 175 | |
| 176 | START_ID=$(($START_ID+$NUM_POLICIES)) |
| 177 | |
| 178 | start_timer "Create polices in STD via agent DMAAP in batch and $interface using "$__httpx |
BjornMagnussonXA | bbd2e9d | 2020-05-27 21:24:06 +0200 | [diff] [blame] | 179 | 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] | 180 | print_timer "Create polices in STD via agent DMAAP in batch and $interface using "$__httpx |
| 181 | |
| 182 | sim_equal ricsim_g2_1 num_instances $((3*$NUM_POLICIES)) |
| 183 | |
| 184 | if [ $interface == "SDNC" ]; then |
| 185 | sim_contains_str ricsim_g1_1 remote_hosts "a1-controller" |
| 186 | sim_contains_str ricsim_g2_1 remote_hosts "a1-controller" |
| 187 | else |
| 188 | sim_contains_str ricsim_g1_1 remote_hosts "policy-agent" |
| 189 | sim_contains_str ricsim_g2_1 remote_hosts "policy-agent" |
| 190 | fi |
| 191 | |
| 192 | check_policy_agent_logs |
| 193 | |
| 194 | store_logs "${__httpx}__${interface}" |
| 195 | done |
| 196 | done |
| 197 | |
| 198 | #### TEST COMPLETE #### |
| 199 | |
| 200 | print_result |
| 201 | |
| 202 | auto_clean_containers |