mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
c8016e669f
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
41 lines
1.2 KiB
Go
41 lines
1.2 KiB
Go
package main
|
|
|
|
import (
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/docker/docker/integration-cli/checker"
|
|
"github.com/go-check/check"
|
|
)
|
|
|
|
func (s *DockerSuite) TestUpdateRestartPolicy(c *check.C) {
|
|
out, _ := dockerCmd(c, "run", "-d", "--restart=on-failure:3", "busybox", "sh", "-c", "sleep 1 && false")
|
|
timeout := 60 * time.Second
|
|
if testEnv.DaemonPlatform() == "windows" {
|
|
timeout = 180 * time.Second
|
|
}
|
|
|
|
id := strings.TrimSpace(string(out))
|
|
|
|
// update restart policy to on-failure:5
|
|
dockerCmd(c, "update", "--restart=on-failure:5", id)
|
|
|
|
err := waitExited(id, timeout)
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
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
|
|
out, _, err := dockerCmdWithError("update", "--restart=always", id)
|
|
c.Assert(err, checker.NotNil)
|
|
c.Assert(out, checker.Contains, "Restart policy cannot be updated because AutoRemove is enabled for the container")
|
|
}
|