mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
2b7416ef34
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
31 lines
912 B
Go
31 lines
912 B
Go
package system // import "github.com/docker/docker/integration/system"
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/docker/docker/api/types/registry"
|
|
"github.com/docker/docker/integration/internal/requirement"
|
|
registrypkg "github.com/docker/docker/registry"
|
|
"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 := registry.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, fmt.Sprintf("https://%s/v2/", registrypkg.DefaultRegistryHost)))
|
|
}
|