mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 06:03:57 +08:00
41670e21f0
1. Get rid of fixed ROOT, *_BUNDLE, and CONSOLE_SOCKET dirs. Now they are temporary directories created in setup_bundle. 2. Automate containers cleanup: instead of having to specify all containers to be removed, list and destroy everything (which is now possible since every test case has its own unique root). 3. Randomize cgroup paths so two tests running in parallel won't use the same cgroup. Now it's theoretically possible to execute tests in parallel. Practically it's not possible yet because bats uses GNU parallel, which do not provide a terminal for whatever it executes, and many runc tests (all those that run containers with terminal: true) needs a tty. This may possibly be addressed later. Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
59 lines
1.9 KiB
Bash
59 lines
1.9 KiB
Bash
#!/usr/bin/env bats
|
|
|
|
load helpers
|
|
|
|
function setup() {
|
|
requires root no_systemd
|
|
|
|
setup_debian
|
|
# CR = CreateRuntime, CC = CreataContainer
|
|
HOOKLIBCR=librunc-hooks-create-runtime.so
|
|
HOOKLIBCC=librunc-hooks-create-container.so
|
|
LIBPATH="$(pwd)/rootfs/lib/"
|
|
}
|
|
|
|
function teardown() {
|
|
if [ -n "$LIBPATH" ]; then
|
|
umount "$LIBPATH"/$HOOKLIBCR.1.0.0 &>/dev/null || true
|
|
umount "$LIBPATH"/$HOOKLIBCC.1.0.0 &>/dev/null || true
|
|
rm -f $HOOKLIBCR.1.0.0 $HOOKLIBCC.1.0.0
|
|
fi
|
|
teardown_bundle
|
|
}
|
|
|
|
@test "runc run (hooks library tests)" {
|
|
# setup some dummy libs
|
|
gcc -shared -Wl,-soname,librunc-hooks-create-runtime.so.1 -o "$HOOKLIBCR.1.0.0"
|
|
gcc -shared -Wl,-soname,librunc-hooks-create-container.so.1 -o "$HOOKLIBCC.1.0.0"
|
|
|
|
bundle=$(pwd)
|
|
|
|
# To mount $HOOKLIBCR we need to do that in the container namespace
|
|
create_runtime_hook=$(
|
|
cat <<-EOF
|
|
pid=\$(cat - | jq -r '.pid')
|
|
touch "$LIBPATH/$HOOKLIBCR.1.0.0"
|
|
nsenter -m \$ns -t \$pid mount --bind "$bundle/$HOOKLIBCR.1.0.0" "$LIBPATH/$HOOKLIBCR.1.0.0"
|
|
EOF
|
|
)
|
|
|
|
create_container_hook="touch ./lib/$HOOKLIBCC.1.0.0 && mount --bind $bundle/$HOOKLIBCC.1.0.0 ./lib/$HOOKLIBCC.1.0.0"
|
|
|
|
CONFIG=$(jq --arg create_runtime_hook "$create_runtime_hook" --arg create_container_hook "$create_container_hook" '
|
|
.hooks |= . + {"createRuntime": [{"path": "/bin/sh", "args": ["/bin/sh", "-c", $create_runtime_hook]}]} |
|
|
.hooks |= . + {"createContainer": [{"path": "/bin/sh", "args": ["/bin/sh", "-c", $create_container_hook]}]} |
|
|
.hooks |= . + {"startContainer": [{"path": "/bin/sh", "args": ["/bin/sh", "-c", "ldconfig"]}]} |
|
|
.root.readonly |= false |
|
|
.process.args = ["/bin/sh", "-c", "ldconfig -p | grep librunc"]' "$bundle"/config.json)
|
|
echo "${CONFIG}" >config.json
|
|
|
|
runc run test_debian
|
|
[ "$status" -eq 0 ]
|
|
|
|
echo "Checking create-runtime library"
|
|
echo "$output" | grep $HOOKLIBCR
|
|
|
|
echo "Checking create-container library"
|
|
echo "$output" | grep $HOOKLIBCC
|
|
}
|