forked from knative/serving
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapicoverage.sh
More file actions
executable file
·52 lines (40 loc) · 1.95 KB
/
apicoverage.sh
File metadata and controls
executable file
·52 lines (40 loc) · 1.95 KB
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
#!/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 script runs the end-to-end tests against Knative Serving built from source.
# It is started by prow for each PR. For convenience, it can also be executed manually.
# If you already have the *_OVERRIDE environment variables set, call
# this script with the --run-tests arguments and it will start knative in
# the cluster and run the tests.
# Calling this script without arguments will create a new cluster in
# project $PROJECT_ID, start knative in it, run the tests and delete the
# cluster.
source $(dirname $0)/e2e-common.sh
readonly SERVING_TEST_DIR=$(dirname $0)
readonly APICOVERAGE_IMAGE=$SERVING_TEST_DIR/apicoverage/image
readonly APICOVERAGE_TOOL=$SERVING_TEST_DIR/apicoverage/tools
function knative_setup() {
install_knative_serving
}
# Script entry point.
initialize $@ --skip-istio-addon
header "Setting up API Coverage Webhook"
kubectl apply -f $APICOVERAGE_IMAGE/service-account.yaml || fail_test "Failed setting up service account for apicoverage-webhook"
ko apply -f $APICOVERAGE_IMAGE/apicoverage-webhook.yaml || fail_test "Failed setting up apicoverage-webhook"
header "Running tests"
# Run conformance tests and e2e tests
go_test_e2e -timeout=30m ./test/conformance ./test/e2e || fail_test "Failed in executing Tests"
header "Retrieving API Coverage values"
go run $APICOVERAGE_TOOL/main.go || fail_test "Failed retrieving API coverage values"
success