mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
92427b3a81
Signed-off-by: Daniel Nephin <dnephin@docker.com>
43 lines
1.3 KiB
Go
43 lines
1.3 KiB
Go
package main
|
|
|
|
import (
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/docker/docker/integration-cli/checker"
|
|
"github.com/docker/docker/integration-cli/cli"
|
|
"github.com/go-check/check"
|
|
"github.com/gotestyourself/gotestyourself/icmd"
|
|
)
|
|
|
|
func (s *DockerSuite) TestUpdateRestartPolicy(c *check.C) {
|
|
out := cli.DockerCmd(c, "run", "-d", "--restart=on-failure:3", "busybox", "sh", "-c", "sleep 1 && false").Combined()
|
|
timeout := 60 * time.Second
|
|
if testEnv.DaemonPlatform() == "windows" {
|
|
timeout = 180 * time.Second
|
|
}
|
|
|
|
id := strings.TrimSpace(string(out))
|
|
|
|
// update restart policy to on-failure:5
|
|
cli.DockerCmd(c, "update", "--restart=on-failure:5", id)
|
|
|
|
cli.WaitExited(c, id, timeout)
|
|
|
|
count := inspectField(c, id, "RestartCount")
|
|
c.Assert(count, checker.Equals, "5")
|
|
|
|
maximumRetryCount := inspectField(c, id, "HostConfig.RestartPolicy.MaximumRetryCount")
|
|
c.Assert(maximumRetryCount, checker.Equals, "5")
|
|
}
|
|
|
|
func (s *DockerSuite) TestUpdateRestartWithAutoRemoveFlag(c *check.C) {
|
|
out := runSleepingContainer(c, "--rm")
|
|
id := strings.TrimSpace(out)
|
|
|
|
// update restart policy for an AutoRemove container
|
|
cli.Docker(cli.Args("update", "--restart=always", id)).Assert(c, icmd.Expected{
|
|
ExitCode: 1,
|
|
Err: "Restart policy cannot be updated because AutoRemove is enabled for the container",
|
|
})
|
|
}
|