forked from GoogleCloudPlatform/java-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsystem_tests.sh
More file actions
executable file
·102 lines (82 loc) · 3.07 KB
/
system_tests.sh
File metadata and controls
executable file
·102 lines (82 loc) · 3.07 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#!/bin/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 -eo pipefail
shopt -s globstar
set -xe
# 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}" &
( [ -d "${ERROR_OUTPUT_DIR}" ] && rm -r "${ERROR_OUTPUT_DIR:?}/"* ) || /bin/true
}
export GOOGLE_APPLICATION_CREDENTIALS=${KOKORO_GFILE_DIR}/service-acct.json
export GOOGLE_CLOUD_PROJECT=java-docs-samples-testing
export PATH=/google-cloud-sdk/bin:$PATH
echo "******** Environment *********"
env
echo "******** mvn & Java *********"
mvn -version
echo "Update gcloud ********"
gcloud components update --quiet
echo "******** activate-service-account ********"
ls -lr ${KOKORO_GFILE_DIR}
gcloud auth activate-service-account\
--key-file=$GOOGLE_APPLICATION_CREDENTIALS \
--project=$GOOGLE_CLOUD_PROJECT
echo "********* gcloud config ********"
gcloud config list
echo "******** build everything ********"
cd github/java-docs-samples
mvn clean verify | grep -E -v "(^\[INFO\] Download|^\[INFO\].*skipping)"
# (
# # Stop echoing commands, so we don't leak secret env vars
# # -Pselenium | \ # LV3 20170616 turn off selenium for now.
# set +x
# mvn --batch-mode clean verify \
# -Dbookshelf.clientID="${OAUTH2_CLIENT_ID}" \
# -Dbookshelf.clientSecret="${OAUTH2_CLIENT_SECRET}" \
# -Dbookshelf.bucket="${GCS_BUCKET envvar is unset}" \
# | \
# grep -E -v "(^\[INFO\] Download|^\[INFO\].*skipping)"
# )
#
# Test running samples on localhost.
# git clone https://github.com/GoogleCloudPlatform/java-repo-tools.git
# ./java-repo-tools/scripts/test-localhost.sh jetty helloworld-jsp -- -DskipTests=true
# ./java-repo-tools/scripts/test-localhost.sh jetty helloworld-servlet -- -DskipTests=true
# ./java-repo-tools/scripts/test-localhost.sh jetty helloworld-compat -- -DskipTests=true
# ./java-repo-tools/scripts/test-localhost.sh spring-boot helloworld-springboot -- -DskipTests=true
# Check that all shell scripts in this repo (including this one) pass the
Shell Check linter.
shellcheck ./**/*.sh