forked from istio/istio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathe2e-kind-suite.sh
executable file
·89 lines (73 loc) · 2.65 KB
/
e2e-kind-suite.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/bin/bash
# Copyright 2019 Istio 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.
#######################################################
# e2e-suite runs Istio E2E tests. #
# #
# Usage: ./e2e-kind-suite.sh --single_test mixer_e2e #
# #
# ${E2E_ARGS} can be used to provide additional test #
# arguments. #
#######################################################
WD=$(dirname "$0")
WD=$(cd "$WD"; pwd)
ROOT=$(dirname "$WD")
# Exit immediately for non zero status
set -e
# Check unset variables
set -u
# Print commands
set -x
E2E_ARGS+=("--test_logs_path=${ARTIFACTS_DIR}")
# e2e tests with kind clusters on prow will get deleted when prow
# deleted the pod
E2E_ARGS+=("--skip_cleanup")
E2E_ARGS+=("--use_local_cluster")
# getopts only handles single character flags
for ((i=1; i<=$#; i++)); do
case ${!i} in
# -s/--single_test to specify test target to run.
# e.g. "-s e2e_mixer" will trigger e2e mixer_test
-s|--single_test) ((i++)); SINGLE_TEST=${!i}
continue
;;
--timeout) ((i++)); E2E_TIMEOUT=${!i}
continue
;;
esac
E2E_ARGS+=( "${!i}" )
done
# shellcheck source=prow/lib.sh
source "${ROOT}/prow/lib.sh"
setup_kind_cluster
export HUB=${HUB:-"gcr.io/istio-testing"}
export TAG="${TAG:-${GIT_SHA}}"
make init
make docker
function build_kind_images(){
# Create a temp directory to store the archived images.
TMP_DIR=$(mktemp -d)
IMAGE_FILE="${TMP_DIR}"/image.tar
# Archived local images and load it into KinD's docker daemon
# Kubernetes in KinD can only access local images from its docker daemon.
docker images "${HUB}"/*:"${TAG}"| awk 'FNR>1 {print $1 ":" $2}' | xargs docker save -o "${IMAGE_FILE}"
kind load --name e2e-suite image-archive "${IMAGE_FILE}"
# Delete the local tar images.
rm -rf "${IMAGE_FILE}"
}
build_kind_images
time ISTIO_DOCKER_HUB=$HUB \
E2E_ARGS="${E2E_ARGS[*]}" \
JUNIT_E2E_XML="${ARTIFACTS_DIR}/junit.xml" \
make with_junit_report TARGET="${SINGLE_TEST}" ${E2E_TIMEOUT:+ E2E_TIMEOUT="${E2E_TIMEOUT}"}