integration-cli/docker_cli_login_test.go
e6fd57b9
 package main
 
 import (
 	"bytes"
 	"os/exec"
dc944ea7
 
 	"github.com/go-check/check"
e6fd57b9
 )
 
dc944ea7
 func (s *DockerSuite) TestLoginWithoutTTY(c *check.C) {
e6fd57b9
 	cmd := exec.Command(dockerBinary, "login")
 
b8f7526f
 	// Send to stdin so the process does not get the TTY
 	cmd.Stdin = bytes.NewBufferString("buffer test string \n")
e6fd57b9
 
 	// run the command and block until it's done
 	if err := cmd.Run(); err == nil {
dc944ea7
 		c.Fatal("Expected non nil err when loginning in & TTY not available")
e6fd57b9
 	}
 
 }