mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
b8f7526fc6
Fixes #10129 Makes the .dockercfg more human parsable. Also cleaned up the (technically) racey login test. Signed-off-by: Brian Goff <cpuguy83@gmail.com>
21 lines
455 B
Go
21 lines
455 B
Go
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"os/exec"
|
|
"testing"
|
|
)
|
|
|
|
func TestLoginWithoutTTY(t *testing.T) {
|
|
cmd := exec.Command(dockerBinary, "login")
|
|
|
|
// Send to stdin so the process does not get the TTY
|
|
cmd.Stdin = bytes.NewBufferString("buffer test string \n")
|
|
|
|
// run the command and block until it's done
|
|
if err := cmd.Run(); err == nil {
|
|
t.Fatal("Expected non nil err when loginning in & TTY not available")
|
|
}
|
|
|
|
logDone("login - login without TTY")
|
|
}
|