dev: create scripts to make it easier to run e2e tests

Assumes an existing cluster, but then example usage:

```
./hack/run-e2e-from-source.sh aws.*Pre-provisioned.*ext4
```
This commit is contained in:
justinsb 2022-01-30 11:28:51 -05:00
parent d6cb49747c
commit a287f11e0b
2 changed files with 87 additions and 0 deletions

50
hack/run-e2e-from-source.sh Executable file
View File

@ -0,0 +1,50 @@
#!/bin/bash
# Copyright 2022 The Kubernetes Authors.
#
# 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
set -x
FOCUS=$1
# start at the root of the repo
REPO_ROOT="$(git rev-parse --show-toplevel)"
BASEDIR="${REPO_ROOT}/tests/e2e"
BINDIR="${BASEDIR}/.build/"
mkdir -p "${BINDIR}/"
pushd "${BASEDIR}"
go build -o "${BINDIR}/kubetest2-kops" ./kubetest2-kops
go build -o "${BINDIR}/kubetest2-tester-kops" ./kubetest2-tester-kops
popd
pushd ~/k8s/src/k8s.io/kubernetes
go build -o "${BINDIR}/kubectl" ./cmd/kubectl
# e2e.test is build from the test sources
#go build -o "${BINDIR}/e2e.test" ./test/e2e
go test -c -o "${BINDIR}/e2e.test" ./test/e2e
go build -o "${BINDIR}/ginkgo" ./vendor/github.com/onsi/ginkgo/ginkgo
popd
export PATH="${BINDIR}/:${PATH}"
# --use-built-binaries expects to find binaries in current working directory
cd "${BINDIR}"
kubetest2-kops --test=kops -- --test-args="-test.timeout=60m -num-nodes=0 --ginkgo.focus=${FOCUS}" --use-built-binaries

37
hack/run-e2e.sh Executable file
View File

@ -0,0 +1,37 @@
#!/bin/bash
# Copyright 2022 The Kubernetes Authors.
#
# 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
set -x
FOCUS=$1
# start at the root of the repo
REPO_ROOT="$(git rev-parse --show-toplevel)"
BASEDIR="${REPO_ROOT}/tests/e2e"
BINDIR="${BASEDIR}/.build/"
mkdir -p "${BINDIR}/"
pushd "${BASEDIR}"
go build -o "${BINDIR}/kubetest2-kops" ./kubetest2-kops
go build -o "${BINDIR}/kubetest2-tester-kops" ./kubetest2-tester-kops
popd
export PATH="${BINDIR}/:$PATH"
kubetest2-kops --test=kops -- --test-args="-test.timeout=60m -num-nodes=0 --ginkgo.focus=${FOCUS}"