2016-03-15 03:55:05 +08:00
|
|
|
#!/usr/bin/env bats
|
|
|
|
|
|
|
|
load helpers
|
|
|
|
|
|
|
|
function setup() {
|
|
|
|
teardown_busybox
|
|
|
|
setup_busybox
|
|
|
|
}
|
|
|
|
|
|
|
|
function teardown() {
|
|
|
|
teardown_busybox
|
|
|
|
}
|
|
|
|
|
|
|
|
@test "runc exec" {
|
2016-05-20 08:28:58 +08:00
|
|
|
# run busybox detached
|
2016-09-06 20:40:01 +08:00
|
|
|
runc run -d --console-socket $CONSOLE_SOCKET test_busybox
|
2016-03-15 03:55:05 +08:00
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
2016-05-09 21:06:42 +08:00
|
|
|
runc exec test_busybox echo Hello from exec
|
2016-03-15 03:55:05 +08:00
|
|
|
[ "$status" -eq 0 ]
|
2016-05-16 16:21:52 +08:00
|
|
|
echo text echoed = "'""${output}""'"
|
2016-03-15 03:55:05 +08:00
|
|
|
[[ "${output}" == *"Hello from exec"* ]]
|
|
|
|
}
|
|
|
|
|
|
|
|
@test "runc exec --pid-file" {
|
2016-05-20 08:28:58 +08:00
|
|
|
# run busybox detached
|
2016-09-06 20:40:01 +08:00
|
|
|
runc run -d --console-socket $CONSOLE_SOCKET test_busybox
|
2016-03-15 03:55:05 +08:00
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
2016-05-09 21:06:42 +08:00
|
|
|
runc exec --pid-file pid.txt test_busybox echo Hello from exec
|
2016-03-15 03:55:05 +08:00
|
|
|
[ "$status" -eq 0 ]
|
2016-05-16 16:21:52 +08:00
|
|
|
echo text echoed = "'""${output}""'"
|
2016-03-15 03:55:05 +08:00
|
|
|
[[ "${output}" == *"Hello from exec"* ]]
|
|
|
|
|
2016-05-16 16:21:52 +08:00
|
|
|
# check pid.txt was generated
|
2016-03-15 03:55:05 +08:00
|
|
|
[ -e pid.txt ]
|
|
|
|
|
|
|
|
run cat pid.txt
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[[ ${lines[0]} =~ [0-9]+ ]]
|
2016-10-25 15:00:51 +08:00
|
|
|
[[ ${lines[0]} != $(__runc state test_busybox | jq '.pid') ]]
|
2016-03-15 03:55:05 +08:00
|
|
|
}
|
2016-09-24 12:21:50 +08:00
|
|
|
|
2016-11-01 19:13:49 +08:00
|
|
|
@test "runc exec --pid-file with new CWD" {
|
|
|
|
# create pid_file directory as the CWD
|
|
|
|
run mkdir pid_file
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
run cd pid_file
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
|
|
|
# run busybox detached
|
2016-09-06 20:40:01 +08:00
|
|
|
runc run -d -b $BUSYBOX_BUNDLE --console-socket $CONSOLE_SOCKET test_busybox
|
2016-11-01 19:13:49 +08:00
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
|
|
|
runc exec --pid-file pid.txt test_busybox echo Hello from exec
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
echo text echoed = "'""${output}""'"
|
|
|
|
[[ "${output}" == *"Hello from exec"* ]]
|
|
|
|
|
|
|
|
# check pid.txt was generated
|
|
|
|
[ -e pid.txt ]
|
|
|
|
|
|
|
|
run cat pid.txt
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[[ ${lines[0]} =~ [0-9]+ ]]
|
|
|
|
[[ ${lines[0]} != $(__runc state test_busybox | jq '.pid') ]]
|
|
|
|
}
|
|
|
|
|
2016-09-24 12:21:50 +08:00
|
|
|
@test "runc exec ls -la" {
|
|
|
|
# run busybox detached
|
2016-09-06 20:40:01 +08:00
|
|
|
runc run -d --console-socket $CONSOLE_SOCKET test_busybox
|
2016-09-24 12:21:50 +08:00
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
|
|
|
runc exec test_busybox ls -la
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[[ ${lines[0]} == *"total"* ]]
|
|
|
|
[[ ${lines[1]} == *"."* ]]
|
|
|
|
[[ ${lines[2]} == *".."* ]]
|
|
|
|
}
|
2016-10-20 15:10:43 +08:00
|
|
|
|
|
|
|
@test "runc exec ls -la with --cwd" {
|
|
|
|
# run busybox detached
|
2016-09-06 20:40:01 +08:00
|
|
|
runc run -d --console-socket $CONSOLE_SOCKET test_busybox
|
2016-10-20 15:10:43 +08:00
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
|
|
|
runc exec --cwd /bin test_busybox pwd
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[[ ${output} == "/bin" ]]
|
|
|
|
}
|
|
|
|
|
|
|
|
@test "runc exec --env" {
|
|
|
|
# run busybox detached
|
2016-09-06 20:40:01 +08:00
|
|
|
runc run -d --console-socket $CONSOLE_SOCKET test_busybox
|
2016-10-20 15:10:43 +08:00
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
|
|
|
runc exec --env RUNC_EXEC_TEST=true test_busybox env
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
|
|
|
[[ ${output} == *"RUNC_EXEC_TEST=true"* ]]
|
|
|
|
}
|
|
|
|
|
|
|
|
@test "runc exec --user" {
|
2016-05-11 15:45:00 +08:00
|
|
|
# --user can't work in rootless containers
|
|
|
|
requires root
|
|
|
|
|
2016-10-20 15:10:43 +08:00
|
|
|
# run busybox detached
|
2016-09-06 20:40:01 +08:00
|
|
|
runc run -d --console-socket $CONSOLE_SOCKET test_busybox
|
2016-10-20 15:10:43 +08:00
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
|
|
|
runc exec --user 1000:1000 test_busybox id
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
|
|
|
[[ ${output} == "uid=1000 gid=1000" ]]
|
|
|
|
}
|