mirror of https://github.com/knative/caching.git
189 lines
5.9 KiB
Bash
189 lines
5.9 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright 2019 The Knative 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.
|
|
|
|
# This is a helper script for Knative E2E test scripts.
|
|
# See README.md for instructions on how to use it.
|
|
|
|
source "$(dirname "${BASH_SOURCE[0]:-$0}")/infra-library.sh"
|
|
|
|
# Tear down the test resources.
|
|
function teardown_test_resources() {
|
|
header "Tearing down test environment"
|
|
if function_exists test_teardown; then
|
|
test_teardown
|
|
fi
|
|
if function_exists knative_teardown; then
|
|
knative_teardown
|
|
fi
|
|
}
|
|
|
|
# Run the given E2E tests. Assume tests are tagged e2e, unless `-tags=XXX` is passed.
|
|
# Parameters: $1..$n - any go test flags, then directories containing the tests to run.
|
|
function go_test_e2e() {
|
|
local go_test_args=()
|
|
[[ ! " $*" == *" -tags="* ]] && go_test_args+=("-tags=e2e")
|
|
[[ ! " $*" == *" -count="* ]] && go_test_args+=("-count=1")
|
|
[[ ! " $*" == *" -race"* ]] && go_test_args+=("-race")
|
|
|
|
# Remove empty args as `go test` will consider it as running tests for the current directory, which is not expected.
|
|
for arg in "$@"; do
|
|
[[ -n "$arg" ]] && go_test_args+=("$arg")
|
|
done
|
|
report_go_test "${go_test_args[@]}"
|
|
}
|
|
|
|
# Setup the test cluster for running the tests.
|
|
function setup_test_cluster() {
|
|
# Fail fast during setup.
|
|
set -o errexit
|
|
set -o pipefail
|
|
|
|
header "Setting up test cluster"
|
|
kubectl get nodes
|
|
|
|
# Set the actual project the test cluster resides in
|
|
# It will be a project assigned by Boskos if test is running on Prow,
|
|
# otherwise will be ${E2E_GCP_PROJECT_ID} set up by user.
|
|
E2E_PROJECT_ID="$(gcloud config get-value project)"
|
|
export E2E_PROJECT_ID
|
|
readonly E2E_PROJECT_ID
|
|
|
|
local k8s_cluster
|
|
k8s_cluster=$(kubectl config current-context)
|
|
|
|
is_protected_cluster "${k8s_cluster}" && \
|
|
abort "kubeconfig context set to ${k8s_cluster}, which is forbidden"
|
|
|
|
# Setup KO_DOCKER_REPO if it is a GKE cluster. Incorporate an element of
|
|
# randomness to ensure that each run properly publishes images. Don't
|
|
# owerwrite KO_DOCKER_REPO if already set.
|
|
[ -z "${KO_DOCKER_REPO:-}" ] && \
|
|
[[ "${k8s_cluster}" =~ ^gke_.* ]] && \
|
|
export KO_DOCKER_REPO=gcr.io/${E2E_PROJECT_ID}/${REPO_NAME}-e2e-img/${RANDOM}
|
|
|
|
# Safety checks
|
|
is_protected_gcr "${KO_DOCKER_REPO}" && \
|
|
abort "\$KO_DOCKER_REPO set to ${KO_DOCKER_REPO}, which is forbidden"
|
|
|
|
# Use default namespace for all subsequent kubectl commands in this context
|
|
kubectl config set-context "${k8s_cluster}" --namespace=default
|
|
|
|
echo "- Cluster is ${k8s_cluster}"
|
|
echo "- KO_DOCKER_REPO is ${KO_DOCKER_REPO}"
|
|
|
|
(( TEARDOWN )) && add_trap teardown_test_resources EXIT
|
|
|
|
# Handle failures ourselves, so we can dump useful info.
|
|
set +o errexit
|
|
set +o pipefail
|
|
|
|
if function_exists knative_setup; then
|
|
knative_setup || fail_test "Knative setup failed"
|
|
fi
|
|
if function_exists test_setup; then
|
|
test_setup || fail_test "test setup failed"
|
|
fi
|
|
}
|
|
|
|
# Signal (as return code and in the logs) that all E2E tests passed.
|
|
function success() {
|
|
echo "**************************************"
|
|
echo "*** E2E TESTS PASSED ***"
|
|
echo "**************************************"
|
|
function_exists on_success && on_success
|
|
exit 0
|
|
}
|
|
|
|
# Exit test, dumping current state info.
|
|
# Parameters: $* - error message (optional).
|
|
function fail_test() {
|
|
local message="$*"
|
|
if [[ "X${message:-}X" == "XX" ]]; then
|
|
message='test failed'
|
|
fi
|
|
function_exists on_failure && on_failure
|
|
(( ! SKIP_DUMP_ON_FAILURE )) && dump_cluster_state
|
|
abort "${message}"
|
|
}
|
|
|
|
# Since create_test_cluster invokes the test script
|
|
# recursively we don't want to override these on the second
|
|
# invocation
|
|
TEARDOWN=${TEARDOWN:-0}
|
|
CLOUD_PROVIDER=${CLOUD_PROVIDER:-"gke"}
|
|
SKIP_DUMP_ON_FAILURE=${SKIP_DUMP_ON_FAILURE:-0}
|
|
E2E_SCRIPT=""
|
|
|
|
# Parse flags and initialize the test cluster.
|
|
function initialize() {
|
|
local run_tests=0
|
|
local custom_flags=()
|
|
local extra_gcloud_flags=()
|
|
local parse_script_flags=0
|
|
E2E_SCRIPT="$(get_canonical_path "$0")"
|
|
local e2e_script_command=( "${E2E_SCRIPT}" "--run-tests" )
|
|
|
|
for i in "$@"; do
|
|
if [[ $i == "--run-tests" ]]; then parse_script_flags=1; fi
|
|
done
|
|
|
|
cd "${REPO_ROOT_DIR}"
|
|
while [[ $# -ne 0 ]]; do
|
|
local parameter=$1
|
|
# Try parsing flag as a custom one.
|
|
if function_exists parse_flags; then
|
|
parse_flags "$@"
|
|
local skip=$?
|
|
if [[ ${skip} -ne 0 ]]; then
|
|
# Skip parsed flag (and possibly argument) and continue
|
|
# Also save it to it's passed through to the test script
|
|
for ((i=1;i<=skip;i++)); do
|
|
# Avoid double-parsing
|
|
if (( parse_script_flags )); then
|
|
e2e_script_command+=("$1")
|
|
fi
|
|
shift
|
|
done
|
|
continue
|
|
fi
|
|
fi
|
|
# Try parsing flag as a standard one.
|
|
case ${parameter} in
|
|
--run-tests) run_tests=1 ;;
|
|
--teardown) TEARDOWN=1 ;;
|
|
--skip-teardowns) echo "--skip-teardowns is no longer supported - opt in with --teardown" ;;
|
|
--skip-dump-on-failure) SKIP_DUMP_ON_FAILURE=1 ;;
|
|
--skip-istio-addon) echo "--skip-istio-addon is no longer supported" ;;
|
|
*)
|
|
case ${parameter} in
|
|
--cloud-provider) shift; CLOUD_PROVIDER="$1" ;;
|
|
*) custom_flags+=("$parameter") ;;
|
|
esac
|
|
esac
|
|
shift
|
|
done
|
|
|
|
readonly SKIP_DUMP_ON_FAILURE
|
|
readonly TEARDOWN
|
|
readonly CLOUD_PROVIDER
|
|
|
|
if (( ! run_tests )); then
|
|
create_test_cluster "${CLOUD_PROVIDER}" custom_flags extra_gcloud_flags e2e_script_command
|
|
else
|
|
setup_test_cluster
|
|
fi
|
|
}
|