mirror of
https://github.com/moby/moby.git
synced 2025-07-30 18:23:29 +03:00
Validate repo name before image pull
Checks for reserved 'scratch' image name. fixes #12281 Docker-DCO-1.1-Signed-off-by: Josh Hawn <josh.hawn@docker.com> (github: jlhawn)
This commit is contained in:
@ -134,3 +134,22 @@ func (s *DockerSuite) TestPullImageOfficialNames(c *check.C) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func (s *DockerSuite) TestPullScratchNotAllowed(c *check.C) {
|
||||
testRequires(c, Network)
|
||||
|
||||
pullCmd := exec.Command(dockerBinary, "pull", "scratch")
|
||||
out, exitCode, err := runCommandWithOutput(pullCmd)
|
||||
if err == nil {
|
||||
c.Fatal("expected pull of scratch to fail, but it didn't")
|
||||
}
|
||||
if exitCode != 1 {
|
||||
c.Fatalf("pulling scratch expected exit code 1, got %d", exitCode)
|
||||
}
|
||||
if strings.Contains(out, "Pulling repository scratch") {
|
||||
c.Fatalf("pulling scratch should not have begun: %s", out)
|
||||
}
|
||||
if !strings.Contains(out, "'scratch' is a reserved name") {
|
||||
c.Fatalf("unexpected output pulling scratch: %s", out)
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user