Migrate TestAuthAPI from integration-cli to integration
This fix migrates TestAuthAPI from integration-cli to integration Signed-off-by: Yong Tang <yong.tang.github@outlook.com> Upstream-commit: d9247557898d1d15a7349ecb0044b73d4a5a41a9 Component: engine
This commit is contained in:
@@ -1,25 +0,0 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"github.com/docker/docker/api/types"
|
||||
"github.com/docker/docker/client"
|
||||
"github.com/docker/docker/integration-cli/checker"
|
||||
"github.com/go-check/check"
|
||||
"golang.org/x/net/context"
|
||||
)
|
||||
|
||||
// Test case for #22244
|
||||
func (s *DockerSuite) TestAuthAPI(c *check.C) {
|
||||
testRequires(c, Network)
|
||||
config := types.AuthConfig{
|
||||
Username: "no-user",
|
||||
Password: "no-password",
|
||||
}
|
||||
cli, err := client.NewEnvClient()
|
||||
c.Assert(err, checker.IsNil)
|
||||
defer cli.Close()
|
||||
|
||||
_, err = cli.RegistryLogin(context.Background(), config)
|
||||
expected := "Get https://registry-1.docker.io/v2/: unauthorized: incorrect username or password"
|
||||
c.Assert(err.Error(), checker.Contains, expected)
|
||||
}
|
||||
Reference in New Issue
Block a user