mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
test: move "e2e" and "functional"
Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
This commit is contained in:
parent
72211db7cf
commit
0c327ea456
@ -13,7 +13,7 @@ RUN dnf check-update || true \
|
|||||||
ENV GOROOT /usr/local/go
|
ENV GOROOT /usr/local/go
|
||||||
ENV GOPATH /go
|
ENV GOPATH /go
|
||||||
ENV PATH ${GOPATH}/bin:${GOROOT}/bin:${PATH}
|
ENV PATH ${GOPATH}/bin:${GOROOT}/bin:${PATH}
|
||||||
ENV GO_VERSION 1.10.1
|
ENV GO_VERSION REPLACE_ME_GO_VERSION
|
||||||
ENV GO_DOWNLOAD_URL https://storage.googleapis.com/golang
|
ENV GO_DOWNLOAD_URL https://storage.googleapis.com/golang
|
||||||
RUN rm -rf ${GOROOT} \
|
RUN rm -rf ${GOROOT} \
|
||||||
&& curl -s ${GO_DOWNLOAD_URL}/go${GO_VERSION}.linux-amd64.tar.gz | tar -v -C /usr/local/ -xz \
|
&& curl -s ${GO_DOWNLOAD_URL}/go${GO_VERSION}.linux-amd64.tar.gz | tar -v -C /usr/local/ -xz \
|
||||||
|
20
test
20
test
@ -51,11 +51,11 @@ COVER=${COVER:-"-cover"}
|
|||||||
|
|
||||||
# Hack: gofmt ./ will recursively check the .git directory. So use *.go for gofmt.
|
# Hack: gofmt ./ will recursively check the .git directory. So use *.go for gofmt.
|
||||||
IGNORE_PKGS="(vendor/|etcdserverpb|rafttest|gopath.proto|v3lockpb|v3electionpb)"
|
IGNORE_PKGS="(vendor/|etcdserverpb|rafttest|gopath.proto|v3lockpb|v3electionpb)"
|
||||||
INTEGRATION_PKGS="(integration|e2e|contrib|functional-tester)"
|
INTEGRATION_PKGS="(integration|tests/e2e|contrib|functional)"
|
||||||
|
|
||||||
# all github.com/coreos/etcd/whatever pkgs that are not auto-generated / tools
|
# all github.com/coreos/etcd/whatever pkgs that are not auto-generated / tools
|
||||||
# shellcheck disable=SC1117
|
# shellcheck disable=SC1117
|
||||||
PKGS=$(find . -name \*.go | while read -r a; do dirname "$a"; done | sort | uniq | grep -vE "$IGNORE_PKGS" | grep -vE "(tools/|contrib/|e2e|pb)" | sed "s|\.|${REPO_PATH}|g" | xargs echo)
|
PKGS=$(find . -name \*.go | while read -r a; do dirname "$a"; done | sort | uniq | grep -vE "$IGNORE_PKGS" | grep -vE "(tools/|contrib/|tests/e2e|pb)" | sed "s|\.|${REPO_PATH}|g" | xargs echo)
|
||||||
# pkg1,pkg2,pkg3
|
# pkg1,pkg2,pkg3
|
||||||
PKGS_COMMA=${PKGS// /,}
|
PKGS_COMMA=${PKGS// /,}
|
||||||
|
|
||||||
@ -238,7 +238,7 @@ function cov_pass {
|
|||||||
# shellcheck disable=SC2206
|
# shellcheck disable=SC2206
|
||||||
GOCOVFLAGS=($GOCOVFLAGS)
|
GOCOVFLAGS=($GOCOVFLAGS)
|
||||||
failed=""
|
failed=""
|
||||||
for t in $(echo "${TEST_PKGS}" | grep -vE "(e2e|functional-tester)"); do
|
for t in $(echo "${TEST_PKGS}" | grep -vE "(tests/e2e|functional)"); do
|
||||||
tf=$(echo "$t" | tr / _)
|
tf=$(echo "$t" | tr / _)
|
||||||
# cache package compilation data for faster repeated builds
|
# cache package compilation data for faster repeated builds
|
||||||
go test "${GOCOVFLAGS[@]}" -i "${REPO_PATH}/$t" || true
|
go test "${GOCOVFLAGS[@]}" -i "${REPO_PATH}/$t" || true
|
||||||
@ -257,10 +257,10 @@ function cov_pass {
|
|||||||
# use 30m timeout because e2e coverage takes longer
|
# use 30m timeout because e2e coverage takes longer
|
||||||
# due to many tests cause etcd process to wait
|
# due to many tests cause etcd process to wait
|
||||||
# on leadership transfer timeout during gracefully shutdown
|
# on leadership transfer timeout during gracefully shutdown
|
||||||
echo Testing e2e without proxy...
|
echo Testing tests/e2e without proxy...
|
||||||
go test -tags cov -timeout 30m -v "${REPO_PATH}/e2e" || failed="$failed e2e"
|
go test -tags cov -timeout 30m -v "${REPO_PATH}/tests/e2e" || failed="$failed tests/e2e"
|
||||||
echo Testing e2e with proxy...
|
echo Testing tests/e2e with proxy...
|
||||||
go test -tags "cov cluster_proxy" -timeout 30m -v "${REPO_PATH}/e2e" || failed="$failed e2e-proxy"
|
go test -tags "cov cluster_proxy" -timeout 30m -v "${REPO_PATH}/tests/e2e" || failed="$failed tests/e2e-proxy"
|
||||||
|
|
||||||
# incrementally merge to get coverage data even if some coverage files are corrupted
|
# incrementally merge to get coverage data even if some coverage files are corrupted
|
||||||
# optimistically assume etcdserver package's coverage file is OK since gocovmerge
|
# optimistically assume etcdserver package's coverage file is OK since gocovmerge
|
||||||
@ -297,13 +297,13 @@ function e2e_pass {
|
|||||||
USERTIMEOUT="${TIMEOUT}"
|
USERTIMEOUT="${TIMEOUT}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
go test -timeout "${USERTIMEOUT}" -v -cpu 1,2,4 "${RUN_ARG}" "$@" "${REPO_PATH}/e2e"
|
go test -timeout "${USERTIMEOUT}" -v -cpu 1,2,4 "${RUN_ARG}" "$@" "${REPO_PATH}/tests/e2e"
|
||||||
}
|
}
|
||||||
|
|
||||||
function integration_e2e_pass {
|
function integration_e2e_pass {
|
||||||
echo "Running integration and e2e tests..."
|
echo "Running integration and e2e tests..."
|
||||||
|
|
||||||
go test -timeout 20m -v -cpu 1,2,4 "$@" "${REPO_PATH}/e2e" &
|
go test -timeout 20m -v -cpu 1,2,4 "$@" "${REPO_PATH}/tests/e2e" &
|
||||||
e2epid="$!"
|
e2epid="$!"
|
||||||
go test -timeout 20m -v -cpu 1,2,4 "$@" "${REPO_PATH}/integration" &
|
go test -timeout 20m -v -cpu 1,2,4 "$@" "${REPO_PATH}/integration" &
|
||||||
intpid="$!"
|
intpid="$!"
|
||||||
@ -315,7 +315,7 @@ function integration_e2e_pass {
|
|||||||
function grpcproxy_pass {
|
function grpcproxy_pass {
|
||||||
go test -timeout 20m -v ${RACE} -tags cluster_proxy -cpu 1,2,4 "$@" "${REPO_PATH}/integration"
|
go test -timeout 20m -v ${RACE} -tags cluster_proxy -cpu 1,2,4 "$@" "${REPO_PATH}/integration"
|
||||||
go test -timeout 20m -v ${RACE} -tags cluster_proxy -cpu 1,2,4 "$@" "${REPO_PATH}/clientv3/integration"
|
go test -timeout 20m -v ${RACE} -tags cluster_proxy -cpu 1,2,4 "$@" "${REPO_PATH}/clientv3/integration"
|
||||||
go test -timeout 20m -v -tags cluster_proxy "$@" "${REPO_PATH}/e2e"
|
go test -timeout 20m -v -tags cluster_proxy "$@" "${REPO_PATH}/tests/e2e"
|
||||||
}
|
}
|
||||||
|
|
||||||
function release_pass {
|
function release_pass {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user