2014-06-27 11:47:32 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os/exec"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
2014-07-29 02:46:14 -04:00
|
|
|
"time"
|
2014-06-27 11:47:32 -04:00
|
|
|
)
|
|
|
|
|
2014-09-19 13:50:23 -04:00
|
|
|
func TestRestartStoppedContainer(t *testing.T) {
|
2014-06-27 11:47:32 -04:00
|
|
|
runCmd := exec.Command(dockerBinary, "run", "-d", "busybox", "echo", "foobar")
|
|
|
|
out, _, err := runCommandWithOutput(runCmd)
|
2014-10-14 17:18:55 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(out, err)
|
|
|
|
}
|
2014-06-27 11:47:32 -04:00
|
|
|
|
|
|
|
cleanedContainerID := stripTrailingCharacters(out)
|
|
|
|
|
|
|
|
runCmd = exec.Command(dockerBinary, "wait", cleanedContainerID)
|
2014-10-14 17:18:55 -04:00
|
|
|
if out, _, err = runCommandWithOutput(runCmd); err != nil {
|
|
|
|
t.Fatal(out, err)
|
|
|
|
}
|
2014-06-27 11:47:32 -04:00
|
|
|
|
|
|
|
runCmd = exec.Command(dockerBinary, "logs", cleanedContainerID)
|
|
|
|
out, _, err = runCommandWithOutput(runCmd)
|
2014-10-14 17:18:55 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(out, err)
|
|
|
|
}
|
2014-06-27 11:47:32 -04:00
|
|
|
|
|
|
|
if out != "foobar\n" {
|
|
|
|
t.Errorf("container should've printed 'foobar'")
|
|
|
|
}
|
|
|
|
|
|
|
|
runCmd = exec.Command(dockerBinary, "restart", cleanedContainerID)
|
2014-10-14 17:18:55 -04:00
|
|
|
if out, _, err = runCommandWithOutput(runCmd); err != nil {
|
|
|
|
t.Fatal(out, err)
|
|
|
|
}
|
2014-06-27 11:47:32 -04:00
|
|
|
|
|
|
|
runCmd = exec.Command(dockerBinary, "logs", cleanedContainerID)
|
|
|
|
out, _, err = runCommandWithOutput(runCmd)
|
2014-10-14 17:18:55 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(out, err)
|
|
|
|
}
|
2014-06-27 11:47:32 -04:00
|
|
|
|
|
|
|
if out != "foobar\nfoobar\n" {
|
|
|
|
t.Errorf("container should've printed 'foobar' twice")
|
|
|
|
}
|
|
|
|
|
|
|
|
deleteAllContainers()
|
|
|
|
|
|
|
|
logDone("restart - echo foobar for stopped container")
|
|
|
|
}
|
|
|
|
|
2014-09-19 13:50:23 -04:00
|
|
|
func TestRestartRunningContainer(t *testing.T) {
|
2014-06-27 11:47:32 -04:00
|
|
|
runCmd := exec.Command(dockerBinary, "run", "-d", "busybox", "sh", "-c", "echo foobar && sleep 30 && echo 'should not print this'")
|
|
|
|
out, _, err := runCommandWithOutput(runCmd)
|
2014-10-14 17:18:55 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(out, err)
|
|
|
|
}
|
2014-06-27 11:47:32 -04:00
|
|
|
|
|
|
|
cleanedContainerID := stripTrailingCharacters(out)
|
|
|
|
|
2014-07-29 02:46:14 -04:00
|
|
|
time.Sleep(1 * time.Second)
|
|
|
|
|
2014-06-27 11:47:32 -04:00
|
|
|
runCmd = exec.Command(dockerBinary, "logs", cleanedContainerID)
|
|
|
|
out, _, err = runCommandWithOutput(runCmd)
|
2014-10-14 17:18:55 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(out, err)
|
|
|
|
}
|
2014-06-27 11:47:32 -04:00
|
|
|
|
|
|
|
if out != "foobar\n" {
|
|
|
|
t.Errorf("container should've printed 'foobar'")
|
|
|
|
}
|
|
|
|
|
|
|
|
runCmd = exec.Command(dockerBinary, "restart", "-t", "1", cleanedContainerID)
|
2014-10-14 17:18:55 -04:00
|
|
|
if out, _, err = runCommandWithOutput(runCmd); err != nil {
|
|
|
|
t.Fatal(out, err)
|
|
|
|
}
|
2014-06-27 11:47:32 -04:00
|
|
|
|
|
|
|
runCmd = exec.Command(dockerBinary, "logs", cleanedContainerID)
|
|
|
|
out, _, err = runCommandWithOutput(runCmd)
|
2014-10-14 17:18:55 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(out, err)
|
|
|
|
}
|
2014-06-27 11:47:32 -04:00
|
|
|
|
2014-07-29 02:46:14 -04:00
|
|
|
time.Sleep(1 * time.Second)
|
|
|
|
|
2014-06-27 11:47:32 -04:00
|
|
|
if out != "foobar\nfoobar\n" {
|
|
|
|
t.Errorf("container should've printed 'foobar' twice")
|
|
|
|
}
|
|
|
|
|
|
|
|
deleteAllContainers()
|
|
|
|
|
|
|
|
logDone("restart - echo foobar for running container")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that restarting a container with a volume does not create a new volume on restart. Regression test for #819.
|
2014-09-19 13:50:23 -04:00
|
|
|
func TestRestartWithVolumes(t *testing.T) {
|
2014-06-27 11:47:32 -04:00
|
|
|
runCmd := exec.Command(dockerBinary, "run", "-d", "-v", "/test", "busybox", "top")
|
|
|
|
out, _, err := runCommandWithOutput(runCmd)
|
2014-10-14 17:18:55 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(out, err)
|
|
|
|
}
|
2014-06-27 11:47:32 -04:00
|
|
|
|
|
|
|
cleanedContainerID := stripTrailingCharacters(out)
|
|
|
|
|
|
|
|
runCmd = exec.Command(dockerBinary, "inspect", "--format", "{{ len .Volumes }}", cleanedContainerID)
|
|
|
|
out, _, err = runCommandWithOutput(runCmd)
|
2014-10-14 17:18:55 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(out, err)
|
|
|
|
}
|
2014-06-27 11:47:32 -04:00
|
|
|
|
|
|
|
if out = strings.Trim(out, " \n\r"); out != "1" {
|
|
|
|
t.Errorf("expect 1 volume received %s", out)
|
|
|
|
}
|
|
|
|
|
|
|
|
runCmd = exec.Command(dockerBinary, "inspect", "--format", "{{ .Volumes }}", cleanedContainerID)
|
|
|
|
volumes, _, err := runCommandWithOutput(runCmd)
|
2014-10-14 17:18:55 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(volumes, err)
|
|
|
|
}
|
2014-06-27 11:47:32 -04:00
|
|
|
|
|
|
|
runCmd = exec.Command(dockerBinary, "restart", cleanedContainerID)
|
2014-10-14 17:18:55 -04:00
|
|
|
if out, _, err = runCommandWithOutput(runCmd); err != nil {
|
|
|
|
t.Fatal(out, err)
|
|
|
|
}
|
2014-06-27 11:47:32 -04:00
|
|
|
|
|
|
|
runCmd = exec.Command(dockerBinary, "inspect", "--format", "{{ len .Volumes }}", cleanedContainerID)
|
|
|
|
out, _, err = runCommandWithOutput(runCmd)
|
2014-10-14 17:18:55 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(out, err)
|
|
|
|
}
|
2014-06-27 11:47:32 -04:00
|
|
|
|
|
|
|
if out = strings.Trim(out, " \n\r"); out != "1" {
|
|
|
|
t.Errorf("expect 1 volume after restart received %s", out)
|
|
|
|
}
|
|
|
|
|
|
|
|
runCmd = exec.Command(dockerBinary, "inspect", "--format", "{{ .Volumes }}", cleanedContainerID)
|
|
|
|
volumesAfterRestart, _, err := runCommandWithOutput(runCmd)
|
2014-10-14 17:18:55 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(volumesAfterRestart, err)
|
|
|
|
}
|
2014-06-27 11:47:32 -04:00
|
|
|
|
|
|
|
if volumes != volumesAfterRestart {
|
|
|
|
volumes = strings.Trim(volumes, " \n\r")
|
|
|
|
volumesAfterRestart = strings.Trim(volumesAfterRestart, " \n\r")
|
|
|
|
t.Errorf("expected volume path: %s Actual path: %s", volumes, volumesAfterRestart)
|
|
|
|
}
|
|
|
|
|
|
|
|
deleteAllContainers()
|
|
|
|
|
|
|
|
logDone("restart - does not create a new volume on restart")
|
|
|
|
}
|