2014-06-06 23:40:48 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Copyright 2014 Google Inc. All rights reserved.
|
|
|
|
#
|
|
|
|
# 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 -e
|
|
|
|
|
2014-10-03 21:58:49 +00:00
|
|
|
KUBE_ROOT=$(dirname "${BASH_SOURCE}")/..
|
|
|
|
source "${KUBE_ROOT}/hack/config-go.sh"
|
2014-06-06 23:40:48 +00:00
|
|
|
|
2014-08-27 23:56:08 +00:00
|
|
|
# Go to the top of the tree.
|
2014-10-03 21:58:49 +00:00
|
|
|
cd "${KUBE_ROOT}"
|
2014-08-27 23:56:08 +00:00
|
|
|
|
|
|
|
# Check for `go` binary and set ${GOPATH}.
|
|
|
|
kube::setup_go_environment
|
|
|
|
|
2014-06-06 23:40:48 +00:00
|
|
|
find_test_dirs() {
|
2014-08-04 17:36:28 +00:00
|
|
|
cd src/${KUBE_GO_PACKAGE}
|
|
|
|
find . -not \( \
|
|
|
|
\( \
|
2014-08-29 05:55:17 +00:00
|
|
|
-wholename './output' \
|
2014-08-29 20:51:16 +00:00
|
|
|
-o -wholename './_output' \
|
2014-08-04 17:36:28 +00:00
|
|
|
-o -wholename './release' \
|
|
|
|
-o -wholename './target' \
|
|
|
|
-o -wholename '*/third_party/*' \
|
2014-08-19 23:45:36 +00:00
|
|
|
-o -wholename '*/Godeps/*' \
|
2014-08-04 17:36:28 +00:00
|
|
|
\) -prune \
|
2014-08-29 18:26:59 +00:00
|
|
|
\) -name '*_test.go' -print0 | xargs -0n1 dirname | sed 's|^\./||' | sort -u
|
|
|
|
}
|
|
|
|
|
|
|
|
find_test_pkgs() {
|
|
|
|
find_test_dirs | xargs -n1 printf "${KUBE_GO_PACKAGE}/%s\n"
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
|
|
|
|
2014-09-09 21:04:39 +00:00
|
|
|
# -covermode=atomic becomes default with -race in Go >=1.3
|
|
|
|
KUBE_COVER=${KUBE_COVER:--cover -covermode=atomic}
|
2014-09-18 18:17:32 +00:00
|
|
|
KUBE_TIMEOUT=${KUBE_TIMEOUT:--timeout 60s}
|
2014-09-19 01:27:18 +00:00
|
|
|
KUBE_RACE=${KUBE_RACE:--race}
|
2014-06-06 23:40:48 +00:00
|
|
|
|
|
|
|
cd "${KUBE_TARGET}"
|
2014-06-09 14:16:43 +00:00
|
|
|
|
2014-08-29 18:26:59 +00:00
|
|
|
usage() {
|
|
|
|
cat << EOF
|
|
|
|
usage: $0 [OPTIONS] [TARGETS]
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
-i <number> : number of times to run each test, must be >= 1
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
isnum() {
|
|
|
|
[[ "$1" =~ ^[0-9]+$ ]]
|
|
|
|
}
|
|
|
|
|
|
|
|
iterations=1
|
|
|
|
while getopts "hi:" opt ; do
|
2014-08-27 16:22:01 +00:00
|
|
|
case $opt in
|
2014-08-29 18:26:59 +00:00
|
|
|
h)
|
|
|
|
usage
|
|
|
|
exit 0
|
|
|
|
;;
|
2014-08-27 16:22:01 +00:00
|
|
|
i)
|
2014-08-29 18:26:59 +00:00
|
|
|
iterations="$OPTARG"
|
|
|
|
if ! isnum "${iterations}" || [[ "${iterations}" -le 0 ]]; then
|
|
|
|
echo "$0": argument to -i must be numeric and greater than 0 >&2
|
|
|
|
usage >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
2014-08-27 16:22:01 +00:00
|
|
|
;;
|
|
|
|
?)
|
2014-08-29 18:26:59 +00:00
|
|
|
usage >&2
|
2014-08-27 16:22:01 +00:00
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
:)
|
2014-08-29 18:26:59 +00:00
|
|
|
echo "Option -$OPTARG <value>" >&2
|
|
|
|
usage >&2
|
2014-08-27 16:22:01 +00:00
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
shift $((OPTIND - 1))
|
|
|
|
|
2014-08-29 18:26:59 +00:00
|
|
|
# Use eval to preserve embedded quoted strings.
|
|
|
|
eval "goflags=(${GOFLAGS:-})"
|
|
|
|
|
2014-09-03 21:19:36 +00:00
|
|
|
# Filter out arguments that start with "-" and move them to goflags.
|
|
|
|
testcases=()
|
|
|
|
for arg; do
|
|
|
|
if [[ "${arg}" == -* ]]; then
|
|
|
|
goflags+=("${arg}")
|
|
|
|
else
|
|
|
|
testcases+=("${arg}")
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
set -- ${testcases[@]+"${testcases[@]}"}
|
|
|
|
|
2014-08-29 18:26:59 +00:00
|
|
|
if [[ "${iterations}" -gt 1 ]]; then
|
|
|
|
if [[ $# -eq 0 ]]; then
|
|
|
|
set -- $(find_test_dirs)
|
2014-08-27 16:22:01 +00:00
|
|
|
fi
|
2014-08-29 18:26:59 +00:00
|
|
|
echo "Running ${iterations} times"
|
|
|
|
fails=0
|
|
|
|
for arg; do
|
|
|
|
trap 'exit 1' SIGINT
|
|
|
|
echo
|
|
|
|
pkg=${KUBE_GO_PACKAGE}/${arg}
|
|
|
|
echo "${pkg}"
|
|
|
|
# keep going, even if there are failures
|
|
|
|
pass=0
|
|
|
|
count=0
|
|
|
|
for i in $(seq 1 ${iterations}); do
|
|
|
|
if go test "${goflags[@]:+${goflags[@]}}" \
|
2014-09-19 01:27:18 +00:00
|
|
|
${KUBE_RACE} ${KUBE_TIMEOUT} "${pkg}"; then
|
2014-08-29 18:26:59 +00:00
|
|
|
pass=$((pass + 1))
|
|
|
|
else
|
|
|
|
fails=$((fails + 1))
|
2014-08-27 16:22:01 +00:00
|
|
|
fi
|
2014-08-29 18:26:59 +00:00
|
|
|
count=$((count + 1))
|
|
|
|
done 2>&1
|
|
|
|
echo "${pass}" / "${count}" passed
|
|
|
|
done
|
|
|
|
if [[ ${fails} -gt 0 ]]; then
|
2014-08-27 16:22:01 +00:00
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -n "$1" ]]; then
|
2014-08-29 18:26:59 +00:00
|
|
|
covdir="/tmp/k8s_coverage/$(date "+%s")"
|
|
|
|
echo saving coverage output in "${covdir}"
|
|
|
|
for arg; do
|
|
|
|
trap 'exit 1' SIGINT
|
|
|
|
mkdir -p "${covdir}/${arg}"
|
|
|
|
pkg=${KUBE_GO_PACKAGE}/${arg}
|
|
|
|
go test "${goflags[@]:+${goflags[@]}}" \
|
2014-09-19 01:27:18 +00:00
|
|
|
${KUBE_RACE} \
|
2014-08-29 18:26:59 +00:00
|
|
|
${KUBE_TIMEOUT} \
|
|
|
|
${KUBE_COVER} -coverprofile="${covdir}/${arg}/coverage.out" \
|
|
|
|
"${pkg}"
|
|
|
|
done
|
2014-06-09 14:16:43 +00:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2014-08-29 18:26:59 +00:00
|
|
|
find_test_pkgs | xargs go test "${goflags[@]:+${goflags[@]}}" \
|
2014-09-19 01:27:18 +00:00
|
|
|
${KUBE_RACE} \
|
2014-08-29 18:26:59 +00:00
|
|
|
${KUBE_TIMEOUT} \
|
|
|
|
${KUBE_COVER}
|