From f66761dcab725dc97ee23f7c658753f4faf9bf0f Mon Sep 17 00:00:00 2001 From: "adheli.tavares" Date: Thu, 30 Sep 2021 13:50:40 +0100 Subject: Distribution S3P Testing for Istanbul Issue-ID: POLICY-3654 Change-Id: Ib410008418a6d94948270fea1c37e20eb0c59003 Signed-off-by: adheli.tavares --- .../src/main/resources/testplans/performance.jmx | 8 +++--- .../src/main/resources/testplans/run_test.sh | 30 ++++++++++++++++++++++ 2 files changed, 34 insertions(+), 4 deletions(-) create mode 100755 testsuites/performance/src/main/resources/testplans/run_test.sh (limited to 'testsuites/performance/src/main') diff --git a/testsuites/performance/src/main/resources/testplans/performance.jmx b/testsuites/performance/src/main/resources/testplans/performance.jmx index d92fe041..2115cdee 100644 --- a/testsuites/performance/src/main/resources/testplans/performance.jmx +++ b/testsuites/performance/src/main/resources/testplans/performance.jmx @@ -285,7 +285,7 @@ ${PAP_HOST} ${PAP_PORT} - https + http /policy/pap/v1/pdps GET @@ -400,7 +400,7 @@ ${PAP_HOST} ${PAP_PORT} - https + http /policy/pap/v1/pdps GET @@ -537,14 +537,14 @@ - https://${PAP_HOST}:${PAP_PORT}/policy/pap/v1 + http://${PAP_HOST}:${PAP_PORT}/policy/pap/v1 healthcheck zb!XztG34 - https://${API_HOST}:${API_PORT}/policy/api/v1 + http://${API_HOST}:${API_PORT}/policy/api/v1 healthcheck zb!XztG34 diff --git a/testsuites/performance/src/main/resources/testplans/run_test.sh b/testsuites/performance/src/main/resources/testplans/run_test.sh new file mode 100755 index 00000000..44a98d38 --- /dev/null +++ b/testsuites/performance/src/main/resources/testplans/run_test.sh @@ -0,0 +1,30 @@ +#!/bin/bash +# ============LICENSE_START======================================================= +# Copyright (c) 2021 Nordix Foundation. +# ================================================================================ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 +# ============LICENSE_END========================================================= + +DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +JMETER_HOME=~/jmeter/apache-jmeter-5.4.1/ + +POLICY_API_IP=$(docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' policy-api) +POLICY_PAP_IP=$(docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' policy-pap) +POLICY_DISTRIBUTION_IP=$(docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' policy-distribution) + +${JMETER_HOME}/bin/jmeter -n -t "${DIR}"/performance.jmx -Jduration=14400 \ + -Japihost="${POLICY_API_IP}" \ + -Jpaphost="${POLICY_PAP_IP}" \ + -Jdisthost="${POLICY_DISTRIBUTION_IP}" -- cgit 1.2.3-korg