mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
322e2a7d05
Signed-off-by: Ben Firshman <ben@firshman.co.uk>
25 lines
715 B
Go
25 lines
715 B
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/docker/docker/pkg/integration/checker"
|
|
"github.com/docker/engine-api/types"
|
|
"github.com/go-check/check"
|
|
)
|
|
|
|
// Test case for #22244
|
|
func (s *DockerSuite) TestAuthApi(c *check.C) {
|
|
testRequires(c, Network)
|
|
config := types.AuthConfig{
|
|
Username: "no-user",
|
|
Password: "no-password",
|
|
}
|
|
|
|
expected := "Get https://registry-1.docker.io/v2/: unauthorized: incorrect username or password"
|
|
status, body, err := sockRequest("POST", "/auth", config)
|
|
c.Assert(err, check.IsNil)
|
|
c.Assert(status, check.Equals, http.StatusUnauthorized)
|
|
msg := getErrorMessage(c, body)
|
|
c.Assert(msg, checker.Contains, expected, check.Commentf("Expected: %v, got: %v", expected, msg))
|
|
}
|