mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 06:03:57 +08:00
85d5fea468
Overloading $HELLO_BUNDLE with a second purpose of having an alternative runc root is confusing. Instead, let's create a temp directory in setup() and clean it up in teardown(). Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
59 lines
2.4 KiB
Bash
59 lines
2.4 KiB
Bash
#!/usr/bin/env bats
|
|
|
|
load helpers
|
|
|
|
function setup() {
|
|
unset ALT_ROOT
|
|
teardown
|
|
setup_busybox
|
|
ALT_ROOT=$(mktemp -d "$BATS_TMPDIR/runc-2.XXXXXX")
|
|
}
|
|
|
|
function teardown() {
|
|
if [ -n "$ALT_ROOT" ]; then
|
|
ROOT="$ALT_ROOT" teardown_running_container test_box1
|
|
ROOT="$ALT_ROOT" teardown_running_container test_box2
|
|
ROOT="$ALT_ROOT" teardown_running_container test_box3
|
|
rm -rf "$ALT_ROOT"
|
|
fi
|
|
teardown_busybox
|
|
}
|
|
|
|
@test "list" {
|
|
# run a few busyboxes detached
|
|
ROOT=$ALT_ROOT runc run -d --console-socket "$CONSOLE_SOCKET" test_box1
|
|
[ "$status" -eq 0 ]
|
|
|
|
ROOT=$ALT_ROOT runc run -d --console-socket "$CONSOLE_SOCKET" test_box2
|
|
[ "$status" -eq 0 ]
|
|
|
|
ROOT=$ALT_ROOT runc run -d --console-socket "$CONSOLE_SOCKET" test_box3
|
|
[ "$status" -eq 0 ]
|
|
|
|
ROOT=$ALT_ROOT runc list
|
|
[ "$status" -eq 0 ]
|
|
[[ ${lines[0]} =~ ID\ +PID\ +STATUS\ +BUNDLE\ +CREATED+ ]]
|
|
[[ "${lines[1]}" == *"test_box1"*[0-9]*"running"*$BUSYBOX_BUNDLE*[0-9]* ]]
|
|
[[ "${lines[2]}" == *"test_box2"*[0-9]*"running"*$BUSYBOX_BUNDLE*[0-9]* ]]
|
|
[[ "${lines[3]}" == *"test_box3"*[0-9]*"running"*$BUSYBOX_BUNDLE*[0-9]* ]]
|
|
|
|
ROOT=$ALT_ROOT runc list -q
|
|
[ "$status" -eq 0 ]
|
|
[[ "${lines[0]}" == "test_box1" ]]
|
|
[[ "${lines[1]}" == "test_box2" ]]
|
|
[[ "${lines[2]}" == "test_box3" ]]
|
|
|
|
ROOT=$ALT_ROOT runc list --format table
|
|
[ "$status" -eq 0 ]
|
|
[[ ${lines[0]} =~ ID\ +PID\ +STATUS\ +BUNDLE\ +CREATED+ ]]
|
|
[[ "${lines[1]}" == *"test_box1"*[0-9]*"running"*$BUSYBOX_BUNDLE*[0-9]* ]]
|
|
[[ "${lines[2]}" == *"test_box2"*[0-9]*"running"*$BUSYBOX_BUNDLE*[0-9]* ]]
|
|
[[ "${lines[3]}" == *"test_box3"*[0-9]*"running"*$BUSYBOX_BUNDLE*[0-9]* ]]
|
|
|
|
ROOT=$ALT_ROOT runc list --format json
|
|
[ "$status" -eq 0 ]
|
|
[[ "${lines[0]}" == [\[][\{]"\"ociVersion\""[:]"\""*[0-9][\.]*[0-9][\.]*[0-9]*"\""[,]"\"id\""[:]"\"test_box1\""[,]"\"pid\""[:]*[0-9][,]"\"status\""[:]*"\"running\""[,]"\"bundle\""[:]*$BUSYBOX_BUNDLE*[,]"\"rootfs\""[:]"\""*"\""[,]"\"created\""[:]*[0-9]*[\}]* ]]
|
|
[[ "${lines[0]}" == *[,][\{]"\"ociVersion\""[:]"\""*[0-9][\.]*[0-9][\.]*[0-9]*"\""[,]"\"id\""[:]"\"test_box2\""[,]"\"pid\""[:]*[0-9][,]"\"status\""[:]*"\"running\""[,]"\"bundle\""[:]*$BUSYBOX_BUNDLE*[,]"\"rootfs\""[:]"\""*"\""[,]"\"created\""[:]*[0-9]*[\}]* ]]
|
|
[[ "${lines[0]}" == *[,][\{]"\"ociVersion\""[:]"\""*[0-9][\.]*[0-9][\.]*[0-9]*"\""[,]"\"id\""[:]"\"test_box3\""[,]"\"pid\""[:]*[0-9][,]"\"status\""[:]*"\"running\""[,]"\"bundle\""[:]*$BUSYBOX_BUNDLE*[,]"\"rootfs\""[:]"\""*"\""[,]"\"created\""[:]*[0-9]*[\}][\]] ]]
|
|
}
|