2014-11-17 22:25:06 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"os/exec"
|
2015-04-18 12:46:47 -04:00
|
|
|
|
|
|
|
"github.com/go-check/check"
|
2014-11-17 22:25:06 -05:00
|
|
|
)
|
|
|
|
|
2015-04-18 12:46:47 -04:00
|
|
|
func (s *DockerSuite) TestLoginWithoutTTY(c *check.C) {
|
2014-11-17 22:25:06 -05:00
|
|
|
cmd := exec.Command(dockerBinary, "login")
|
|
|
|
|
2015-01-16 09:47:32 -05:00
|
|
|
// Send to stdin so the process does not get the TTY
|
|
|
|
cmd.Stdin = bytes.NewBufferString("buffer test string \n")
|
2014-11-17 22:25:06 -05:00
|
|
|
|
|
|
|
// run the command and block until it's done
|
|
|
|
if err := cmd.Run(); err == nil {
|
2015-04-18 12:46:47 -04:00
|
|
|
c.Fatal("Expected non nil err when loginning in & TTY not available")
|
2014-11-17 22:25:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|