forked from knative/serving
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add an E2E test to ensure standard Knative install works (knative#4244)
* Add an E2E test to ensure standard Knative install works * Update test/e2e-smoke-tests.sh Co-Authored-By: mattmoor-sockpuppet <[email protected]>
- Loading branch information
1 parent
3506a2e
commit db1f6b6
Showing
7 changed files
with
148 additions
and
93 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 a Knative cluster setup and kubectl pointing | ||
# to it, call this script with the --run-tests arguments and it will use | ||
# 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 | ||
|
||
function knative_setup() { | ||
# Build serving, create $SERVING_YAML | ||
build_knative_from_source | ||
start_knative_serving "${SERVING_YAML}" | ||
} | ||
|
||
# Script entry point. | ||
|
||
initialize $@ | ||
|
||
# Ensure Knative Serving can be uninstalled/reinstalled cleanly | ||
subheader "Uninstalling Knative Serving" | ||
kubectl delete --ignore-not-found=true -f ${SERVING_YAML} || fail_test | ||
wait_until_object_does_not_exist namespaces knative-serving || fail_test | ||
|
||
subheader "Reinstalling Knative Serving" | ||
start_knative_serving "${SERVING_YAML}" || fail_test | ||
|
||
# Run smoke test | ||
subheader "Running smoke test" | ||
go_test_e2e ./test/e2e -run HelloWorld || fail_test | ||
|
||
success |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.