mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
6be0f70983
gty-migrate-from-testify --ignore-build-tags Signed-off-by: Daniel Nephin <dnephin@docker.com>
28 lines
930 B
Go
28 lines
930 B
Go
package system // import "github.com/docker/docker/integration/system"
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/integration/internal/request"
|
|
"github.com/docker/docker/integration/internal/requirement"
|
|
"github.com/gotestyourself/gotestyourself/assert"
|
|
is "github.com/gotestyourself/gotestyourself/assert/cmp"
|
|
"github.com/gotestyourself/gotestyourself/skip"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// Test case for GitHub 22244
|
|
func TestLoginFailsWithBadCredentials(t *testing.T) {
|
|
skip.IfCondition(t, !requirement.HasHubConnectivity(t))
|
|
|
|
client := request.NewAPIClient(t)
|
|
|
|
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))
|
|
}
|