This repository has been archived by the owner on Apr 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 594
/
run-tests.sh
84 lines (68 loc) · 2.19 KB
/
run-tests.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
#!/usr/bin/env bash
# Copyright 2017 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set -xe
#shopt -s globstar
# We spin up some subprocesses. Don't kill them on hangup
trap '' HUP
# Temporary directory to store any output to display on error
export ERROR_OUTPUT_DIR
ERROR_OUTPUT_DIR="$(mktemp -d)"
trap 'rm -r "${ERROR_OUTPUT_DIR}"' EXIT
delete_app_version() {
yes | gcloud --project="${GOOGLE_PROJECT_ID}" \
app versions delete "${1}"
}
handle_error() {
errcode=$? # Remember the error code so we can exit with it after cleanup
# Clean up remote app version
delete_app_version "${1}" &
# Display any errors
if [ -n "$(find "${2}" -mindepth 1 -print -quit)" ]; then
cat "${2:?}"/* 1>&2
fi
wait
exit ${errcode}
}
cleanup() {
delete_app_version "${GOOGLE_VERSION_ID}" &
# rm -r "${ERROR_OUTPUT_DIR:?}/"*
}
# First, style-check the shell scripts
# shellcheck ./**/*.sh
# Find/run all project level build.gradle and if there's an acceptance.sh run it.
export SCRIPT_LIST
SCRIPT_LIST="$(find . -maxdepth 3 -name build.gradle -type f)"
for path in $SCRIPT_LIST; do
dir="${path%/build.gradle}"
# Need different app versions because flex can't deploy over an existing
# version. Use just the first letter of each subdir in version name
export GOOGLE_VERSION_ID
# shellcheck disable=SC2001
GOOGLE_VERSION_ID="circle-$(echo "${dir#./}" | sed 's#\([a-z]\)[^/]*/#\1-#g')"
trap 'handle_error "${GOOGLE_VERSION_ID}" "${ERROR_OUTPUT_DIR}"' ERR
(
# If there's an error, clean up
pushd "${dir}"
if [ -e "acceptance_test.sh" ]; then
/bin/bash ./acceptance_test.sh
cleanup
fi
./gradlew test
# Clean up the app version
)
# Clear the trap
trap - ERR
done
wait