podman/test
Matthew Heon 9147a56a01 Remove kpod rename
Libpod containers are immutable once created. They cannot be
renamed after created. As such remove kpod rename.

Signed-off-by: Matthew Heon <matthew.heon@gmail.com>

Closes: #101
Approved by: baude
2017-12-04 23:48:22 +00:00
..
bin2img Initial checkin from CRI-O repo 2017-11-01 11:24:59 -04:00
checkseccomp Initial checkin from CRI-O repo 2017-11-01 11:24:59 -04:00
copyimg Initial checkin from CRI-O repo 2017-11-01 11:24:59 -04:00
hooks Initial checkin from CRI-O repo 2017-11-01 11:24:59 -04:00
testdata Initial checkin from CRI-O repo 2017-11-01 11:24:59 -04:00
helpers.bash Attempt fix for persistent bash parameter expansion issues 2017-11-29 12:15:16 +00:00
kpod_attach.bats kpod attach 2017-12-04 17:00:48 +00:00
kpod_create.bats Short options! 2017-12-04 20:03:16 +00:00
kpod_diff.bats Use cached images for integration tests 2017-11-20 18:11:08 +00:00
kpod_export.bats Move removal of containers into teardown helper 2017-11-29 12:15:16 +00:00
kpod_history.bats Short options! 2017-12-04 20:03:16 +00:00
kpod_images.bats Short options! 2017-12-04 20:03:16 +00:00
kpod_import.bats Use cached images for integration tests 2017-11-20 18:11:08 +00:00
kpod_inspect.bats Use cached images for integration tests 2017-11-20 18:11:08 +00:00
kpod_kill.bats Move removal of containers into teardown helper 2017-11-29 12:15:16 +00:00
kpod_load.bats Use cached images for integration tests 2017-11-20 18:11:08 +00:00
kpod_logs.bats Move removal of containers into teardown helper 2017-11-29 12:15:16 +00:00
kpod_mount.bats Move removal of containers into teardown helper 2017-11-29 12:15:16 +00:00
kpod_pause.bats kpod create should not do an OCI Init 2017-12-04 17:35:14 +00:00
kpod_ps.bats Short options! 2017-12-04 20:03:16 +00:00
kpod_pull.bats Use cached images for integration tests 2017-11-20 18:11:08 +00:00
kpod_push.bats Add docker transport to push image before final failure 2017-11-28 12:53:25 +00:00
kpod_rm.bats Short options! 2017-12-04 20:03:16 +00:00
kpod_rmi.bats Short options! 2017-12-04 20:03:16 +00:00
kpod_run.bats Short options! 2017-12-04 20:03:16 +00:00
kpod_run_ns.bats Add NetMode, UTSMode and IPCMode 2017-12-02 15:32:56 +00:00
kpod_save.bats Attempt fix for persistent bash parameter expansion issues 2017-11-29 12:15:16 +00:00
kpod_start.bats kpod_start 2017-11-29 22:01:47 +00:00
kpod_stats.bats Use cached images for integration tests 2017-11-20 18:11:08 +00:00
kpod_stop.bats kpod stop -a 2017-12-01 13:18:32 +00:00
kpod_tag.bats Attempt fix for persistent bash parameter expansion issues 2017-11-29 12:15:16 +00:00
kpod_version.bats Attempt fix for persistent bash parameter expansion issues 2017-11-29 12:15:16 +00:00
kpod_wait.bats kpod_wait 2017-11-27 19:05:59 +00:00
policy.json Initial checkin from CRI-O repo 2017-11-01 11:24:59 -04:00
README.md Initial checkin from CRI-O repo 2017-11-01 11:24:59 -04:00
redhat_sigstore.yaml Initial checkin from CRI-O repo 2017-11-01 11:24:59 -04:00
registries.conf Initial checkin from CRI-O repo 2017-11-01 11:24:59 -04:00
test_runner.sh Enhancements to papr tests 2017-11-17 02:07:18 +00:00

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 Docker:

$ 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/sstephenson/bats.git
$ cd bats
$ ./install.sh /usr/local

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

$ go get github.com/containernetworking/cni
$ cd "$GOPATH/src/github.com/containernetworking/cni"
$ git checkout -q d4bbce1865270cd2d2be558d6a23e63d314fe769
$ ./build.sh \
$ mkdir -p /opt/cni/bin \
$ cp bin/* /opt/cni/bin/

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 one could use the Clear Containers runtime instead of runc:

make localintegration RUNTIME=cc-oci-runtime

Writing integration tests

[Helper functions] (https://github.com/kubernetes-incubator/crio/blob/master/test/helpers.bash) 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 "crioctl runtimeversion" {
	start_crio
	crioctl runtimeversion
	[ "$status" -eq 0 ]
}