blob: e8ce11238be79b50a07729cc5863e0a5fba7421f [file] [log] [blame]
Lasse Kaihlavirta0c4500a2020-12-03 17:54:13 +02001#!/bin/bash -x
2#
3# Copyright 2020 © Samsung Electronics Co., Ltd.
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
18# $1 test options (passed on to run-csit.sh as such)
19#
20# UNIQUE_DOCKER_TAG environment variable is expected to be used
21# by all test plans whenever it is defined. If it's not defined,
22# local execution is assumed and plain "latest" should be used
23# by setup scripts to allow the use of locally build docker images
24#
25
26export TESTOPTIONS=${1}
27# GERRIT_BRANCH for checking out integration/csit should be the same as
28# current project clone branch
29export GERRIT_BRANCH=${GERRIT_BRANCH:-`git rev-parse --abbrev-ref HEAD`}
30export WORKSPACE=$(git rev-parse --show-toplevel)/csit
31
32rm -rf ${WORKSPACE}/archives
33mkdir -p ${WORKSPACE}/archives
34rm -rf ${WORKSPACE}/data
35mkdir -p ${WORKSPACE}/data
36
37cd ${WORKSPACE}/data
38git clone https://gerrit.onap.org/r/integration/csit
39cd csit
40# make best-effort attempt to checkout branch that corresponds to current
41# project repository clone if the checkout fails for any reason,
42# the cloned integration/csit remains on master
43git checkout ${GERRIT_BRANCH}
44cp *.sh ${WORKSPACE}/
45cd ${WORKSPACE}
46# Execute all testsuites defined under plans subdirectory
47for dir in plans/*/
48do
49 dir=${dir%*/} # remove the trailing /
50 ./run-csit.sh ${dir} ${TESTOPTIONS}
51done