mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9f0b3f5609
full diff: https://github.com/gotestyourself/gotest.tools/compare/v2.3.0...v3.0.1 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
29 lines
816 B
Go
29 lines
816 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/v3/assert"
|
|
is "gotest.tools/v3/assert/cmp"
|
|
"gotest.tools/v3/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)
|
|
assert.Assert(t, err != nil)
|
|
assert.Check(t, is.ErrorContains(err, "unauthorized: incorrect username or password"))
|
|
assert.Check(t, is.ErrorContains(err, "https://registry-1.docker.io/v2/"))
|
|
}
|