blob: 9a4d044f0b8fbaba070b85e70aaad44a5d2b5bd8 [file] [log] [blame]
waynedunican6f4ceb02023-02-02 11:43:42 +00001#!/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===#
21if [ -z "${WORKSPACE}" ]; then
22 export WORKSPACE=$(git rev-parse --show-toplevel)
23fi
24
25export TESTDIR=${WORKSPACE}/testsuites
26export ACM_PERF_TEST_FILE=$TESTDIR/performance/src/main/resources/testplans/performance.jmx
27export ACM_STAB_TEST_FILE=$TESTDIR/stability/src/main/resources/testplans/stability.jmx
28
29if [ $1 == "run" ]
30then
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 $ACM_PERF_TEST_FILE;
39 elif [ $2 == "stability" ]
40 then
41 bash start-s3p-tests.sh run $ACM_STAB_TEST_FILE;
42 else
43 echo "echo Invalid arguments provided. Usage: $0 [option..] {performance | stability}"
44 fi
45
46else
47 echo "Invalid arguments provided. Usage: $0 [option..] {run | uninstall}"
48fi
49