stolon/test
Simone Gotti cfe1fd84de Merge pull request #554 from sgotti/test_go_fmt_only_latest_go_version
test: test gofmt only with the latest go version
2018-08-28 11:40:16 +02:00

138 lines
3.6 KiB
Bash
Executable File

#!/usr/bin/env bash
# Test script code thanks to coreos/etcd
#
# Run all etcd tests
# ./test
# ./test -v
#
# Run also integration tests
# INTEGRATION=1 STOLON_TEST_STORE_BACKEND=etcdv3 ./test
#
set -e
# Cross compatibility with osx
# origin source: https://github.com/kubernetes/kubernetes/blob/master/hack/lib/init.sh#L102
function readlinkdashf() {
# run in a subshell for simpler 'cd'
(
if [[ -d "$1" ]]; then # This also catch symlinks to dirs.
cd "$1"
pwd -P
else
cd $(dirname "$1")
local f
f=$(basename "$1")
if [[ -L "$f" ]]; then
readlink "$f"
else
echo "$(pwd -P)/${f}"
fi
fi
)
}
BASEDIR=$(readlinkdashf $(dirname $0))
BINDIR=${BASEDIR}/bin
if [ $PWD != $BASEDIR ]; then
cd $BASEDIR
fi
ORG_PATH="github.com/sorintlab"
REPO_PATH="${ORG_PATH}/stolon"
./build
# test all packages excluding integration tests
IGNORE_PKGS="(vendor/|tests/integration)"
PACKAGES=$(find . -name \*_test.go | while read -r a; do dirname "$a"; done | sort | uniq | grep -vE "$IGNORE_PKGS" | sed "s|\./||g")
# prepend REPO_PATH to each local package
split=$PACKAGES
PACKAGES=""
for a in $split; do PACKAGES="$PACKAGES ${REPO_PATH}/${a}"; done
echo "Running tests..."
COVER=${COVER:-"-cover"}
# Use only of specific go version to run gofmt since it'll break when we'll use go 1.10 and go 1.11
GOFMT_VERSION="go1.11"
MAJOR_GOVERSION=$( echo -n $(go version) | grep -o 'go1\.[0-9]*' || true )
if [ "${MAJOR_GOVERSION}" == "${GOFMT_VERSION}" ]; then
echo "Checking gofmt..."
fmtRes=$(gofmt -l $(find . -type f -name '*.go' ! -path './vendor/*'))
if [ -n "${fmtRes}" ]; then
echo -e "gofmt checking failed:\n${fmtRes}"
exit 255
fi
fi
echo "Checking govet..."
vetRes=$(go vet ${PACKAGES})
if [ -n "${vetRes}" ]; then
echo -e "govet checking failed:\n${vetRes}"
exit 255
fi
echo "Checking govet -shadow ..."
vetRes=$(go vet -shadow ${PACKAGES})
if [ -n "${vetRes}" ]; then
echo -e "govet checking ${path} failed:\n${vetRes}"
exit 255
fi
echo "Checking for license header..."
licRes=$(for file in $(find . -type f -iname '*.go' ! -path './vendor/*'); do
head -n3 "${file}" | grep -Eq "(Copyright|generated|GENERATED)" || echo -e " ${file}"
done;)
if [ -n "${licRes}" ]; then
echo -e "license header checking failed:\n${licRes}"
exit 255
fi
go test -timeout 3m ${COVER} $@ ${PACKAGES} ${RACE}
if [ -n "$INTEGRATION" ]; then
echo "Running integration tests..."
if [ -z ${STOLON_TEST_STORE_BACKEND} ]; then
echo "STOLON_TEST_STORE_BACKEND env var needs to be defined (etcd or consul)"
exit 1
fi
export STKEEPER_BIN=${BINDIR}/stolon-keeper
export STSENTINEL_BIN=${BINDIR}/stolon-sentinel
export STPROXY_BIN=${BINDIR}/stolon-proxy
export STCTL_BIN=${BINDIR}/stolonctl
if [ "${STOLON_TEST_STORE_BACKEND}" == "etcd" -o "${STOLON_TEST_STORE_BACKEND}" == "etcdv2" -o "${STOLON_TEST_STORE_BACKEND}" == "etcdv3" ]; then
if [ -z ${ETCD_BIN} ]; then
if [ -z $(which etcd) ]; then
echo "cannot find etcd in PATH and ETCD_BIN environment variable not defined"
exit 1
fi
ETCD_BIN=$(which etcd)
fi
echo "using etcd from $ETCD_BIN"
export ETCD_BIN
elif [ "${STOLON_TEST_STORE_BACKEND}" == "consul" ]; then
if [ -z ${CONSUL_BIN} ]; then
if [ -z $(which consul) ]; then
echo "cannot find consul in PATH and CONSUL_BIN environment variable not defined"
exit 1
fi
CONSUL_BIN=$(which consul)
fi
echo "using consul from $CONSUL_BIN"
export CONSUL_BIN
else
echo "Unknown store backend: \"${STOLON_TEST_STORE_BACKEND}\""
exit 1
fi
[ -z "$PARALLEL" ] && PARALLEL=4
go test -timeout 20m $@ -v -count 1 -parallel ${PARALLEL} ${REPO_PATH}/tests/integration
fi
echo "Success"