test/

directory
v1.30.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 15, 2024 License: Apache-2.0

README

CRIO Integration Tests

Integration tests provide end-to-end testing of CRIO.

Note that integration tests do not replace unit tests.

As a rule of thumb, code should be tested thoroughly with unit tests. Integration tests on the other hand are meant to test a specific feature end to end.

Integration tests are written in bash using the bats framework.

Running integration tests

Containerized tests

The easiest way to run integration tests is with Podman:

make integration

To run a single test bucket:

make integration TESTFLAGS="runtimeversion.bats"
On your host

To run the integration tests on your host, you will first need to setup a development environment plus bats For example:

cd ~/go/src/github.com
git clone https://github.com/bats-core/bats-core.git
cd bats
./install.sh /usr/local

You will also need to install the CNI plugins as the default pod test template runs without host networking.

Check instruction here

Then you can run the tests on your host:

sudo make localintegration

To run a single test bucket:

make localintegration TESTFLAGS="runtimeversion.bats"

Or you can just run them directly using bats

sudo bats test
Runtime selection

Tests on the host will run with runc as the default runtime. However you can select other OCI compatible runtimes by setting the RUNTIME environment variable.

For example, to use crun instead of runc:

make CONTAINER_DEFAULT_RUNTIME=crun localintegration

If you'd like to run the tests with a runtime of a different type, you need to also specify $RUNTIME_TYPE

For example, to use kata with shim v2:

make CONTAINER_DEFAULT_RUNTIME=containerd-shim-kata-v2 RUNTIME_TYPE=vm localintegration

Writing integration tests

Helper functions are provided in order to facilitate writing tests.

#!/usr/bin/env bats

# This will load the helpers.
load helpers

# setup is called at the beginning of every test.
function setup() {
}

# teardown is called at the end of every test.
function teardown() {
  cleanup_test
}

@test "crictl runtimeversion" {
  start_crio
  crictl runtimeversion
}

Directories

Path Synopsis
mocks
cmdrunner
Package cmdrunnermock is a generated GoMock package.
Package cmdrunnermock is a generated GoMock package.
containereventserver
Package containereventservermock is a generated GoMock package.
Package containereventservermock is a generated GoMock package.
containers/image/v5
Package imagetypesmock is a generated GoMock package.
Package imagetypesmock is a generated GoMock package.
containerstorage
Package containerstoragemock is a generated GoMock package.
Package containerstoragemock is a generated GoMock package.
criostorage
Package criostoragemock is a generated GoMock package.
Package criostoragemock is a generated GoMock package.
lib
Package libconfigmock is a generated GoMock package.
Package libconfigmock is a generated GoMock package.
oci
Package ocimock is a generated GoMock package.
Package ocimock is a generated GoMock package.
ociartifact
Package ociartifactmock is a generated GoMock package.
Package ociartifactmock is a generated GoMock package.
ocicni
Package ocicnitypesmock is a generated GoMock package.
Package ocicnitypesmock is a generated GoMock package.
seccompociartifact
Package seccompociartifactmock is a generated GoMock package.
Package seccompociartifactmock is a generated GoMock package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL