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
|
#!/bin/bash
# The script does automatic checking on a Go package and its sub-packages, including:
# 1. gofmt (http://golang.org/cmd/gofmt/)
# 2. goimports (https://github.com/bradfitz/goimports)
# 3. golint (https://github.com/golang/lint)
# 4. go vet (http://golang.org/cmd/vet)
# 5. race detector (http://blog.golang.org/race-detector)
# 6. test coverage (http://blog.golang.org/cover)
set -e
GO="go"
# Automatic checks
test -z "$(gofmt -l -w . | tee /dev/stderr)"
#test -z "$(goimports -l -w . | tee /dev/stderr)"
#test -z "$(golint . | tee /dev/stderr)"
#$GO vet ./...
# Run test coverage on each subdirectories and merge the coverage profile.
echo "mode: count" > coverage.txt
if [ "x${TEST_DIRECTORY:0:1}" != "x." ]; then
TEST_DIRECTORY="./$TEST_DIRECTORY"
fi
DOCKERPATH="$(which docker 2>/dev/null 1>/dev/null|| echo 'not found')"
TAGS=""
if [ "${DOCKERPATH}" != "not found" ]; then
TAGS="-tags integration"
fi
# Standard $GO tooling behavior is to ignore dirs with leading underscors
for dir in $(find "$TEST_DIRECTORY" -maxdepth 10 -not -path './_examples*' -not -path './.git*' -not -path './Godeps/*' -type d);
do
if ls $dir/*.go &> /dev/null; then
$GO test ${TAGS} -v -race -covermode=atomic -coverprofile="$dir/profile.tmp" "$dir"
if [ -f $dir/profile.tmp ]
then
cat $dir/profile.tmp | tail -n +2 >> coverage.txt
rm $dir/profile.tmp
fi
# Stress
# hack/stress-test.sh
fi
done
$GO tool cover -func coverage.txt
# To submit the test coverage result to coveralls.io,
# use goveralls (https://github.com/mattn/goveralls)
# goveralls -coverprofile=profile.cov -service=travis-ci
|