mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
Co-authored-by: Claude <noreply@anthropic.com> Signed-off-by: Austin Vazquez <austin.vazquez@docker.com> Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
30 lines
816 B
Go
30 lines
816 B
Go
package system
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/moby/moby/client"
|
|
registrypkg "github.com/moby/moby/v2/daemon/pkg/registry"
|
|
"github.com/moby/moby/v2/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))
|
|
|
|
ctx := setupTest(t)
|
|
apiClient := testEnv.APIClient()
|
|
|
|
_, err := apiClient.RegistryLogin(ctx, client.RegistryLoginOptions{
|
|
Username: "no-user",
|
|
Password: "no-password",
|
|
})
|
|
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)))
|
|
}
|