mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 14:13:58 +08:00
ba38383a39
This adds targets for rootless integration tests, as well as all of the required setup in order to get the tests to run. This includes quite a few changes, because of a lot of assumptions about things running as root within the bats scripts (which is not true when setting up rootless containers). Signed-off-by: Aleksa Sarai <asarai@suse.de>
119 lines
2.9 KiB
Bash
119 lines
2.9 KiB
Bash
#!/usr/bin/env bats
|
|
|
|
load helpers
|
|
|
|
function setup() {
|
|
teardown_busybox
|
|
setup_busybox
|
|
}
|
|
|
|
function teardown() {
|
|
teardown_busybox
|
|
}
|
|
|
|
@test "checkpoint and restore" {
|
|
# XXX: currently criu require root containers.
|
|
requires criu root
|
|
|
|
# criu does not work with external terminals so..
|
|
# setting terminal and root:readonly: to false
|
|
sed -i 's;"terminal": true;"terminal": false;' config.json
|
|
sed -i 's;"readonly": true;"readonly": false;' config.json
|
|
sed -i 's/"sh"/"sh","-c","while :; do date; sleep 1; done"/' config.json
|
|
|
|
(
|
|
# run busybox (not detached)
|
|
runc run test_busybox
|
|
[ "$status" -eq 0 ]
|
|
) &
|
|
|
|
# check state
|
|
wait_for_container 15 1 test_busybox
|
|
|
|
runc state test_busybox
|
|
[ "$status" -eq 0 ]
|
|
[[ "${output}" == *"running"* ]]
|
|
|
|
# checkpoint the running container
|
|
runc --criu "$CRIU" checkpoint test_busybox
|
|
# if you are having problems getting criu to work uncomment the following dump:
|
|
#cat /run/opencontainer/containers/test_busybox/criu.work/dump.log
|
|
[ "$status" -eq 0 ]
|
|
|
|
# after checkpoint busybox is no longer running
|
|
runc state test_busybox
|
|
[ "$status" -ne 0 ]
|
|
|
|
# restore from checkpoint
|
|
(
|
|
runc --criu "$CRIU" restore test_busybox
|
|
[ "$status" -eq 0 ]
|
|
) &
|
|
|
|
# check state
|
|
wait_for_container 15 1 test_busybox
|
|
|
|
# busybox should be back up and running
|
|
runc state test_busybox
|
|
[ "$status" -eq 0 ]
|
|
[[ "${output}" == *"running"* ]]
|
|
}
|
|
|
|
@test "checkpoint --pre-dump and restore" {
|
|
# XXX: currently criu require root containers.
|
|
requires criu root
|
|
|
|
# criu does not work with external terminals so..
|
|
# setting terminal and root:readonly: to false
|
|
sed -i 's;"terminal": true;"terminal": false;' config.json
|
|
sed -i 's;"readonly": true;"readonly": false;' config.json
|
|
sed -i 's/"sh"/"sh","-c","while :; do date; sleep 1; done"/' config.json
|
|
|
|
(
|
|
# run busybox (not detached)
|
|
runc run test_busybox
|
|
[ "$status" -eq 0 ]
|
|
) &
|
|
|
|
# check state
|
|
wait_for_container 15 1 test_busybox
|
|
|
|
runc state test_busybox
|
|
[ "$status" -eq 0 ]
|
|
[[ "${output}" == *"running"* ]]
|
|
|
|
|
|
#test checkpoint pre-dump
|
|
mkdir parent-dir
|
|
runc --criu "$CRIU" checkpoint --pre-dump --image-path ./parent-dir test_busybox
|
|
[ "$status" -eq 0 ]
|
|
|
|
# busybox should still be running
|
|
runc state test_busybox
|
|
[ "$status" -eq 0 ]
|
|
[[ "${output}" == *"running"* ]]
|
|
|
|
# checkpoint the running container
|
|
mkdir image-dir
|
|
runc --criu "$CRIU" checkpoint --parent-path ./parent-dir --image-path ./image-dir test_busybox
|
|
[ "$status" -eq 0 ]
|
|
|
|
# after checkpoint busybox is no longer running
|
|
runc state test_busybox
|
|
[ "$status" -ne 0 ]
|
|
|
|
# restore from checkpoint
|
|
(
|
|
runc --criu "$CRIU" restore --image-path ./image-dir test_busybox
|
|
[ "$status" -eq 0 ]
|
|
) &
|
|
|
|
# check state
|
|
wait_for_container 15 1 test_busybox
|
|
|
|
# busybox should be back up and running
|
|
runc state test_busybox
|
|
[ "$status" -eq 0 ]
|
|
[[ "${output}" == *"running"* ]]
|
|
}
|