Skip to content

Latest commit

 

History

History
253 lines (192 loc) · 8.33 KB

adding_tests.md

File metadata and controls

253 lines (192 loc) · 8.33 KB

Adding tests

If you are developing knative you may need to add or change:

Both tests can use our test library.

Reviewers of conformance and e2e tests (i.e. OWNERS) are responsible for the style and quality of the resulting tests. In order to not discourage contributions, when style change are required, the reviewers can make the changes themselves.

All e2e and conformance tests must be marked with the e2e build constraint so that go test ./... can be used to run only the unit tests, i.e.:

// +build e2e

Test library

In the test dir you will find several libraries in the test package you can use in your tests.

This library exists partially in this directory and partially in knative/pkg/test.

The libs in this dir can:

See knative/pkg/test to:

  • Output logs
  • Emit metrics
  • Ensure test cleanup

Use common test flags

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

By importing github.com/knative/serving/test you get access to a global variable called test.Flags which holds the values of the command line flags.

imagePath := strings.Join([]string{test.ServingFlags.DockerRepo, image}, "/"))

See e2e_flags.go.

Get access to client objects

To initialize client objects that you can use the command line flags that describe the environment:

func setup(t *testing.T) *test.Clients {
    clients, err := test.NewClients(kubeconfig, cluster, namespaceName)
    if err != nil {
        t.Fatalf("Couldn't initialize clients: %v", err)
    }
    return clients
}

The Clients struct contains initialized clients for accessing:

  • Kubernetes objects
  • Routes
  • Configurations
  • Revisions

For example, to create a Route:

_, err = clients.ServingClient.Routes.Create(test.Route(namespaceName, routeName, configName))

And you can use the client to clean up Route and Configuration resources created by your test:

func tearDown(clients *test.Clients) {
    if clients != nil {
        clients.Delete([]string{routeName}, []string{configName})
    }
}

See clients.go.

Make requests against deployed services

After deploying (i.e. creating a Route and a Configuration) an endpoint will not be ready to serve requests right away. To poll a deployed endpoint and wait for it to be in the state you want it to be in (or timeout) use WaitForEndpointState:

err = pkgTest.WaitForEndpointState(
        clients.KubeClient,
        logger,
        updatedRoute.Status.Domain,
        pkgTest.EventuallyMatchesBody(expectedText),
        "SomeDescription",
        test.ServingFlags.ResolvableDomain)
if err != nil {
    t.Fatalf("The endpoint for Route %s at domain %s didn't serve the expected text \"%s\": %v", routeName, updatedRoute.Status.Domain, expectedText, err)
}

This function makes use of the environment flag resolvableDomain to determine if the ingress should be used or the domain should be used directly.

See request.go.

If you need more low-level access to the http request or response against a deployed service, you can directly use the SpoofingClient that WaitForEndpointState wraps.

// Error handling elided for brevity, but you know better.
client, err := pkgTest.NewSpoofingClient(clients.KubeClient.Kube, logger, route.Status.Domain, test.ServingFlags.ResolvableDomain)
req, err := http.NewRequest(http.MethodGet, fmt.Sprintf("http://%s", route.Status.Domain), nil)

// Single request.
resp, err := client.Do(req)

// Polling until we meet some condition.
resp, err := client.Poll(req, test.BodyMatches(expectedText))

See spoof.go.

Check Knative Serving resources

After creating Knative Serving resources or making changes to them, you will need to wait for the system to realize those changes. You can use the Knative Serving CRD check and polling methods to check the resources are either in or reach the desired state.

The WaitFor* functions use the kubernetes wait package. To poll they use PollImmediate and the return values of the function you provide behave the same as ConditionFunc: a bool to indicate if the function should stop or continue polling, and an error to indicate if there has been an error.

For example, you can poll a Configuration object to find the name of the Revision that was created for it:

var revisionName string
err := test.WaitForConfigurationState(clients.ServingClient, configName, func(c *v1alpha1.Configuration) (bool, error) {
    if c.Status.LatestCreatedRevisionName != "" {
        revisionName = c.Status.LatestCreatedRevisionName
        return true, nil
    }
    return false, nil
}, "ConfigurationUpdatedWithRevision")

Metrics will be emitted for these Wait method tracking how long test poll for.

We also have Check* variants of many of these methods with identical signatures, same example:

var revisionName string
err := test.CheckConfigurationState(clients.ServingClient, configName, func(c *v1alpha1.Configuration) (bool, error) {
    if c.Status.LatestCreatedRevisionName != "" {
        revisionName = c.Status.LatestCreatedRevisionName
        return true, nil
    }
    return false, nil
})

See crd_checks.go and kube_checks.go.

Verify resource state transitions

To use the check functions you must provide a function to check the state. Some of the expected transition states (as defined in the Knative Serving spec) are expressed in functions in states.go.

For example when a Revision has been created, the system will start the resources required to actually serve it, and then the Revision object will be updated to indicate it is ready. This can be polled with test.IsRevisionReady:

err := test.WaitForRevisionState(clients.ServingClient, revisionName, test.IsRevisionReady(revisionName))
if err != nil {
    t.Fatalf("Revision %s did not become ready to serve traffic: %v", revisionName, err)
}

Once the Revision is created, all traffic for a Route should be routed to it. This can be polled with test.AllRouteTrafficAtRevision:

err = test.WaitForRouteState(clients.ServingClient, routeName, test.AllRouteTrafficAtRevision(routeName, revisionName))
if err != nil {
    t.Fatalf("The Route %s was not updated to route traffic to the Revision %s: %v", routeName, revisionName, err)
}

See states.go.

Generate boilerplate CRDs

Your tests will probably need to create Route and Configuration objects. You can use the existing boilerplate to describe them.

You can also use the function AppendRandomString to create a random name for your crd so that your tests can use unique names each time they run.

For example to create a Configuration object that uses a certain docker image with a randomized name:

func TestSomeAwesomeFeature(t *testing.T) {
  var names test.ResourceNames
  names.Config := test.ObjectNameForTest(t)
  _, err := clients.ServingClient.Create(test.Configuration(namespaceName, names, imagePath))
  if err != nil {
      // handle error case
  }
  // more testing
}

Please expand these functions as more use cases are tested.

See crd.go.