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.
|
|
|
|
|
2014-06-13 19:35:03 +00:00
|
|
|
# Starts a Kubernetes cluster, runs the e2e test suite, and shuts it
|
2014-06-06 23:40:48 +00:00
|
|
|
# down.
|
2014-10-15 18:54:28 +00:00
|
|
|
#
|
|
|
|
# Environment flags:
|
|
|
|
# TEST_PATTERN: A pattern to match test filenames against.
|
|
|
|
# Example: "TEST_PATTERN=up" would match tests named "update.sh" and
|
|
|
|
# "hiccup.sh".
|
2014-06-06 23:40:48 +00:00
|
|
|
|
2014-10-06 20:25:27 +00:00
|
|
|
set -o errexit
|
|
|
|
set -o nounset
|
|
|
|
set -o pipefail
|
|
|
|
|
2014-09-24 23:03:38 +00:00
|
|
|
# Use testing config
|
|
|
|
export KUBE_CONFIG_FILE="config-test.sh"
|
2014-10-03 21:58:49 +00:00
|
|
|
KUBE_ROOT=$(dirname "${BASH_SOURCE}")/..
|
2014-09-24 17:55:58 +00:00
|
|
|
|
|
|
|
# TODO(jbeda): This will break on usage if there is a space in
|
2014-10-03 21:58:49 +00:00
|
|
|
# ${KUBE_ROOT}. Covert to an array? Or an exported function?
|
|
|
|
export KUBECFG="${KUBE_ROOT}/cluster/kubecfg.sh -expect_version_match"
|
2014-09-24 23:03:38 +00:00
|
|
|
|
2014-10-03 21:58:49 +00:00
|
|
|
source "${KUBE_ROOT}/cluster/kube-env.sh"
|
|
|
|
source "${KUBE_ROOT}/cluster/$KUBERNETES_PROVIDER/util.sh"
|
2014-07-14 17:50:04 +00:00
|
|
|
|
2014-06-13 23:26:38 +00:00
|
|
|
# For debugging of this test's components, it's helpful to leave the test
|
|
|
|
# cluster running.
|
|
|
|
ALREADY_UP=${1:-0}
|
|
|
|
LEAVE_UP=${2:-0}
|
2014-08-14 16:48:46 +00:00
|
|
|
TEAR_DOWN=${3:-0}
|
2014-06-13 23:26:38 +00:00
|
|
|
|
2014-08-14 16:48:46 +00:00
|
|
|
if [[ $TEAR_DOWN -ne 0 ]]; then
|
2014-08-14 20:57:50 +00:00
|
|
|
detect-project
|
2014-08-14 16:48:46 +00:00
|
|
|
trap test-teardown EXIT
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2014-07-14 17:50:04 +00:00
|
|
|
# Build a release required by the test provider [if any]
|
|
|
|
test-build-release
|
2014-06-06 23:40:48 +00:00
|
|
|
|
2014-06-16 06:39:24 +00:00
|
|
|
if [[ ${ALREADY_UP} -ne 1 ]]; then
|
2014-06-13 23:26:38 +00:00
|
|
|
# Now bring a test cluster up with that release.
|
2014-10-03 21:58:49 +00:00
|
|
|
"${KUBE_ROOT}/cluster/kube-up.sh"
|
2014-06-16 06:39:24 +00:00
|
|
|
else
|
|
|
|
# Just push instead
|
2014-10-03 21:58:49 +00:00
|
|
|
"${KUBE_ROOT}/cluster/kube-push.sh"
|
2014-06-13 23:26:38 +00:00
|
|
|
fi
|
2014-06-06 23:40:48 +00:00
|
|
|
|
2014-07-14 17:50:04 +00:00
|
|
|
# Perform any required setup of the cluster
|
|
|
|
test-setup
|
2014-06-13 19:35:03 +00:00
|
|
|
|
|
|
|
set +e
|
|
|
|
|
2014-06-13 23:26:38 +00:00
|
|
|
if [[ ${LEAVE_UP} -ne 1 ]]; then
|
2014-07-14 17:50:04 +00:00
|
|
|
trap test-teardown EXIT
|
2014-06-13 23:26:38 +00:00
|
|
|
fi
|
2014-06-06 23:40:48 +00:00
|
|
|
|
2014-10-15 18:54:28 +00:00
|
|
|
TEST_PATTERN="${TEST_PATTERN:-}"
|
2014-10-16 18:08:39 +00:00
|
|
|
failed=()
|
2014-10-03 21:58:49 +00:00
|
|
|
for test_file in $(ls "${KUBE_ROOT}/hack/e2e-suite/"); do
|
2014-10-15 18:54:28 +00:00
|
|
|
if [[ "${TEST_PATTERN}" != "" ]]; then
|
|
|
|
check=".*${TEST_PATTERN}.*"
|
|
|
|
if [[ ! "$test_file" =~ $check ]]; then
|
|
|
|
echo "skipping $test_file"
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "running $test_file"
|
2014-10-16 18:08:39 +00:00
|
|
|
result=0
|
|
|
|
"${KUBE_ROOT}/hack/e2e-suite/${test_file}" || result="$?"
|
2014-06-13 23:26:38 +00:00
|
|
|
if [[ "${result}" -eq "0" ]]; then
|
|
|
|
echo "${test_file} returned ${result}; passed!"
|
2014-06-13 19:35:03 +00:00
|
|
|
else
|
2014-06-13 23:26:38 +00:00
|
|
|
echo "${test_file} returned ${result}; FAIL!"
|
2014-10-16 18:08:39 +00:00
|
|
|
failed+=(${test_file})
|
2014-06-13 19:35:03 +00:00
|
|
|
fi
|
2014-06-06 23:40:48 +00:00
|
|
|
done
|
|
|
|
|
2014-10-15 20:56:58 +00:00
|
|
|
echo
|
2014-10-16 18:08:39 +00:00
|
|
|
if [[ "${#failed[*]}" -eq 0 ]]; then
|
2014-10-15 20:56:58 +00:00
|
|
|
echo "Final: All tests passed."
|
|
|
|
else
|
2014-10-16 18:08:39 +00:00
|
|
|
echo "Final: ${#failed[@]} tests failed: ${failed[@]}."
|
2014-06-13 23:26:38 +00:00
|
|
|
fi
|
|
|
|
|
2014-10-16 18:08:39 +00:00
|
|
|
exit "${#failed[@]}"
|