Lasse Kaihlavirta | 0c4500a | 2020-12-03 17:54:13 +0200 | [diff] [blame^] | 1 | #!/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 | |
| 26 | export TESTOPTIONS=${1} |
| 27 | # GERRIT_BRANCH for checking out integration/csit should be the same as |
| 28 | # current project clone branch |
| 29 | export GERRIT_BRANCH=${GERRIT_BRANCH:-`git rev-parse --abbrev-ref HEAD`} |
| 30 | export WORKSPACE=$(git rev-parse --show-toplevel)/csit |
| 31 | |
| 32 | rm -rf ${WORKSPACE}/archives |
| 33 | mkdir -p ${WORKSPACE}/archives |
| 34 | rm -rf ${WORKSPACE}/data |
| 35 | mkdir -p ${WORKSPACE}/data |
| 36 | |
| 37 | cd ${WORKSPACE}/data |
| 38 | git clone https://gerrit.onap.org/r/integration/csit |
| 39 | cd 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 |
| 43 | git checkout ${GERRIT_BRANCH} |
| 44 | cp *.sh ${WORKSPACE}/ |
| 45 | cd ${WORKSPACE} |
| 46 | # Execute all testsuites defined under plans subdirectory |
| 47 | for dir in plans/*/ |
| 48 | do |
| 49 | dir=${dir%*/} # remove the trailing / |
| 50 | ./run-csit.sh ${dir} ${TESTOPTIONS} |
| 51 | done |