diff options
Diffstat (limited to 'test/kpod_run_ns.bats')
-rw-r--r-- | test/kpod_run_ns.bats | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/kpod_run_ns.bats b/test/kpod_run_ns.bats new file mode 100644 index 000000000..eb0af6076 --- /dev/null +++ b/test/kpod_run_ns.bats @@ -0,0 +1,28 @@ +#!/usr/bin/env bats + +load helpers + +function setup() { + copy_images +} + +@test "run pidns test" { + + ${KPOD_BINARY} ${KPOD_OPTIONS} pull ${ALPINE} + + run bash -c "${KPOD_BINARY} ${KPOD_OPTIONS} run ${ALPINE} sh -c 'echo \$\$'" + echo $output + [ "$status" -eq 0 ] + pid=$(echo $output | tr -d '\r') + [ $pid = "1" ] + + run bash -c "${KPOD_BINARY} ${KPOD_OPTIONS} run --pid=host ${ALPINE} sh -c 'echo \$\$'" + echo $output + pid=$(echo $output | tr -d '\r') + [ "$status" -eq 0 ] + [ $pid != "1" ] + + run ${KPOD_BINARY} ${KPOD_OPTIONS} run --pid=badpid ${ALPINE} sh -c 'echo $$' + echo $output + [ "$status" -ne 0 ] +} |