2014-11-17 22:25:06 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"os/exec"
|
2019-04-04 09:23:19 -04:00
|
|
|
"strings"
|
2019-09-09 17:06:12 -04:00
|
|
|
"testing"
|
2015-04-18 12:46:47 -04:00
|
|
|
|
2020-02-07 08:39:24 -05:00
|
|
|
"gotest.tools/v3/assert"
|
2014-11-17 22:25:06 -05:00
|
|
|
)
|
|
|
|
|
2022-06-16 17:32:10 -04:00
|
|
|
type DockerCLILoginSuite struct {
|
|
|
|
ds *DockerSuite
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *DockerCLILoginSuite) TearDownTest(c *testing.T) {
|
|
|
|
s.ds.TearDownTest(c)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *DockerCLILoginSuite) OnTimeout(c *testing.T) {
|
|
|
|
s.ds.OnTimeout(c)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *DockerCLILoginSuite) TestLoginWithoutTTY(c *testing.T) {
|
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()
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.ErrorContains(c, err, "") //"Expected non nil err when logging in & TTY not available"
|
2016-01-23 13:45:01 -05:00
|
|
|
}
|
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerRegistryAuthHtpasswdSuite) TestLoginToPrivateRegistry(c *testing.T) {
|
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)
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.ErrorContains(c, err, "", out)
|
|
|
|
assert.Assert(c, strings.Contains(out, "401 Unauthorized"))
|
2016-02-29 20:51:36 -05:00
|
|
|
|
|
|
|
// 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
|
|
|
}
|