Merge pull request #1132 from datawolf/add-integration-test-for-create

add test cases for create command
This commit is contained in:
Qiang Huang 2016-10-22 17:46:33 +08:00 committed by GitHub
commit 850b9c0b50
1 changed files with 20 additions and 0 deletions

View File

@ -39,3 +39,23 @@ function teardown() {
testcontainer test_busybox running testcontainer test_busybox running
} }
@test "runc create --pid-file" {
runc create --pid-file pid.txt --console /dev/pts/ptmx test_busybox
[ "$status" -eq 0 ]
testcontainer test_busybox created
# check pid.txt was generated
[ -e pid.txt ]
run cat pid.txt
[ "$status" -eq 0 ]
[[ ${lines[0]} =~ [0-9]+ ]]
# start the command
runc start test_busybox
[ "$status" -eq 0 ]
testcontainer test_busybox running
}