2014-06-27 11:47:32 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
2015-09-01 17:37:04 -04:00
|
|
|
"time"
|
2015-04-18 12:46:47 -04:00
|
|
|
|
|
|
|
"github.com/go-check/check"
|
2014-06-27 11:47:32 -04:00
|
|
|
)
|
|
|
|
|
2015-04-18 12:46:47 -04:00
|
|
|
func (s *DockerSuite) TestRestartStoppedContainer(c *check.C) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-07-14 16:15:00 -04:00
|
|
|
out, _ := dockerCmd(c, "run", "-d", "busybox", "echo", "foobar")
|
2014-06-27 11:47:32 -04:00
|
|
|
|
2015-04-06 09:21:18 -04:00
|
|
|
cleanedContainerID := strings.TrimSpace(out)
|
2015-07-14 16:15:00 -04:00
|
|
|
dockerCmd(c, "wait", cleanedContainerID)
|
2014-06-27 11:47:32 -04:00
|
|
|
|
2015-07-14 16:15:00 -04:00
|
|
|
out, _ = dockerCmd(c, "logs", cleanedContainerID)
|
2014-06-27 11:47:32 -04:00
|
|
|
if out != "foobar\n" {
|
2015-04-18 12:46:47 -04:00
|
|
|
c.Errorf("container should've printed 'foobar'")
|
2014-06-27 11:47:32 -04:00
|
|
|
}
|
|
|
|
|
2015-07-14 16:15:00 -04:00
|
|
|
dockerCmd(c, "restart", cleanedContainerID)
|
2014-06-27 11:47:32 -04:00
|
|
|
|
2015-07-14 16:15:00 -04:00
|
|
|
out, _ = dockerCmd(c, "logs", cleanedContainerID)
|
2014-06-27 11:47:32 -04:00
|
|
|
if out != "foobar\nfoobar\n" {
|
2015-07-21 14:01:24 -04:00
|
|
|
c.Errorf("container should've printed 'foobar' twice, got %v", out)
|
2014-06-27 11:47:32 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-18 12:46:47 -04:00
|
|
|
func (s *DockerSuite) TestRestartRunningContainer(c *check.C) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-07-14 16:15:00 -04:00
|
|
|
out, _ := dockerCmd(c, "run", "-d", "busybox", "sh", "-c", "echo foobar && sleep 30 && echo 'should not print this'")
|
2014-06-27 11:47:32 -04:00
|
|
|
|
2015-04-06 09:21:18 -04:00
|
|
|
cleanedContainerID := strings.TrimSpace(out)
|
2014-06-27 11:47:32 -04:00
|
|
|
|
2015-08-11 03:41:11 -04:00
|
|
|
c.Assert(waitRun(cleanedContainerID), check.IsNil)
|
2014-07-29 02:46:14 -04:00
|
|
|
|
2015-07-14 16:15:00 -04:00
|
|
|
out, _ = dockerCmd(c, "logs", cleanedContainerID)
|
2014-06-27 11:47:32 -04:00
|
|
|
if out != "foobar\n" {
|
2015-04-18 12:46:47 -04:00
|
|
|
c.Errorf("container should've printed 'foobar'")
|
2014-06-27 11:47:32 -04:00
|
|
|
}
|
|
|
|
|
2015-07-14 16:15:00 -04:00
|
|
|
dockerCmd(c, "restart", "-t", "1", cleanedContainerID)
|
2014-06-27 11:47:32 -04:00
|
|
|
|
2015-07-14 16:15:00 -04:00
|
|
|
out, _ = dockerCmd(c, "logs", cleanedContainerID)
|
2014-06-27 11:47:32 -04:00
|
|
|
|
2015-08-11 03:41:11 -04:00
|
|
|
c.Assert(waitRun(cleanedContainerID), check.IsNil)
|
2014-07-29 02:46:14 -04:00
|
|
|
|
2014-06-27 11:47:32 -04:00
|
|
|
if out != "foobar\nfoobar\n" {
|
2015-04-18 12:46:47 -04:00
|
|
|
c.Errorf("container should've printed 'foobar' twice")
|
2014-06-27 11:47:32 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that restarting a container with a volume does not create a new volume on restart. Regression test for #819.
|
2015-04-18 12:46:47 -04:00
|
|
|
func (s *DockerSuite) TestRestartWithVolumes(c *check.C) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-07-14 16:15:00 -04:00
|
|
|
out, _ := dockerCmd(c, "run", "-d", "-v", "/test", "busybox", "top")
|
2014-06-27 11:47:32 -04:00
|
|
|
|
2015-04-06 09:21:18 -04:00
|
|
|
cleanedContainerID := strings.TrimSpace(out)
|
2015-06-03 15:21:38 -04:00
|
|
|
out, _ = dockerCmd(c, "inspect", "--format", "{{ len .Mounts }}", cleanedContainerID)
|
2014-06-27 11:47:32 -04:00
|
|
|
|
|
|
|
if out = strings.Trim(out, " \n\r"); out != "1" {
|
2015-04-18 12:46:47 -04:00
|
|
|
c.Errorf("expect 1 volume received %s", out)
|
2014-06-27 11:47:32 -04:00
|
|
|
}
|
|
|
|
|
2015-06-03 15:21:38 -04:00
|
|
|
source, err := inspectMountSourceField(cleanedContainerID, "/test")
|
2015-05-17 22:06:13 -04:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-06-27 11:47:32 -04:00
|
|
|
|
2015-07-14 16:15:00 -04:00
|
|
|
dockerCmd(c, "restart", cleanedContainerID)
|
2014-06-27 11:47:32 -04:00
|
|
|
|
2015-06-03 15:21:38 -04:00
|
|
|
out, _ = dockerCmd(c, "inspect", "--format", "{{ len .Mounts }}", cleanedContainerID)
|
2014-06-27 11:47:32 -04:00
|
|
|
if out = strings.Trim(out, " \n\r"); out != "1" {
|
2015-04-18 12:46:47 -04:00
|
|
|
c.Errorf("expect 1 volume after restart received %s", out)
|
2014-06-27 11:47:32 -04:00
|
|
|
}
|
|
|
|
|
2015-06-03 15:21:38 -04:00
|
|
|
sourceAfterRestart, err := inspectMountSourceField(cleanedContainerID, "/test")
|
2015-05-17 22:06:13 -04:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-06-27 11:47:32 -04:00
|
|
|
|
2015-06-03 15:21:38 -04:00
|
|
|
if source != sourceAfterRestart {
|
|
|
|
c.Errorf("expected volume path: %s Actual path: %s", source, sourceAfterRestart)
|
2014-06-27 11:47:32 -04:00
|
|
|
}
|
|
|
|
}
|
2015-01-16 04:58:26 -05:00
|
|
|
|
2015-04-18 12:46:47 -04:00
|
|
|
func (s *DockerSuite) TestRestartPolicyNO(c *check.C) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-07-14 16:15:00 -04:00
|
|
|
out, _ := dockerCmd(c, "run", "-d", "--restart=no", "busybox", "false")
|
2015-01-16 04:58:26 -05:00
|
|
|
|
|
|
|
id := strings.TrimSpace(string(out))
|
|
|
|
name, err := inspectField(id, "HostConfig.RestartPolicy.Name")
|
2015-05-17 22:06:13 -04:00
|
|
|
c.Assert(err, check.IsNil)
|
2015-01-16 04:58:26 -05:00
|
|
|
if name != "no" {
|
2015-04-18 12:46:47 -04:00
|
|
|
c.Fatalf("Container restart policy name is %s, expected %s", name, "no")
|
2015-01-16 04:58:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-18 12:46:47 -04:00
|
|
|
func (s *DockerSuite) TestRestartPolicyAlways(c *check.C) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-07-14 16:15:00 -04:00
|
|
|
out, _ := dockerCmd(c, "run", "-d", "--restart=always", "busybox", "false")
|
2015-01-16 04:58:26 -05:00
|
|
|
|
|
|
|
id := strings.TrimSpace(string(out))
|
|
|
|
name, err := inspectField(id, "HostConfig.RestartPolicy.Name")
|
2015-05-17 22:06:13 -04:00
|
|
|
c.Assert(err, check.IsNil)
|
2015-01-16 04:58:26 -05:00
|
|
|
if name != "always" {
|
2015-04-18 12:46:47 -04:00
|
|
|
c.Fatalf("Container restart policy name is %s, expected %s", name, "always")
|
2015-01-16 04:58:26 -05:00
|
|
|
}
|
|
|
|
|
2015-03-29 21:07:58 -04:00
|
|
|
MaximumRetryCount, err := inspectField(id, "HostConfig.RestartPolicy.MaximumRetryCount")
|
2015-05-17 22:06:13 -04:00
|
|
|
c.Assert(err, check.IsNil)
|
2015-03-29 21:07:58 -04:00
|
|
|
|
|
|
|
// MaximumRetryCount=0 if the restart policy is always
|
|
|
|
if MaximumRetryCount != "0" {
|
2015-04-18 12:46:47 -04:00
|
|
|
c.Fatalf("Container Maximum Retry Count is %s, expected %s", MaximumRetryCount, "0")
|
2015-03-29 21:07:58 -04:00
|
|
|
}
|
2015-01-16 04:58:26 -05:00
|
|
|
}
|
|
|
|
|
2015-04-18 12:46:47 -04:00
|
|
|
func (s *DockerSuite) TestRestartPolicyOnFailure(c *check.C) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-07-14 16:15:00 -04:00
|
|
|
out, _ := dockerCmd(c, "run", "-d", "--restart=on-failure:1", "busybox", "false")
|
2015-01-16 04:58:26 -05:00
|
|
|
|
|
|
|
id := strings.TrimSpace(string(out))
|
|
|
|
name, err := inspectField(id, "HostConfig.RestartPolicy.Name")
|
2015-05-17 22:06:13 -04:00
|
|
|
c.Assert(err, check.IsNil)
|
2015-01-16 04:58:26 -05:00
|
|
|
if name != "on-failure" {
|
2015-04-18 12:46:47 -04:00
|
|
|
c.Fatalf("Container restart policy name is %s, expected %s", name, "on-failure")
|
2015-01-16 04:58:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2015-03-19 08:19:39 -04:00
|
|
|
|
|
|
|
// a good container with --restart=on-failure:3
|
|
|
|
// MaximumRetryCount!=0; RestartCount=0
|
2015-04-18 12:46:47 -04:00
|
|
|
func (s *DockerSuite) TestContainerRestartwithGoodContainer(c *check.C) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-07-14 16:15:00 -04:00
|
|
|
out, _ := dockerCmd(c, "run", "-d", "--restart=on-failure:3", "busybox", "true")
|
|
|
|
|
2015-03-19 08:19:39 -04:00
|
|
|
id := strings.TrimSpace(string(out))
|
2015-09-01 17:37:04 -04:00
|
|
|
if err := waitInspect(id, "{{ .State.Restarting }} {{ .State.Running }}", "false false", 5*time.Second); err != nil {
|
2015-04-18 12:46:47 -04:00
|
|
|
c.Fatal(err)
|
2015-03-19 08:19:39 -04:00
|
|
|
}
|
|
|
|
count, err := inspectField(id, "RestartCount")
|
2015-05-17 22:06:13 -04:00
|
|
|
c.Assert(err, check.IsNil)
|
2015-03-19 08:19:39 -04:00
|
|
|
if count != "0" {
|
2015-04-18 12:46:47 -04:00
|
|
|
c.Fatalf("Container was restarted %s times, expected %d", count, 0)
|
2015-03-19 08:19:39 -04:00
|
|
|
}
|
|
|
|
MaximumRetryCount, err := inspectField(id, "HostConfig.RestartPolicy.MaximumRetryCount")
|
2015-05-17 22:06:13 -04:00
|
|
|
c.Assert(err, check.IsNil)
|
2015-03-19 08:19:39 -04:00
|
|
|
if MaximumRetryCount != "3" {
|
2015-04-18 12:46:47 -04:00
|
|
|
c.Fatalf("Container Maximum Retry Count is %s, expected %s", MaximumRetryCount, "3")
|
2015-03-19 08:19:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|