123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701 |
- package docker
- import (
- "bufio"
- "fmt"
- "github.com/dotcloud/docker/utils"
- "io"
- "io/ioutil"
- "strings"
- "testing"
- "time"
- )
- func closeWrap(args ...io.Closer) error {
- e := false
- ret := fmt.Errorf("Error closing elements")
- for _, c := range args {
- if err := c.Close(); err != nil {
- e = true
- ret = fmt.Errorf("%s\n%s", ret, err)
- }
- }
- if e {
- return ret
- }
- return nil
- }
- func setTimeout(t *testing.T, msg string, d time.Duration, f func()) {
- c := make(chan bool)
- // Make sure we are not too long
- go func() {
- time.Sleep(d)
- c <- true
- }()
- go func() {
- f()
- c <- false
- }()
- if <-c && msg != "" {
- t.Fatal(msg)
- }
- }
- func assertPipe(input, output string, r io.Reader, w io.Writer, count int) error {
- for i := 0; i < count; i++ {
- if _, err := w.Write([]byte(input)); err != nil {
- return err
- }
- o, err := bufio.NewReader(r).ReadString('\n')
- if err != nil {
- return err
- }
- if strings.Trim(o, " \r\n") != output {
- return fmt.Errorf("Unexpected output. Expected [%s], received [%s]", output, o)
- }
- }
- return nil
- }
- // TestRunHostname checks that 'docker run -h' correctly sets a custom hostname
- func TestRunHostname(t *testing.T) {
- stdout, stdoutPipe := io.Pipe()
- cli := NewDockerCli(nil, stdoutPipe, ioutil.Discard, testDaemonProto, testDaemonAddr)
- defer cleanup(globalRuntime)
- c := make(chan struct{})
- go func() {
- defer close(c)
- if err := cli.CmdRun("-h", "foobar", unitTestImageID, "hostname"); err != nil {
- t.Fatal(err)
- }
- }()
- setTimeout(t, "Reading command output time out", 2*time.Second, func() {
- cmdOutput, err := bufio.NewReader(stdout).ReadString('\n')
- if err != nil {
- t.Fatal(err)
- }
- if cmdOutput != "foobar\n" {
- t.Fatalf("'hostname' should display '%s', not '%s'", "foobar\n", cmdOutput)
- }
- })
- container := globalRuntime.List()[0]
- setTimeout(t, "CmdRun timed out", 10*time.Second, func() {
- <-c
- go func() {
- cli.CmdWait(container.ID)
- }()
- if _, err := bufio.NewReader(stdout).ReadString('\n'); err != nil {
- t.Fatal(err)
- }
- })
- // Cleanup pipes
- if err := closeWrap(stdout, stdoutPipe); err != nil {
- t.Fatal(err)
- }
- }
- // TestRunWorkdir checks that 'docker run -w' correctly sets a custom working directory
- func TestRunWorkdir(t *testing.T) {
- stdout, stdoutPipe := io.Pipe()
- cli := NewDockerCli(nil, stdoutPipe, ioutil.Discard, testDaemonProto, testDaemonAddr)
- defer cleanup(globalRuntime)
- c := make(chan struct{})
- go func() {
- defer close(c)
- if err := cli.CmdRun("-w", "/foo/bar", unitTestImageID, "pwd"); err != nil {
- t.Fatal(err)
- }
- }()
- setTimeout(t, "Reading command output time out", 2*time.Second, func() {
- cmdOutput, err := bufio.NewReader(stdout).ReadString('\n')
- if err != nil {
- t.Fatal(err)
- }
- if cmdOutput != "/foo/bar\n" {
- t.Fatalf("'pwd' should display '%s', not '%s'", "/foo/bar\n", cmdOutput)
- }
- })
- container := globalRuntime.List()[0]
- setTimeout(t, "CmdRun timed out", 10*time.Second, func() {
- <-c
- go func() {
- cli.CmdWait(container.ID)
- }()
- if _, err := bufio.NewReader(stdout).ReadString('\n'); err != nil {
- t.Fatal(err)
- }
- })
- // Cleanup pipes
- if err := closeWrap(stdout, stdoutPipe); err != nil {
- t.Fatal(err)
- }
- }
- // TestRunWorkdirExists checks that 'docker run -w' correctly sets a custom working directory, even if it exists
- func TestRunWorkdirExists(t *testing.T) {
- stdout, stdoutPipe := io.Pipe()
- cli := NewDockerCli(nil, stdoutPipe, ioutil.Discard, testDaemonProto, testDaemonAddr)
- defer cleanup(globalRuntime)
- c := make(chan struct{})
- go func() {
- defer close(c)
- if err := cli.CmdRun("-w", "/proc", unitTestImageID, "pwd"); err != nil {
- t.Fatal(err)
- }
- }()
- setTimeout(t, "Reading command output time out", 2*time.Second, func() {
- cmdOutput, err := bufio.NewReader(stdout).ReadString('\n')
- if err != nil {
- t.Fatal(err)
- }
- if cmdOutput != "/proc\n" {
- t.Fatalf("'pwd' should display '%s', not '%s'", "/proc\n", cmdOutput)
- }
- })
- container := globalRuntime.List()[0]
- setTimeout(t, "CmdRun timed out", 5*time.Second, func() {
- <-c
- go func() {
- cli.CmdWait(container.ID)
- }()
- if _, err := bufio.NewReader(stdout).ReadString('\n'); err != nil {
- t.Fatal(err)
- }
- })
- // Cleanup pipes
- if err := closeWrap(stdout, stdoutPipe); err != nil {
- t.Fatal(err)
- }
- }
- func TestRunExit(t *testing.T) {
- stdin, stdinPipe := io.Pipe()
- stdout, stdoutPipe := io.Pipe()
- cli := NewDockerCli(stdin, stdoutPipe, ioutil.Discard, testDaemonProto, testDaemonAddr)
- defer cleanup(globalRuntime)
- c1 := make(chan struct{})
- go func() {
- cli.CmdRun("-i", unitTestImageID, "/bin/cat")
- close(c1)
- }()
- setTimeout(t, "Read/Write assertion timed out", 2*time.Second, func() {
- if err := assertPipe("hello\n", "hello", stdout, stdinPipe, 15); err != nil {
- t.Fatal(err)
- }
- })
- container := globalRuntime.List()[0]
- // Closing /bin/cat stdin, expect it to exit
- if err := stdin.Close(); err != nil {
- t.Fatal(err)
- }
- // as the process exited, CmdRun must finish and unblock. Wait for it
- setTimeout(t, "Waiting for CmdRun timed out", 10*time.Second, func() {
- <-c1
- go func() {
- cli.CmdWait(container.ID)
- }()
- if _, err := bufio.NewReader(stdout).ReadString('\n'); err != nil {
- t.Fatal(err)
- }
- })
- // Make sure that the client has been disconnected
- setTimeout(t, "The client should have been disconnected once the remote process exited.", 2*time.Second, func() {
- // Expecting pipe i/o error, just check that read does not block
- stdin.Read([]byte{})
- })
- // Cleanup pipes
- if err := closeWrap(stdin, stdinPipe, stdout, stdoutPipe); err != nil {
- t.Fatal(err)
- }
- }
- // Expected behaviour: the process dies when the client disconnects
- func TestRunDisconnect(t *testing.T) {
- stdin, stdinPipe := io.Pipe()
- stdout, stdoutPipe := io.Pipe()
- cli := NewDockerCli(stdin, stdoutPipe, ioutil.Discard, testDaemonProto, testDaemonAddr)
- defer cleanup(globalRuntime)
- c1 := make(chan struct{})
- go func() {
- // We're simulating a disconnect so the return value doesn't matter. What matters is the
- // fact that CmdRun returns.
- cli.CmdRun("-i", unitTestImageID, "/bin/cat")
- close(c1)
- }()
- setTimeout(t, "Read/Write assertion timed out", 2*time.Second, func() {
- if err := assertPipe("hello\n", "hello", stdout, stdinPipe, 15); err != nil {
- t.Fatal(err)
- }
- })
- // Close pipes (simulate disconnect)
- if err := closeWrap(stdin, stdinPipe, stdout, stdoutPipe); err != nil {
- t.Fatal(err)
- }
- // as the pipes are close, we expect the process to die,
- // therefore CmdRun to unblock. Wait for CmdRun
- setTimeout(t, "Waiting for CmdRun timed out", 2*time.Second, func() {
- <-c1
- })
- // Client disconnect after run -i should cause stdin to be closed, which should
- // cause /bin/cat to exit.
- setTimeout(t, "Waiting for /bin/cat to exit timed out", 2*time.Second, func() {
- container := globalRuntime.List()[0]
- container.Wait()
- if container.State.Running {
- t.Fatalf("/bin/cat is still running after closing stdin")
- }
- })
- }
- // Expected behaviour: the process dies when the client disconnects
- func TestRunDisconnectTty(t *testing.T) {
- stdin, stdinPipe := io.Pipe()
- stdout, stdoutPipe := io.Pipe()
- cli := NewDockerCli(stdin, stdoutPipe, ioutil.Discard, testDaemonProto, testDaemonAddr)
- defer cleanup(globalRuntime)
- c1 := make(chan struct{})
- go func() {
- // We're simulating a disconnect so the return value doesn't matter. What matters is the
- // fact that CmdRun returns.
- if err := cli.CmdRun("-i", "-t", unitTestImageID, "/bin/cat"); err != nil {
- utils.Debugf("Error CmdRun: %s", err)
- }
- close(c1)
- }()
- setTimeout(t, "Waiting for the container to be started timed out", 10*time.Second, func() {
- for {
- // Client disconnect after run -i should keep stdin out in TTY mode
- l := globalRuntime.List()
- if len(l) == 1 && l[0].State.Running {
- break
- }
- time.Sleep(10 * time.Millisecond)
- }
- })
- // Client disconnect after run -i should keep stdin out in TTY mode
- container := globalRuntime.List()[0]
- setTimeout(t, "Read/Write assertion timed out", 2000*time.Second, func() {
- if err := assertPipe("hello\n", "hello", stdout, stdinPipe, 15); err != nil {
- t.Fatal(err)
- }
- })
- // Close pipes (simulate disconnect)
- if err := closeWrap(stdin, stdinPipe, stdout, stdoutPipe); err != nil {
- t.Fatal(err)
- }
- // In tty mode, we expect the process to stay alive even after client's stdin closes.
- // Do not wait for run to finish
- // Give some time to monitor to do his thing
- container.WaitTimeout(500 * time.Millisecond)
- if !container.State.Running {
- t.Fatalf("/bin/cat should still be running after closing stdin (tty mode)")
- }
- }
- // TestAttachStdin checks attaching to stdin without stdout and stderr.
- // 'docker run -i -a stdin' should sends the client's stdin to the command,
- // then detach from it and print the container id.
- func TestRunAttachStdin(t *testing.T) {
- stdin, stdinPipe := io.Pipe()
- stdout, stdoutPipe := io.Pipe()
- cli := NewDockerCli(stdin, stdoutPipe, ioutil.Discard, testDaemonProto, testDaemonAddr)
- defer cleanup(globalRuntime)
- ch := make(chan struct{})
- go func() {
- defer close(ch)
- cli.CmdRun("-i", "-a", "stdin", unitTestImageID, "sh", "-c", "echo hello && cat && sleep 5")
- }()
- // Send input to the command, close stdin
- setTimeout(t, "Write timed out", 10*time.Second, func() {
- if _, err := stdinPipe.Write([]byte("hi there\n")); err != nil {
- t.Fatal(err)
- }
- if err := stdinPipe.Close(); err != nil {
- t.Fatal(err)
- }
- })
- container := globalRuntime.List()[0]
- // Check output
- setTimeout(t, "Reading command output time out", 10*time.Second, func() {
- cmdOutput, err := bufio.NewReader(stdout).ReadString('\n')
- if err != nil {
- t.Fatal(err)
- }
- if cmdOutput != container.ShortID()+"\n" {
- t.Fatalf("Wrong output: should be '%s', not '%s'\n", container.ShortID()+"\n", cmdOutput)
- }
- })
- // wait for CmdRun to return
- setTimeout(t, "Waiting for CmdRun timed out", 5*time.Second, func() {
- <-ch
- })
- setTimeout(t, "Waiting for command to exit timed out", 10*time.Second, func() {
- container.Wait()
- })
- // Check logs
- if cmdLogs, err := container.ReadLog("json"); err != nil {
- t.Fatal(err)
- } else {
- if output, err := ioutil.ReadAll(cmdLogs); err != nil {
- t.Fatal(err)
- } else {
- expectedLogs := []string{"{\"log\":\"hello\\n\",\"stream\":\"stdout\"", "{\"log\":\"hi there\\n\",\"stream\":\"stdout\""}
- for _, expectedLog := range expectedLogs {
- if !strings.Contains(string(output), expectedLog) {
- t.Fatalf("Unexpected logs: should contains '%s', it is not '%s'\n", expectedLog, output)
- }
- }
- }
- }
- }
- // TestRunDetach checks attaching and detaching with the escape sequence.
- func TestRunDetach(t *testing.T) {
- stdin, stdinPipe := io.Pipe()
- stdout, stdoutPipe := io.Pipe()
- cli := NewDockerCli(stdin, stdoutPipe, ioutil.Discard, testDaemonProto, testDaemonAddr)
- defer cleanup(globalRuntime)
- ch := make(chan struct{})
- go func() {
- defer close(ch)
- cli.CmdRun("-i", "-t", unitTestImageID, "cat")
- }()
- setTimeout(t, "First read/write assertion timed out", 2*time.Second, func() {
- if err := assertPipe("hello\n", "hello", stdout, stdinPipe, 15); err != nil {
- t.Fatal(err)
- }
- })
- container := globalRuntime.List()[0]
- setTimeout(t, "Escape sequence timeout", 5*time.Second, func() {
- stdinPipe.Write([]byte{16, 17})
- if err := stdinPipe.Close(); err != nil {
- t.Fatal(err)
- }
- })
- closeWrap(stdin, stdinPipe, stdout, stdoutPipe)
- // wait for CmdRun to return
- setTimeout(t, "Waiting for CmdRun timed out", 15*time.Second, func() {
- <-ch
- })
- time.Sleep(500 * time.Millisecond)
- if !container.State.Running {
- t.Fatal("The detached container should be still running")
- }
- setTimeout(t, "Waiting for container to die timed out", 20*time.Second, func() {
- container.Kill()
- })
- }
- // TestAttachDetach checks that attach in tty mode can be detached
- func TestAttachDetach(t *testing.T) {
- stdin, stdinPipe := io.Pipe()
- stdout, stdoutPipe := io.Pipe()
- cli := NewDockerCli(stdin, stdoutPipe, ioutil.Discard, testDaemonProto, testDaemonAddr)
- defer cleanup(globalRuntime)
- ch := make(chan struct{})
- go func() {
- defer close(ch)
- if err := cli.CmdRun("-i", "-t", "-d", unitTestImageID, "cat"); err != nil {
- t.Fatal(err)
- }
- }()
- var container *Container
- setTimeout(t, "Reading container's id timed out", 10*time.Second, func() {
- buf := make([]byte, 1024)
- n, err := stdout.Read(buf)
- if err != nil {
- t.Fatal(err)
- }
- container = globalRuntime.List()[0]
- if strings.Trim(string(buf[:n]), " \r\n") != container.ShortID() {
- t.Fatalf("Wrong ID received. Expect %s, received %s", container.ShortID(), buf[:n])
- }
- })
- setTimeout(t, "Starting container timed out", 10*time.Second, func() {
- <-ch
- })
- stdin, stdinPipe = io.Pipe()
- stdout, stdoutPipe = io.Pipe()
- cli = NewDockerCli(stdin, stdoutPipe, ioutil.Discard, testDaemonProto, testDaemonAddr)
- ch = make(chan struct{})
- go func() {
- defer close(ch)
- if err := cli.CmdAttach(container.ShortID()); err != nil {
- if err != io.ErrClosedPipe {
- t.Fatal(err)
- }
- }
- }()
- setTimeout(t, "First read/write assertion timed out", 2*time.Second, func() {
- if err := assertPipe("hello\n", "hello", stdout, stdinPipe, 15); err != nil {
- if err != io.ErrClosedPipe {
- t.Fatal(err)
- }
- }
- })
- setTimeout(t, "Escape sequence timeout", 5*time.Second, func() {
- stdinPipe.Write([]byte{16, 17})
- if err := stdinPipe.Close(); err != nil {
- t.Fatal(err)
- }
- })
- closeWrap(stdin, stdinPipe, stdout, stdoutPipe)
- // wait for CmdRun to return
- setTimeout(t, "Waiting for CmdAttach timed out", 15*time.Second, func() {
- <-ch
- })
- time.Sleep(500 * time.Millisecond)
- if !container.State.Running {
- t.Fatal("The detached container should be still running")
- }
- setTimeout(t, "Waiting for container to die timedout", 5*time.Second, func() {
- container.Kill()
- })
- }
- // Expected behaviour, the process stays alive when the client disconnects
- func TestAttachDisconnect(t *testing.T) {
- stdin, stdinPipe := io.Pipe()
- stdout, stdoutPipe := io.Pipe()
- cli := NewDockerCli(stdin, stdoutPipe, ioutil.Discard, testDaemonProto, testDaemonAddr)
- defer cleanup(globalRuntime)
- go func() {
- // Start a process in daemon mode
- if err := cli.CmdRun("-d", "-i", unitTestImageID, "/bin/cat"); err != nil {
- utils.Debugf("Error CmdRun: %s", err)
- }
- }()
- setTimeout(t, "Waiting for CmdRun timed out", 10*time.Second, func() {
- if _, err := bufio.NewReader(stdout).ReadString('\n'); err != nil {
- t.Fatal(err)
- }
- })
- setTimeout(t, "Waiting for the container to be started timed out", 10*time.Second, func() {
- for {
- l := globalRuntime.List()
- if len(l) == 1 && l[0].State.Running {
- break
- }
- time.Sleep(10 * time.Millisecond)
- }
- })
- container := globalRuntime.List()[0]
- // Attach to it
- c1 := make(chan struct{})
- go func() {
- // We're simulating a disconnect so the return value doesn't matter. What matters is the
- // fact that CmdAttach returns.
- cli.CmdAttach(container.ID)
- close(c1)
- }()
- setTimeout(t, "First read/write assertion timed out", 2*time.Second, func() {
- if err := assertPipe("hello\n", "hello", stdout, stdinPipe, 15); err != nil {
- t.Fatal(err)
- }
- })
- // Close pipes (client disconnects)
- if err := closeWrap(stdin, stdinPipe, stdout, stdoutPipe); err != nil {
- t.Fatal(err)
- }
- // Wait for attach to finish, the client disconnected, therefore, Attach finished his job
- setTimeout(t, "Waiting for CmdAttach timed out", 2*time.Second, func() {
- <-c1
- })
- // We closed stdin, expect /bin/cat to still be running
- // Wait a little bit to make sure container.monitor() did his thing
- err := container.WaitTimeout(500 * time.Millisecond)
- if err == nil || !container.State.Running {
- t.Fatalf("/bin/cat is not running after closing stdin")
- }
- // Try to avoid the timeout in destroy. Best effort, don't check error
- cStdin, _ := container.StdinPipe()
- cStdin.Close()
- container.Wait()
- }
- // Expected behaviour: container gets deleted automatically after exit
- func TestRunAutoRemove(t *testing.T) {
- t.Skip("Fixme. Skipping test for now, race condition")
- stdout, stdoutPipe := io.Pipe()
- cli := NewDockerCli(nil, stdoutPipe, ioutil.Discard, testDaemonProto, testDaemonAddr)
- defer cleanup(globalRuntime)
- c := make(chan struct{})
- go func() {
- defer close(c)
- if err := cli.CmdRun("-rm", unitTestImageID, "hostname"); err != nil {
- t.Fatal(err)
- }
- }()
- var temporaryContainerID string
- setTimeout(t, "Reading command output time out", 2*time.Second, func() {
- cmdOutput, err := bufio.NewReader(stdout).ReadString('\n')
- if err != nil {
- t.Fatal(err)
- }
- temporaryContainerID = cmdOutput
- if err := closeWrap(stdout, stdoutPipe); err != nil {
- t.Fatal(err)
- }
- })
- setTimeout(t, "CmdRun timed out", 10*time.Second, func() {
- <-c
- })
- time.Sleep(500 * time.Millisecond)
- if len(globalRuntime.List()) > 0 {
- t.Fatalf("failed to remove container automatically: container %s still exists", temporaryContainerID)
- }
- }
- func TestCmdLogs(t *testing.T) {
- cli := NewDockerCli(nil, ioutil.Discard, ioutil.Discard, testDaemonProto, testDaemonAddr)
- defer cleanup(globalRuntime)
- if err := cli.CmdRun(unitTestImageID, "sh", "-c", "ls -l"); err != nil {
- t.Fatal(err)
- }
- if err := cli.CmdRun("-t", unitTestImageID, "sh", "-c", "ls -l"); err != nil {
- t.Fatal(err)
- }
- if err := cli.CmdLogs(globalRuntime.List()[0].ID); err != nil {
- t.Fatal(err)
- }
- }
- // Expected behaviour: using / as a bind mount source should throw an error
- func TestRunErrorBindMountRootSource(t *testing.T) {
- cli := NewDockerCli(nil, nil, ioutil.Discard, testDaemonProto, testDaemonAddr)
- defer cleanup(globalRuntime)
- c := make(chan struct{})
- go func() {
- defer close(c)
- if err := cli.CmdRun("-v", "/:/tmp", unitTestImageID, "echo 'should fail'"); err == nil {
- t.Fatal("should have failed to run when using / as a source for the bind mount")
- }
- }()
- setTimeout(t, "CmdRun timed out", 5*time.Second, func() {
- <-c
- })
- }
- // Expected behaviour: error out when attempting to bind mount non-existing source paths
- func TestRunErrorBindNonExistingSource(t *testing.T) {
- cli := NewDockerCli(nil, nil, ioutil.Discard, testDaemonProto, testDaemonAddr)
- defer cleanup(globalRuntime)
- c := make(chan struct{})
- go func() {
- defer close(c)
- if err := cli.CmdRun("-v", "/i/dont/exist:/tmp", unitTestImageID, "echo 'should fail'"); err == nil {
- t.Fatal("should have failed to run when using /i/dont/exist as a source for the bind mount")
- }
- }()
- setTimeout(t, "CmdRun timed out", 5*time.Second, func() {
- <-c
- })
- }
|