forked from osmlab/atlas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.sh
executable file
·87 lines (73 loc) · 2.59 KB
/
test.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/usr/bin/env bash
# general case script abort if a command fails
# this can be overridden with a custom error message using '|| err_shutdown'
set -e
set -o pipefail
### define utility functions ###
################################
err_shutdown() {
echo "test.sh: ERROR: $1"
deactivate
exit 1
}
### check to prevent users from running this script directly ###
################################################################
if [ "$1" != "ranFromGradle" ];
then
err_shutdown "this script should be run using the atlas gradle task 'testPyatlas'"
fi
### set up variables to store directory names ###
#################################################
gradle_project_root_dir="$(pwd)"
pyatlas_dir="pyatlas"
pyatlas_testdir="unit_tests"
pyatlas_root_dir="$gradle_project_root_dir/$pyatlas_dir"
venv_path="$pyatlas_root_dir/__pyatlas_venv__"
### abort the script if the pyatlas tests folder is not present ###
###################################################################
if [ ! -d "$pyatlas_root_dir/$pyatlas_testdir" ];
then
err_shutdown "pyatlas tests folder not found"
fi
### run the tests ###
#####################
# start the venv
if [ ! -d "$venv_path" ];
then
err_shutdown "missing $venv_path"
fi
# shellcheck source=/dev/null
source "$venv_path/bin/activate"
# grab the build version from gradle.properties and inject it into setup.py
atlas_version=$(grep "version=" "$gradle_project_root_dir/gradle.properties" | cut -f2 -d "=")
# GNU and BSD sed have different "in-place" flag syntax
if [ "$(uname)" == "Darwin" ];
then
sed -i "" "s/version=.*/version=\"$atlas_version\",/" "$pyatlas_root_dir/setup.py"
elif [ "$(uname)" == "Linux" ];
then
sed --in-place="" "s/version=.*/version=\"$atlas_version\",/" "$pyatlas_root_dir/setup.py"
else
err_shutdown "unrecognized platform $(uname)"
fi
# enter the pyatlas project directory so the unittest code can discover tests
pushd "$pyatlas_root_dir"
pip install -e "$pyatlas_root_dir"
echo "Discovering and running unit tests..."
echo "----------------------------------------------------------------------"
python -m unittest discover -v -s "$pyatlas_testdir" || err_shutdown "a test failed, aborting early..."
# get back to gradle project directory
popd
# reset version field in setup.py
# GNU and BSD sed have different "in-place" flag syntax
if [ "$(uname)" == "Darwin" ];
then
sed -i "" "s/version=.*/version=/" "$pyatlas_root_dir/setup.py"
elif [ "$(uname)" == "Linux" ];
then
sed --in-place="" "s/version=.*/version=/" "$pyatlas_root_dir/setup.py"
else
err_shutdown "unrecognized platform $(uname)"
fi
# shutdown the venv
deactivate