waynedunican | a5750bc | 2023-01-10 11:06:36 +0000 | [diff] [blame^] | 1 | #!/bin/bash |
| 2 | # ============LICENSE_START======================================================= |
| 3 | # Copyright (C) 2023 Nordix Foundation. All rights reserved. |
| 4 | # ================================================================================ |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | # |
| 17 | # SPDX-License-Identifier: Apache-2.0 |
| 18 | # ============LICENSE_END========================================================= |
| 19 | |
| 20 | #===MAIN===# |
| 21 | if [ -z "${WORKSPACE}" ]; then |
| 22 | export WORKSPACE=$(git rev-parse --show-toplevel) |
| 23 | fi |
| 24 | |
| 25 | export TESTDIR=${WORKSPACE}/testsuites |
| 26 | export APEX_PERF_TEST_FILE=$TESTDIR/performance/performance-benchmark-test/src/main/resources/apexPdpPerformanceTestPlan.jmx |
| 27 | export APEX_STAB_TEST_FILE=$TESTDIR/apex-pdp-stability/src/main/resources/apexPdpStabilityTestPlan.jmx |
| 28 | |
| 29 | if [ $1 == "run" ] |
| 30 | then |
| 31 | |
| 32 | mkdir automate-performance;cd automate-performance; |
| 33 | git clone "https://gerrit.onap.org/r/policy/docker" |
| 34 | cd docker/csit |
| 35 | |
| 36 | if [ $2 == "performance" ] |
| 37 | then |
| 38 | bash start-s3p-tests.sh run $APEX_PERF_TEST_FILE; |
| 39 | elif [ $2 == "stability" ] |
| 40 | then |
| 41 | bash start-s3p-tests.sh run $APEX_STAB_TEST_FILE; |
| 42 | else |
| 43 | echo "echo Invalid arguments provided. Usage: $0 [option..] {performance | stability}" |
| 44 | fi |
| 45 | |
| 46 | else |
| 47 | echo "Invalid arguments provided. Usage: $0 [option..] {run | uninstall}" |
| 48 | fi |
| 49 | |