mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9f0b3f5609
full diff: https://github.com/gotestyourself/gotest.tools/compare/v2.3.0...v3.0.1 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
31 lines
905 B
Go
31 lines
905 B
Go
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"os/exec"
|
|
"strings"
|
|
"testing"
|
|
|
|
"gotest.tools/v3/assert"
|
|
)
|
|
|
|
func (s *DockerSuite) TestLoginWithoutTTY(c *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
|
|
err := cmd.Run()
|
|
assert.ErrorContains(c, err, "") //"Expected non nil err when logging in & TTY not available"
|
|
}
|
|
|
|
func (s *DockerRegistryAuthHtpasswdSuite) TestLoginToPrivateRegistry(c *testing.T) {
|
|
// wrong credentials
|
|
out, _, err := dockerCmdWithError("login", "-u", s.reg.Username(), "-p", "WRONGPASSWORD", privateRegistryURL)
|
|
assert.ErrorContains(c, err, "", out)
|
|
assert.Assert(c, strings.Contains(out, "401 Unauthorized"))
|
|
|
|
// now it's fine
|
|
dockerCmd(c, "login", "-u", s.reg.Username(), "-p", s.reg.Password(), privateRegistryURL)
|
|
}
|