2013-03-30 09:55:47 -04:00
|
|
|
package docker
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"fmt"
|
2013-04-04 22:00:14 -04:00
|
|
|
"github.com/dotcloud/docker/rcli"
|
2013-03-30 09:55:47 -04:00
|
|
|
"io"
|
2013-04-04 23:08:58 -04:00
|
|
|
"io/ioutil"
|
2013-03-30 09:55:47 -04:00
|
|
|
"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
|
|
|
|
}
|
|
|
|
|
2013-03-31 23:52:35 -04:00
|
|
|
func setTimeout(t *testing.T, msg string, d time.Duration, f func()) {
|
2013-03-30 09:55:47 -04:00
|
|
|
c := make(chan bool)
|
|
|
|
|
|
|
|
// Make sure we are not too long
|
|
|
|
go func() {
|
|
|
|
time.Sleep(d)
|
|
|
|
c <- true
|
|
|
|
}()
|
2013-03-31 23:52:35 -04:00
|
|
|
go func() {
|
|
|
|
f()
|
|
|
|
c <- false
|
|
|
|
}()
|
|
|
|
if <-c {
|
|
|
|
t.Fatal(msg)
|
2013-03-30 09:55:47 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2013-04-02 22:00:05 -04:00
|
|
|
// TestRunHostname checks that 'docker run -h' correctly sets a custom hostname
|
|
|
|
func TestRunHostname(t *testing.T) {
|
2013-04-04 23:08:58 -04:00
|
|
|
runtime, err := newTestRuntime()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer nuke(runtime)
|
|
|
|
|
|
|
|
srv := &Server{runtime: runtime}
|
|
|
|
|
|
|
|
stdin, _ := io.Pipe()
|
|
|
|
stdout, stdoutPipe := io.Pipe()
|
|
|
|
|
|
|
|
c := make(chan struct{})
|
|
|
|
go func() {
|
|
|
|
if err := srv.CmdRun(stdin, rcli.NewDockerLocalConn(stdoutPipe), "-h", "foobar", GetTestImage(runtime).Id, "hostname"); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
close(c)
|
|
|
|
}()
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
setTimeout(t, "CmdRun timed out", 2*time.Second, func() {
|
|
|
|
<-c
|
|
|
|
})
|
2013-04-02 22:00:05 -04:00
|
|
|
}
|
|
|
|
|
2013-04-02 12:22:30 -04:00
|
|
|
func TestRunExit(t *testing.T) {
|
|
|
|
runtime, err := newTestRuntime()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer nuke(runtime)
|
|
|
|
|
|
|
|
srv := &Server{runtime: runtime}
|
|
|
|
|
|
|
|
stdin, stdinPipe := io.Pipe()
|
|
|
|
stdout, stdoutPipe := io.Pipe()
|
|
|
|
c1 := make(chan struct{})
|
|
|
|
go func() {
|
2013-04-08 19:06:55 -04:00
|
|
|
srv.CmdRun(stdin, rcli.NewDockerLocalConn(stdoutPipe), "-i", GetTestImage(runtime).Id, "/bin/cat")
|
2013-04-02 12:22:30 -04:00
|
|
|
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 := runtime.List()[0]
|
|
|
|
|
|
|
|
// Closing /bin/cat stdin, expect it to exit
|
|
|
|
p, err := container.StdinPipe()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if err := p.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", 2*time.Second, func() {
|
|
|
|
<-c1
|
|
|
|
})
|
|
|
|
|
|
|
|
// 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() {
|
2013-04-02 15:18:20 -04:00
|
|
|
// Expecting pipe i/o error, just check that read does not block
|
|
|
|
stdin.Read([]byte{})
|
2013-04-02 12:22:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
// Cleanup pipes
|
|
|
|
if err := closeWrap(stdin, stdinPipe, stdout, stdoutPipe); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-31 23:52:35 -04:00
|
|
|
// Expected behaviour: the process dies when the client disconnects
|
|
|
|
func TestRunDisconnect(t *testing.T) {
|
2013-03-30 09:55:47 -04:00
|
|
|
runtime, err := newTestRuntime()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer nuke(runtime)
|
|
|
|
|
2013-03-31 23:52:35 -04:00
|
|
|
srv := &Server{runtime: runtime}
|
2013-03-30 09:55:47 -04:00
|
|
|
|
2013-03-31 23:52:35 -04:00
|
|
|
stdin, stdinPipe := io.Pipe()
|
|
|
|
stdout, stdoutPipe := io.Pipe()
|
|
|
|
c1 := make(chan struct{})
|
|
|
|
go func() {
|
2013-04-02 14:06:42 -04:00
|
|
|
// We're simulating a disconnect so the return value doesn't matter. What matters is the
|
|
|
|
// fact that CmdRun returns.
|
2013-04-04 22:00:14 -04:00
|
|
|
srv.CmdRun(stdin, rcli.NewDockerLocalConn(stdoutPipe), "-i", GetTestImage(runtime).Id, "/bin/cat")
|
2013-03-31 23:52:35 -04:00
|
|
|
close(c1)
|
|
|
|
}()
|
2013-03-30 09:55:47 -04:00
|
|
|
|
2013-03-31 23:52:35 -04:00
|
|
|
setTimeout(t, "Read/Write assertion timed out", 2*time.Second, func() {
|
2013-03-30 09:55:47 -04:00
|
|
|
if err := assertPipe("hello\n", "hello", stdout, stdinPipe, 15); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2013-03-31 23:52:35 -04:00
|
|
|
})
|
2013-03-30 09:55:47 -04:00
|
|
|
|
2013-03-31 23:52:35 -04:00
|
|
|
// Close pipes (simulate disconnect)
|
|
|
|
if err := closeWrap(stdin, stdinPipe, stdout, stdoutPipe); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2013-03-30 09:55:47 -04:00
|
|
|
|
2013-03-31 23:52:35 -04:00
|
|
|
// 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() {
|
2013-03-30 09:55:47 -04:00
|
|
|
<-c1
|
|
|
|
})
|
2013-03-31 23:52:35 -04:00
|
|
|
|
2013-04-02 14:07:49 -04:00
|
|
|
// 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 := runtime.List()[0]
|
|
|
|
container.Wait()
|
|
|
|
if container.State.Running {
|
|
|
|
t.Fatalf("/bin/cat is still running after closing stdin")
|
|
|
|
}
|
|
|
|
})
|
2013-03-30 09:55:47 -04:00
|
|
|
}
|
2013-04-01 00:48:18 -04:00
|
|
|
|
2013-04-02 21:05:19 -04:00
|
|
|
// 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.
|
2013-04-04 23:08:58 -04:00
|
|
|
func TestRunAttachStdin(t *testing.T) {
|
|
|
|
runtime, err := newTestRuntime()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer nuke(runtime)
|
|
|
|
srv := &Server{runtime: runtime}
|
|
|
|
|
|
|
|
stdin, stdinPipe := io.Pipe()
|
|
|
|
stdout, stdoutPipe := io.Pipe()
|
|
|
|
|
|
|
|
ch := make(chan struct{})
|
|
|
|
go func() {
|
|
|
|
srv.CmdRun(stdin, rcli.NewDockerLocalConn(stdoutPipe), "-i", "-a", "stdin", GetTestImage(runtime).Id, "sh", "-c", "echo hello; cat")
|
|
|
|
close(ch)
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Send input to the command, close stdin
|
|
|
|
setTimeout(t, "Write timed out", 2*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 := runtime.List()[0]
|
|
|
|
|
|
|
|
// Check output
|
|
|
|
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", 2*time.Second, func() {
|
|
|
|
<-ch
|
|
|
|
})
|
|
|
|
|
|
|
|
setTimeout(t, "Waiting for command to exit timed out", 2*time.Second, func() {
|
|
|
|
container.Wait()
|
|
|
|
})
|
|
|
|
|
|
|
|
// Check logs
|
|
|
|
if cmdLogs, err := container.ReadLog("stdout"); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
} else {
|
|
|
|
if output, err := ioutil.ReadAll(cmdLogs); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
} else {
|
|
|
|
expectedLog := "hello\nhi there\n"
|
|
|
|
if string(output) != expectedLog {
|
|
|
|
t.Fatalf("Unexpected logs: should be '%s', not '%s'\n", expectedLog, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-03-30 09:55:47 -04:00
|
|
|
}
|
2013-04-01 00:48:18 -04:00
|
|
|
|
|
|
|
// Expected behaviour, the process stays alive when the client disconnects
|
|
|
|
func TestAttachDisconnect(t *testing.T) {
|
|
|
|
runtime, err := newTestRuntime()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer nuke(runtime)
|
|
|
|
|
|
|
|
srv := &Server{runtime: runtime}
|
|
|
|
|
|
|
|
container, err := runtime.Create(
|
|
|
|
&Config{
|
|
|
|
Image: GetTestImage(runtime).Id,
|
|
|
|
Memory: 33554432,
|
|
|
|
Cmd: []string{"/bin/cat"},
|
|
|
|
OpenStdin: true,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer runtime.Destroy(container)
|
|
|
|
|
|
|
|
// Start the process
|
|
|
|
if err := container.Start(); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
stdin, stdinPipe := io.Pipe()
|
|
|
|
stdout, stdoutPipe := io.Pipe()
|
|
|
|
|
|
|
|
// Attach to it
|
|
|
|
c1 := make(chan struct{})
|
|
|
|
go func() {
|
2013-04-02 14:06:42 -04:00
|
|
|
// We're simulating a disconnect so the return value doesn't matter. What matters is the
|
|
|
|
// fact that CmdAttach returns.
|
2013-04-04 22:00:14 -04:00
|
|
|
srv.CmdAttach(stdin, rcli.NewDockerLocalConn(stdoutPipe), container.Id)
|
2013-04-01 00:48:18 -04:00
|
|
|
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
|
|
|
|
})
|
2013-04-02 15:18:20 -04:00
|
|
|
|
2013-04-01 00:48:18 -04:00
|
|
|
// 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 timeoout in destroy. Best effort, don't check error
|
|
|
|
cStdin, _ := container.StdinPipe()
|
|
|
|
cStdin.Close()
|
|
|
|
}
|