-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathintegration.sh
More file actions
executable file
·163 lines (125 loc) · 3.98 KB
/
integration.sh
File metadata and controls
executable file
·163 lines (125 loc) · 3.98 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
#!/usr/bin/env bash
set -eu
set -o pipefail
readonly PROGDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
readonly BUILDPACKDIR="$(cd "${PROGDIR}/.." && pwd)"
# shellcheck source=SCRIPTDIR/.util/tools.sh
source "${PROGDIR}/.util/tools.sh"
# shellcheck source=SCRIPTDIR/.util/print.sh
source "${PROGDIR}/.util/print.sh"
# shellcheck source=SCRIPTDIR/.util/builders.sh
source "${PROGDIR}/.util/builders.sh"
function main() {
local builderArray token
builderArray=()
token=""
while [[ "${#}" != 0 ]]; do
case "${1}" in
--help|-h)
shift 1
usage
exit 0
;;
--builder|-b)
builderArray+=("${2}")
shift 2
;;
--token|-t)
token="${2}"
shift 2
;;
"")
# skip if the argument is empty
shift 1
;;
*)
util::print::error "unknown argument \"${1}\""
esac
done
if [[ ! -d "${BUILDPACKDIR}/integration" ]]; then
util::print::warn "** WARNING No Integration tests **"
fi
tools::install "${token}"
if [ ${#builderArray[@]} -eq 0 ]; then
util::print::title "No builders provided. Finding builders in integration.json..."
local builders
builders="$(util::builders::list "${BUILDPACKDIR}/integration.json" | jq -r '.[]' )"
util::print::info "Found the following builders:"
util::print::info "${builders}"
# shellcheck disable=SC2206
IFS=$'\n' builderArray=(${builders})
unset IFS
fi
local testout
testout=$(mktemp)
for builder in "${builderArray[@]}"; do
util::print::title "Getting images for builder: '${builder}'"
builder_images::pull "${builder}"
util::print::title "Setting default pack builder image..."
pack config default-builder "${builder}"
tests::run "${builder}" "${testout}"
done
util::tools::tests::checkfocus "${testout}"
util::print::success "** GO Test Succeeded with all builders**"
}
function usage() {
cat <<-USAGE
integration.sh [OPTIONS]
Runs the integration test suite.
OPTIONS
--help -h prints the command usage
--builder <name> -b <name> sets the name of the builder(s) that are pulled / used for testing.
Defaults to "builders" array in integration.json, if present.
--token <token> Token used to download assets from GitHub (e.g. jam, pack, etc) (optional)
USAGE
}
function tools::install() {
local token
token="${1}"
util::tools::pack::install \
--directory "${BUILDPACKDIR}/.bin" \
--token "${token}"
util::tools::jam::install \
--directory "${BUILDPACKDIR}/.bin" \
--token "${token}"
util::tools::libpak-tools::install \
--directory "${BUILDPACKDIR}/.bin"
util::tools::create-package::install \
--directory "${BUILDPACKDIR}/.bin"
if [[ -f "${BUILDPACKDIR}/.libbuildpack" ]]; then
util::tools::packager::install \
--directory "${BUILDPACKDIR}/.bin"
fi
}
function builder_images::pull() {
local builder
builder="${1}"
util::print::title "Pulling builder image ${builder}..."
docker pull "${builder}"
local run_image lifecycle_image
run_image="$(
pack inspect-builder "${builder}" --output json \
| jq -r '.remote_info.run_images[0].name'
)"
lifecycle_image="index.docker.io/buildpacksio/lifecycle:$(
pack inspect-builder "${builder}" --output json \
| jq -r '.remote_info.lifecycle.version'
)"
util::print::title "Pulling run image..."
docker pull "${run_image}"
util::print::title "Pulling lifecycle image..."
docker pull "${lifecycle_image}"
}
function tests::run() {
util::print::title "Run Buildpack Runtime Integration Tests"
util::print::info "Using ${1} as builder..."
export CGO_ENABLED=0
pushd "${BUILDPACKDIR}" > /dev/null
if GOMAXPROCS="${GOMAXPROCS:-4}" go test -count=1 -timeout 0 ./integration/... -v -run Integration | tee "${2}"; then
util::print::info "** GO Test Succeeded with ${1}**"
else
util::print::error "** GO Test Failed with ${1}**"
fi
popd > /dev/null
}
main "${@:-}"