package
0.10.0
Repository: https://github.com/openshift/knative-serving.git
Documentation: pkg.go.dev

# README

Test

This directory contains tests and testing docs for Knative Serving:

The conformance tests are a subset of the end to end test with more strict requirements around what can be tested.

If you want to add more tests, see adding_tests.md.

Presubmit tests

presubmit-tests.sh is the entry point for both the end-to-end tests and the conformance tests

This script, and consequently, the e2e and conformance tests will be run before every code submission. You can run these tests manually with:

test/presubmit-tests.sh

Note that to run presubmit-tests.sh or e2e-tests.sh scripts, you'll need kubernetes kubetest installed:

go get -u k8s.io/test-infra/kubetest

Running unit tests

To run all unit tests:

go test ./...

By default go test will not run the e2e tests, which need -tags=e2e to be enabled.

Running end to end tests

To run the e2e tests and the conformance tests, you need to have a running environment that meets the e2e test environment requirements, and you need to specify the build tag e2e.

go test -v -tags=e2e -count=1 ./test/conformance/...
go test -v -tags=e2e -count=1 ./test/e2e

Running performance tests

To run the performance tests, you need to have a running environment that meets the test environment requirements, and you need to specify the build tag performance.

go test -v -tags=performance -count=1 ./test/performance

Running a single test case

To run one e2e test case, e.g. TestAutoscaleUpDownUp, use the -run flag with go test:

go test -v -tags=e2e -count=1 ./test/e2e -run ^TestAutoscaleUpDownUp$

Running tests in short mode

Running tests in short mode excludes some large-scale E2E tests and saves time/resources required for running the test suite. To run the tests in short mode, use the -short flag with go test

go test -v -tags=e2e -count=1 -short ./test/e2e

To get a better idea where the flag is used, search for testing.Short() throughout the test source code.

Environment requirements

These tests require:

  1. A running Knative Serving cluster.

  2. The knative-testing resources:

    ko apply -f test/config
    
  3. A docker repo containing the test images

Common Flags

You can use test flags to control the environment your tests run against, i.e. override your environment variables:

go test -v -tags=e2e -count=1 ./test/conformance/... --kubeconfig ~/special/kubeconfig --cluster myspecialcluster --dockerrepo myspecialdockerrepo
go test -v -tags=e2e -count=1 ./test/e2e --kubeconfig ~/special/kubeconfig --cluster myspecialcluster --dockerrepo myspecialdockerrepo

Test images

Building the test images

Note: this is only required when you run conformance/e2e tests locally with go test commands.

The upload-test-images.sh script can be used to build and push the test images used by the conformance and e2e tests. The script expects your environment to be setup as described in DEVELOPMENT.md.

To run the script for all end to end test images:

./test/upload-test-images.sh

A docker tag may be passed as an optional parameter. This can be useful on Minikube in tandem with the --tag flag:

eval $(minikube docker-env)
./test/upload-test-images.sh any-old-tag

Adding new test images

New test images should be placed in ./test/test_images.

Flags

These flags are useful for running against an existing cluster, making use of your existing environment setup.

Tests importing github.com/knative/serving/test recognize these flags:

Overridding docker repo

The --dockerrepo argument lets you specify the docker repo from which images used by your tests should be pulled. This will default to the value of your KO_DOCKER_REPO environment variable if not specified.

go test -v -tags=e2e -count=1 ./test/conformance/... --dockerrepo gcr.myhappyproject
go test -v -tags=e2e -count=1 ./test/e2e --dockerrepo gcr.myhappyproject

Using a docker tag

The default docker tag used for the test images is latest, which can be problematic on Minikube. To avoid having to configure a remote container registry to support the Always pull policy for latest tags, you can have the tests use a specific tag:

go test -v -tags=e2e -count=1 ./test/conformance/... --tag any-old-tag
go test -v -tags=e2e -count=1 ./test/e2e --tag any-old-tag

Of course, this implies that you tagged the images when you uploaded them.

Using a custom ingress endpoint

Some environments (like minikube) do not support a Loadbalancer to make Knative services externally available. These environments usually rely on rewriting the Loadbalancer to a NodePort. The external address of such a NodePort is usually not easily obtained within the cluster automatically, but can be provided from the outside through the --ingressendpoint flag. For a minikube setup for example, you'd want to run tests against the default ingressgateway (port number 31380) running on the minikube node:

go test -v -tags=e2e -count=1 ./test/conformance/... --ingressendpoint "$(minikube ip):31380"
go test -v -tags=e2e -count=1 ./test/e2e --ingressendpoint "$(minikube ip):31380"

Using a resolvable domain

If you set up your cluster using the getting started docs, Routes created in the test will use the domain example.com, unless the route has label app=prod in which case they will use the domain prod-domain.com. Since these domains will not be resolvable to deployments in your test cluster, in order to make a request against the endpoint, the test use the IP assigned to the service istio-ingressgateway in the namespace istio-system and spoof the Host in the header.

If you have configured your cluster to use a resolvable domain, you can use the --resolvabledomain flag to indicate that the test should make requests directly against Route.Status.Domain and does not need to spoof the Host.

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Functions

AssertProberDefault is a helper for stopping the Prober and checking its SLI against the default SLO, which requires perfect responses.
CheckSLO compares the SLI of the given prober against the SLO, erroring if too low.
CleanupOnInterrupt will execute the function cleanup if an interrupt signal is caught.
TODO(dangerd): Remove this and use duck.CreateBytePatch after release-0.9 CreateBytePatch is a helper function that creates the same content as CreatePatch, but returns in []byte format instead of JSONPatch.
ListenAndServeGracefully calls into ListenAndServeGracefullyWithPattern by passing handler to handle requests for "/".
ListenAndServeGracefullyWithPattern creates an HTTP server, listens on the defined address and handles incoming requests with the given handler.
NewClients instantiates and returns several clientsets required for making request to the Knative Serving cluster specified by the combination of clusterName and configPath.
NewProberManager creates a new manager for probes.
RunRouteProber starts a single Prober of the given domain.
Setup creates client to run Knative Service requests.
SubServiceNameForTest generates a random service name based on the test name and the given subservice name.
TearDown will delete created names using clients.

# Constants

AlternativeServingNamespace is a different namepace to run cross- namespace tests in.
Test image names.
Constants for test images located in test/test_images.
ConformanceConfigMap is the name of the configmap to propagate env variables from.
ConformanceSecret is the name of the secret to propagate env variables from.
E2EMetricExporter is the name for the metrics exporter logger.
EnvKey is the configmap/secret key which contains test value.
EnvValue is the configmap/secret test value to match env variable with.
Constants for test images located in test/test_images.
Constants for test images located in test/test_images.
HelloVolumePath is the path to the test volume.
Constants for test images located in test/test_images.
Constants for test images located in test/test_images.
Constants for test images located in test/test_images.
Not a real image.
We expect to see 100% of requests succeed for traffic sent directly to revisions.
We expect to see at least 25% of either response since we're routing 50/50.
Constants for test images located in test/test_images.
Constants for test images located in test/test_images.
Constants for test image output.
Constants for test images located in test/test_images.
PollInterval is how frequently e2e tests will poll for updates.
PollTimeout is how long e2e tests will wait for resource updates when polling.
Constants for test images located in test/test_images.
Constants for test images located in test/test_images.
ServingNamespace is the default namespace for serving e2e tests.
Constants for test images located in test/test_images.
Constants for test images located in test/test_images.
Constants for test images located in test/test_images.

# Variables

AppendRandomString will generate a random string that begins with prefix.
MakeK8sNamePrefix will convert each chunk of non-alphanumeric character into a single dash and also convert camelcase tokens into dash-delimited lowercase tokens.
ObjectNameForTest generates a random object name based on the test name.
ServingFlags holds the flags or defaults for knative/serving settings in the user's environment.

# Structs

Clients holds instances of interfaces for making requests to Knative Serving.
NetworkingClients holds instances of interfaces for making requests to Knative networking clients.
ResourceNames holds names of various resources.
ServingAlphaClients holds instances of interfaces for making requests to knative serving clients.
ServingBetaClients holds instances of interfaces for making requests to knative serving clients.
ServingClients holds instances of interfaces for making requests to knative serving clients.
ServingEnvironmentFlags holds the e2e flags needed only by the serving repo.

# Interfaces

Prober is the interface for a prober, which checks the result of the probes when stopped.
ProberManager is the interface for spawning probers, and checking their results.