mirror of
				https://github.com/moby/moby.git
				synced 2025-11-03 16:33:18 +03:00 
			
		
		
		
	Move TestAttachDetachTruncatedID to integration-cli
Signed-off-by: Brian Goff <cpuguy83@gmail.com>
This commit is contained in:
		@@ -9,6 +9,7 @@ import (
 | 
			
		||||
	"testing"
 | 
			
		||||
	"time"
 | 
			
		||||
 | 
			
		||||
	"github.com/docker/docker/pkg/stringid"
 | 
			
		||||
	"github.com/kr/pty"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
@@ -213,3 +214,75 @@ func TestAttachDetach(t *testing.T) {
 | 
			
		||||
 | 
			
		||||
	logDone("attach - detach")
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// TestAttachDetachTruncatedID checks that attach in tty mode can be detached
 | 
			
		||||
func TestAttachDetachTruncatedID(t *testing.T) {
 | 
			
		||||
	out, _, _ := dockerCmd(t, "run", "-itd", "busybox", "cat")
 | 
			
		||||
	id := stringid.TruncateID(strings.TrimSpace(out))
 | 
			
		||||
	if err := waitRun(id); err != nil {
 | 
			
		||||
		t.Fatal(err)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	cpty, tty, err := pty.Open()
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		t.Fatal(err)
 | 
			
		||||
	}
 | 
			
		||||
	defer cpty.Close()
 | 
			
		||||
 | 
			
		||||
	cmd := exec.Command(dockerBinary, "attach", id)
 | 
			
		||||
	cmd.Stdin = tty
 | 
			
		||||
	stdout, err := cmd.StdoutPipe()
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		t.Fatal(err)
 | 
			
		||||
	}
 | 
			
		||||
	defer stdout.Close()
 | 
			
		||||
	if err := cmd.Start(); err != nil {
 | 
			
		||||
		t.Fatal(err)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if _, err := cpty.Write([]byte("hello\n")); err != nil {
 | 
			
		||||
		t.Fatal(err)
 | 
			
		||||
	}
 | 
			
		||||
	out, err = bufio.NewReader(stdout).ReadString('\n')
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		t.Fatal(err)
 | 
			
		||||
	}
 | 
			
		||||
	if strings.TrimSpace(out) != "hello" {
 | 
			
		||||
		t.Fatalf("exepected 'hello', got %q", out)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// escape sequence
 | 
			
		||||
	if _, err := cpty.Write([]byte{16}); err != nil {
 | 
			
		||||
		t.Fatal(err)
 | 
			
		||||
	}
 | 
			
		||||
	time.Sleep(100 * time.Millisecond)
 | 
			
		||||
	if _, err := cpty.Write([]byte{17}); err != nil {
 | 
			
		||||
		t.Fatal(err)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	ch := make(chan struct{})
 | 
			
		||||
	go func() {
 | 
			
		||||
		cmd.Wait()
 | 
			
		||||
		ch <- struct{}{}
 | 
			
		||||
	}()
 | 
			
		||||
 | 
			
		||||
	running, err := inspectField(id, "State.Running")
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		t.Fatal(err)
 | 
			
		||||
	}
 | 
			
		||||
	if running != "true" {
 | 
			
		||||
		t.Fatal("exepected container to still be running")
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	go func() {
 | 
			
		||||
		dockerCmd(t, "kill", id)
 | 
			
		||||
	}()
 | 
			
		||||
 | 
			
		||||
	select {
 | 
			
		||||
	case <-ch:
 | 
			
		||||
	case <-time.After(10 * time.Millisecond):
 | 
			
		||||
		t.Fatal("timed out waiting for container to exit")
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	logDone("attach - detach truncated ID")
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user