From a287f11e0bb5cbd25778bbab352891005b829b98 Mon Sep 17 00:00:00 2001 From: justinsb Date: Sun, 30 Jan 2022 11:28:51 -0500 Subject: [PATCH] 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 ``` --- hack/run-e2e-from-source.sh | 50 +++++++++++++++++++++++++++++++++++++ hack/run-e2e.sh | 37 +++++++++++++++++++++++++++ 2 files changed, 87 insertions(+) create mode 100755 hack/run-e2e-from-source.sh create mode 100755 hack/run-e2e.sh diff --git a/hack/run-e2e-from-source.sh b/hack/run-e2e-from-source.sh new file mode 100755 index 0000000000..a63814e517 --- /dev/null +++ b/hack/run-e2e-from-source.sh @@ -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 diff --git a/hack/run-e2e.sh b/hack/run-e2e.sh new file mode 100755 index 0000000000..b504c93482 --- /dev/null +++ b/hack/run-e2e.sh @@ -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}"