mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
83363fb2d4
It is wrong to pass an arbitrary string to a function expecting %-style formatting. One solution would be to replace any % with %%, but it's easier to just do what this patch does. Generated with: for f in $(git grep -l 'check.Commentf(out)'); do \ sed -i -e 's/check\.Commentf(out)/check.Commentf("%s", out)/g' $f; \ done Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
30 lines
942 B
Go
30 lines
942 B
Go
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"os/exec"
|
|
|
|
"github.com/docker/docker/integration-cli/checker"
|
|
"github.com/go-check/check"
|
|
)
|
|
|
|
func (s *DockerSuite) TestLoginWithoutTTY(c *check.C) {
|
|
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()
|
|
c.Assert(err, checker.NotNil) //"Expected non nil err when logging in & TTY not available"
|
|
}
|
|
|
|
func (s *DockerRegistryAuthHtpasswdSuite) TestLoginToPrivateRegistry(c *check.C) {
|
|
// wrong credentials
|
|
out, _, err := dockerCmdWithError("login", "-u", s.reg.Username(), "-p", "WRONGPASSWORD", privateRegistryURL)
|
|
c.Assert(err, checker.NotNil, check.Commentf("%s", out))
|
|
c.Assert(out, checker.Contains, "401 Unauthorized")
|
|
|
|
// now it's fine
|
|
dockerCmd(c, "login", "-u", s.reg.Username(), "-p", s.reg.Password(), privateRegistryURL)
|
|
}
|