[VVP] Track Requirements to Test Cases
[vvp/validation-scripts.git] / mvn-phase-script.sh
1 #!/bin/bash
2
3 # ================================================================================
4 # Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 # ============LICENSE_END=========================================================
18 #
19 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
20
21 set -ex
22
23
24 echo "running script: [$0] for module [$1] at stage [$2]"
25
26 MVN_PROJECT_MODULEID="$1"
27 MVN_PHASE="$2"
28 PROJECT_ROOT=$(dirname $0)
29
30 run_tox_test () {
31   CURDIR=$(pwd)
32   TOXINIS=$(find . -name "tox.ini")
33   for TOXINI in "${TOXINIS[@]}"; do
34     DIR=$(echo "$TOXINI" | rev | cut -f2- -d'/' | rev)
35     cd "${CURDIR}/${DIR}"
36     rm -rf ./venv-tox ./.tox
37     virtualenv ./venv-tox
38     source ./venv-tox/bin/activate
39     pip install --upgrade pip
40     pip install --upgrade tox argparse
41     pip freeze
42     tox
43     deactivate
44     rm -rf ./venv-tox ./.tox
45   done
46 }
47
48 # Customize the section below for each project
49 case $MVN_PHASE in
50 test)
51   echo "==> test phase script"
52   run_tox_test
53   ;;
54 *)
55   echo "==> unprocessed phase"
56   ;;
57 esac
58
59