forked from m3db/ci-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-integration.sh
executable file
·68 lines (56 loc) · 2.15 KB
/
test-integration.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
#!/bin/bash
set -e
source "$(dirname $0)/variables.sh"
COVERFILE=${1:-profile.cov}
EXCLUDE_FILE=${2}
TAGS="integration"
DIR="integration"
INTEGRATION_TIMEOUT=${INTEGRATION_TIMEOUT:-10m}
COVERMODE=count
SCRATCH_FILE=${COVERFILE}.tmp
SRC_ROOT=${SRC_ROOT:-.}
if [ ! -d "${SRC_ROOT}/${DIR}" ]; then
echo "No integrations tests found"
exit 0
fi
echo "mode: ${COVERMODE}" > $SCRATCH_FILE
# go1.10 has an open bug for coverage reports that requires a *terrible* hack
# to workaround. See https://github.com/golang/go/issues/23883 for more details
GO_MINOR_VERSION=$(go version | awk '{print $3}' | cut -d '.' -f 2)
if [ ${GO_MINOR_VERSION} -ge 10 ]; # i.e. we're on go1.10 and up
then
echo "Generating dummy integration file with all the packages listed for coverage"
DUMMY_FILE_PATH=${SRC_ROOT}/integration/coverage_imports.go
if [ -f ${DUMMY_FILE_PATH} ]; then
rm -f ${DUMMY_FILE_PATH} # delete file if it exists (only happens when running on a laptop)
fi
# NB: need to do this in two steps or the go compiler compiles the partial file and is :(
generate_dummy_coverage_file integration integration > coverage_imports_file.out
mv coverage_imports_file.out ${DUMMY_FILE_PATH}
fi
# compile the integration test binary
go test -test.c -test.tags=${TAGS} -test.covermode ${COVERMODE} \
-test.coverpkg $(go list ./$SRC_ROOT/... | grep -v /vendor/ | paste -sd, -) ${SRC_ROOT}/${DIR}
INTEGRATION_TEST="./integration.test"
# Handle subdirectories with no integration tests
if [ ! -f ${INTEGRATION_TEST} ]; then
echo "No integrations tests found"
exit 0
fi
ALL_TESTS=$(./integration.test -test.list '.*')
# defaults to all if the split vars are unset
pick_subset "$ALL_TESTS" TESTS $SPLIT_IDX $TOTAL_SPLITS
# execute tests one by one for isolation
for TEST in $TESTS; do
./integration.test -test.v -test.run $TEST -test.coverprofile temp_${COVERFILE} \
-test.timeout $INTEGRATION_TIMEOUT ./integration
TEST_EXIT=$?
if [ "$TEST_EXIT" != "0" ]; then
echo "$TEST failed"
exit $TEST_EXIT
fi
cat temp_${COVERFILE} | grep -v "mode:" >> ${SCRATCH_FILE}
sleep 0.1
done
filter_cover_profile $SCRATCH_FILE $COVERFILE $EXCLUDE_FILE
echo "PASS all integrations tests"