123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- package main
- import (
- "bytes"
- "io"
- "net/http"
- "net/http/httputil"
- "os/exec"
- "strings"
- "time"
- "github.com/go-check/check"
- "golang.org/x/net/websocket"
- )
- func (s *DockerSuite) TestGetContainersAttachWebsocket(c *check.C) {
- runCmd := exec.Command(dockerBinary, "run", "-dit", "busybox", "cat")
- out, _, err := runCommandWithOutput(runCmd)
- if err != nil {
- c.Fatalf(out, err)
- }
- rwc, err := sockConn(time.Duration(10 * time.Second))
- if err != nil {
- c.Fatal(err)
- }
- cleanedContainerID := strings.TrimSpace(out)
- config, err := websocket.NewConfig(
- "/containers/"+cleanedContainerID+"/attach/ws?stream=1&stdin=1&stdout=1&stderr=1",
- "http://localhost",
- )
- if err != nil {
- c.Fatal(err)
- }
- ws, err := websocket.NewClient(config, rwc)
- if err != nil {
- c.Fatal(err)
- }
- defer ws.Close()
- expected := []byte("hello")
- actual := make([]byte, len(expected))
- outChan := make(chan error)
- go func() {
- _, err := ws.Read(actual)
- outChan <- err
- close(outChan)
- }()
- inChan := make(chan error)
- go func() {
- _, err := ws.Write(expected)
- inChan <- err
- close(inChan)
- }()
- select {
- case err := <-inChan:
- if err != nil {
- c.Fatal(err)
- }
- case <-time.After(5 * time.Second):
- c.Fatal("Timeout writing to ws")
- }
- select {
- case err := <-outChan:
- if err != nil {
- c.Fatal(err)
- }
- case <-time.After(5 * time.Second):
- c.Fatal("Timeout reading from ws")
- }
- if !bytes.Equal(expected, actual) {
- c.Fatal("Expected output on websocket to match input")
- }
- }
- // regression gh14320
- func (s *DockerSuite) TestPostContainersAttachContainerNotFound(c *check.C) {
- status, body, err := sockRequest("POST", "/containers/doesnotexist/attach", nil)
- c.Assert(status, check.Equals, http.StatusNotFound)
- c.Assert(err, check.IsNil)
- expected := "no such id: doesnotexist\n"
- if !strings.Contains(string(body), expected) {
- c.Fatalf("Expected response body to contain %q", expected)
- }
- }
- func (s *DockerSuite) TestGetContainersWsAttachContainerNotFound(c *check.C) {
- status, body, err := sockRequest("GET", "/containers/doesnotexist/attach/ws", nil)
- c.Assert(status, check.Equals, http.StatusNotFound)
- c.Assert(err, check.IsNil)
- expected := "no such id: doesnotexist\n"
- if !strings.Contains(string(body), expected) {
- c.Fatalf("Expected response body to contain %q", expected)
- }
- }
- func (s *DockerSuite) TestPostContainersAttach(c *check.C) {
- runCmd := exec.Command(dockerBinary, "run", "-dit", "busybox", "cat")
- out, _, err := runCommandWithOutput(runCmd)
- c.Assert(err, check.IsNil)
- r, w := io.Pipe()
- defer r.Close()
- defer w.Close()
- conn, err := sockConn(time.Duration(10 * time.Second))
- c.Assert(err, check.IsNil)
- containerID := strings.TrimSpace(out)
- req, err := http.NewRequest("POST", "/containers/"+containerID+"/attach?stream=1&stdin=1&stdout=1&stderr=1", bytes.NewReader([]byte{}))
- c.Assert(err, check.IsNil)
- client := httputil.NewClientConn(conn, nil)
- defer client.Close()
- // Do POST attach request
- resp, err := client.Do(req)
- c.Assert(resp.StatusCode, check.Equals, http.StatusOK)
- // If we check the err, we get a ErrPersistEOF = &http.ProtocolError{ErrorString: "persistent connection closed"}
- // This means that the remote requested this be the last request serviced, is this okay?
- // Test read and write to the attached container
- expected := []byte("hello")
- actual := make([]byte, len(expected))
- outChan := make(chan error)
- go func() {
- _, err := r.Read(actual)
- outChan <- err
- close(outChan)
- }()
- inChan := make(chan error)
- go func() {
- _, err := w.Write(expected)
- inChan <- err
- close(inChan)
- }()
- select {
- case err := <-inChan:
- c.Assert(err, check.IsNil)
- case <-time.After(5 * time.Second):
- c.Fatal("Timeout writing to stdout")
- }
- select {
- case err := <-outChan:
- c.Assert(err, check.IsNil)
- case <-time.After(5 * time.Second):
- c.Fatal("Timeout reading from stdin")
- }
- if !bytes.Equal(expected, actual) {
- c.Fatal("Expected output to match input")
- }
- resp.Body.Close()
- }
- func (s *DockerSuite) TestPostContainersAttachStderr(c *check.C) {
- runCmd := exec.Command(dockerBinary, "run", "-dit", "busybox", "/bin/sh", "-c", "cat >&2")
- out, _, err := runCommandWithOutput(runCmd)
- c.Assert(err, check.IsNil)
- r, w := io.Pipe()
- defer r.Close()
- defer w.Close()
- conn, err := sockConn(time.Duration(10 * time.Second))
- c.Assert(err, check.IsNil)
- containerID := strings.TrimSpace(out)
- req, err := http.NewRequest("POST", "/containers/"+containerID+"/attach?stream=1&stdin=1&stdout=1&stderr=1", bytes.NewReader([]byte{}))
- c.Assert(err, check.IsNil)
- client := httputil.NewClientConn(conn, nil)
- defer client.Close()
- // Do POST attach request
- resp, err := client.Do(req)
- c.Assert(resp.StatusCode, check.Equals, http.StatusOK)
- // If we check the err, we get a ErrPersistEOF = &http.ProtocolError{ErrorString: "persistent connection closed"}
- // This means that the remote requested this be the last request serviced, is this okay?
- // Test read and write to the attached container
- expected := []byte("hello")
- actual := make([]byte, len(expected))
- outChan := make(chan error)
- go func() {
- _, err := r.Read(actual)
- outChan <- err
- close(outChan)
- }()
- inChan := make(chan error)
- go func() {
- _, err := w.Write(expected)
- inChan <- err
- close(inChan)
- }()
- select {
- case err := <-inChan:
- c.Assert(err, check.IsNil)
- case <-time.After(5 * time.Second):
- c.Fatal("Timeout writing to stdout")
- }
- select {
- case err := <-outChan:
- c.Assert(err, check.IsNil)
- case <-time.After(5 * time.Second):
- c.Fatal("Timeout reading from stdin")
- }
- if !bytes.Equal(expected, actual) {
- c.Fatal("Expected output to match input")
- }
- resp.Body.Close()
- }
|