blob: 63e78ab520f65ba19b4ce937cc48e5186e6f83d5 [file] [log] [blame]
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) {
config := types.AuthConfig{
Username: "no-user",
Password: "no-password",
}
expected := "Get https://registry-1.docker.io/v2/: unauthorized: incorrect username or password\n"
status, body, err := sockRequest("POST", "/auth", config)
c.Assert(err, check.IsNil)
c.Assert(status, check.Equals, http.StatusUnauthorized)
c.Assert(string(body), checker.Contains, expected, check.Commentf("Expected: %v, got: %v", expected, string(body)))
}