mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
62a856e912
1. Replace raw `docker inspect -f xxx` with `inspectField`, to make code cleaner and more consistent 2. assert the error in function `inspectField*` so we don't need to assert the return value of it every time, this will make inspect easier. Signed-off-by: Zhang Wei <zhangwei555@huawei.com>
30 lines
942 B
Go
30 lines
942 B
Go
// +build !windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/docker/docker/pkg/integration/checker"
|
|
"github.com/go-check/check"
|
|
)
|
|
|
|
func (s *DockerSuite) TestInspectOomKilledTrue(c *check.C) {
|
|
testRequires(c, DaemonIsLinux, memoryLimitSupport)
|
|
|
|
name := "testoomkilled"
|
|
_, exitCode, _ := dockerCmdWithError("run", "--name", name, "--memory", "32MB", "busybox", "sh", "-c", "x=a; while true; do x=$x$x$x$x; done")
|
|
|
|
c.Assert(exitCode, checker.Equals, 137, check.Commentf("OOM exit should be 137"))
|
|
|
|
oomKilled := inspectField(c, name, "State.OOMKilled")
|
|
c.Assert(oomKilled, checker.Equals, "true")
|
|
}
|
|
|
|
func (s *DockerSuite) TestInspectOomKilledFalse(c *check.C) {
|
|
testRequires(c, DaemonIsLinux, memoryLimitSupport)
|
|
|
|
name := "testoomkilled"
|
|
dockerCmd(c, "run", "--name", name, "--memory", "32MB", "busybox", "sh", "-c", "echo hello world")
|
|
|
|
oomKilled := inspectField(c, name, "State.OOMKilled")
|
|
c.Assert(oomKilled, checker.Equals, "false")
|
|
}
|