2014-11-17 22:25:06 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"os/exec"
|
2015-04-18 12:46:47 -04:00
|
|
|
|
2016-12-30 12:23:00 -05:00
|
|
|
"github.com/docker/docker/integration-cli/checker"
|
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
|
2015-10-08 12:43:03 -04:00
|
|
|
err := cmd.Run()
|
2015-10-09 03:08:01 -04:00
|
|
|
c.Assert(err, checker.NotNil) //"Expected non nil err when loginning in & TTY not available"
|
2016-01-23 13:45:01 -05:00
|
|
|
}
|
|
|
|
|
2016-03-14 16:11:35 -04:00
|
|
|
func (s *DockerRegistryAuthHtpasswdSuite) TestLoginToPrivateRegistry(c *check.C) {
|
2016-02-29 20:51:36 -05:00
|
|
|
// wrong credentials
|
2016-12-30 13:10:04 -05:00
|
|
|
out, _, err := dockerCmdWithError("login", "-u", s.reg.Username(), "-p", "WRONGPASSWORD", privateRegistryURL)
|
2016-02-29 20:51:36 -05:00
|
|
|
c.Assert(err, checker.NotNil, check.Commentf(out))
|
|
|
|
c.Assert(out, checker.Contains, "401 Unauthorized")
|
|
|
|
|
|
|
|
// now it's fine
|
2016-12-30 13:10:04 -05:00
|
|
|
dockerCmd(c, "login", "-u", s.reg.Username(), "-p", s.reg.Password(), privateRegistryURL)
|
2016-02-29 20:51:36 -05:00
|
|
|
}
|