123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- package main
- import (
- "os/exec"
- "strings"
- "testing"
- "time"
- )
- func TestRestartStoppedContainer(t *testing.T) {
- runCmd := exec.Command(dockerBinary, "run", "-d", "busybox", "echo", "foobar")
- out, _, err := runCommandWithOutput(runCmd)
- if err != nil {
- t.Fatal(out, err)
- }
- cleanedContainerID := stripTrailingCharacters(out)
- runCmd = exec.Command(dockerBinary, "wait", cleanedContainerID)
- if out, _, err = runCommandWithOutput(runCmd); err != nil {
- t.Fatal(out, err)
- }
- runCmd = exec.Command(dockerBinary, "logs", cleanedContainerID)
- out, _, err = runCommandWithOutput(runCmd)
- if err != nil {
- t.Fatal(out, err)
- }
- if out != "foobar\n" {
- t.Errorf("container should've printed 'foobar'")
- }
- runCmd = exec.Command(dockerBinary, "restart", cleanedContainerID)
- if out, _, err = runCommandWithOutput(runCmd); err != nil {
- t.Fatal(out, err)
- }
- runCmd = exec.Command(dockerBinary, "logs", cleanedContainerID)
- out, _, err = runCommandWithOutput(runCmd)
- if err != nil {
- t.Fatal(out, err)
- }
- if out != "foobar\nfoobar\n" {
- t.Errorf("container should've printed 'foobar' twice")
- }
- deleteAllContainers()
- logDone("restart - echo foobar for stopped container")
- }
- func TestRestartRunningContainer(t *testing.T) {
- runCmd := exec.Command(dockerBinary, "run", "-d", "busybox", "sh", "-c", "echo foobar && sleep 30 && echo 'should not print this'")
- out, _, err := runCommandWithOutput(runCmd)
- if err != nil {
- t.Fatal(out, err)
- }
- cleanedContainerID := stripTrailingCharacters(out)
- time.Sleep(1 * time.Second)
- runCmd = exec.Command(dockerBinary, "logs", cleanedContainerID)
- out, _, err = runCommandWithOutput(runCmd)
- if err != nil {
- t.Fatal(out, err)
- }
- if out != "foobar\n" {
- t.Errorf("container should've printed 'foobar'")
- }
- runCmd = exec.Command(dockerBinary, "restart", "-t", "1", cleanedContainerID)
- if out, _, err = runCommandWithOutput(runCmd); err != nil {
- t.Fatal(out, err)
- }
- runCmd = exec.Command(dockerBinary, "logs", cleanedContainerID)
- out, _, err = runCommandWithOutput(runCmd)
- if err != nil {
- t.Fatal(out, err)
- }
- time.Sleep(1 * time.Second)
- 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.
- func TestRestartWithVolumes(t *testing.T) {
- runCmd := exec.Command(dockerBinary, "run", "-d", "-v", "/test", "busybox", "top")
- out, _, err := runCommandWithOutput(runCmd)
- if err != nil {
- t.Fatal(out, err)
- }
- cleanedContainerID := stripTrailingCharacters(out)
- runCmd = exec.Command(dockerBinary, "inspect", "--format", "{{ len .Volumes }}", cleanedContainerID)
- out, _, err = runCommandWithOutput(runCmd)
- if err != nil {
- t.Fatal(out, err)
- }
- 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)
- if err != nil {
- t.Fatal(volumes, err)
- }
- runCmd = exec.Command(dockerBinary, "restart", cleanedContainerID)
- if out, _, err = runCommandWithOutput(runCmd); err != nil {
- t.Fatal(out, err)
- }
- runCmd = exec.Command(dockerBinary, "inspect", "--format", "{{ len .Volumes }}", cleanedContainerID)
- out, _, err = runCommandWithOutput(runCmd)
- if err != nil {
- t.Fatal(out, err)
- }
- 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)
- if err != nil {
- t.Fatal(volumesAfterRestart, err)
- }
- 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")
- }
|