mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
0de62d9bbc
A client is already created in testenv.New(), so we can just as well use that one, instead of creating a new client. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
28 lines
781 B
Go
28 lines
781 B
Go
package system // import "github.com/docker/docker/integration/system"
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/integration/internal/requirement"
|
|
"gotest.tools/assert"
|
|
is "gotest.tools/assert/cmp"
|
|
"gotest.tools/skip"
|
|
)
|
|
|
|
// Test case for GitHub 22244
|
|
func TestLoginFailsWithBadCredentials(t *testing.T) {
|
|
skip.If(t, !requirement.HasHubConnectivity(t))
|
|
|
|
defer setupTest(t)()
|
|
client := testEnv.APIClient()
|
|
|
|
config := types.AuthConfig{
|
|
Username: "no-user",
|
|
Password: "no-password",
|
|
}
|
|
_, err := client.RegistryLogin(context.Background(), config)
|
|
expected := "Error response from daemon: Get https://registry-1.docker.io/v2/: unauthorized: incorrect username or password"
|
|
assert.Check(t, is.Error(err, expected))
|
|
}
|