integration-cli/docker_cli_pull_test.go
6db32fde
 package main
 
 import (
9d6acbee
 	"fmt"
f324f485
 	"regexp"
568f86eb
 	"strings"
1406cb35
 	"time"
dc944ea7
 
f324f485
 	"github.com/docker/distribution/digest"
51090717
 	"github.com/docker/docker/pkg/integration/checker"
3e90b12d
 	"github.com/go-check/check"
6db32fde
 )
 
f324f485
 // TestPullFromCentralRegistry pulls an image from the central registry and verifies that the client
 // prints all expected output.
 func (s *DockerHubPullSuite) TestPullFromCentralRegistry(c *check.C) {
f9a3558a
 	testRequires(c, DaemonIsLinux)
f324f485
 	out := s.Cmd(c, "pull", "hello-world")
 	defer deleteImages("hello-world")
 
 	c.Assert(out, checker.Contains, "Using default tag: latest", check.Commentf("expected the 'latest' tag to be automatically assumed"))
 	c.Assert(out, checker.Contains, "Pulling from library/hello-world", check.Commentf("expected the 'library/' prefix to be automatically assumed"))
 	c.Assert(out, checker.Contains, "Downloaded newer image for hello-world:latest")
 
 	matches := regexp.MustCompile(`Digest: (.+)\n`).FindAllStringSubmatch(out, -1)
 	c.Assert(len(matches), checker.Equals, 1, check.Commentf("expected exactly one image digest in the output"))
 	c.Assert(len(matches[0]), checker.Equals, 2, check.Commentf("unexpected number of submatches for the digest"))
 	_, err := digest.ParseDigest(matches[0][1])
 	c.Check(err, checker.IsNil, check.Commentf("invalid digest %q in output", matches[0][1]))
 
 	// We should have a single entry in images.
 	img := strings.TrimSpace(s.Cmd(c, "images"))
1b010516
 	splitImg := strings.Split(img, "\n")
 	c.Assert(splitImg, checker.HasLen, 2)
 	c.Assert(splitImg[1], checker.Matches, `hello-world\s+latest.*?`, check.Commentf("invalid output for `docker images` (expected image and tag name"))
92d5eafe
 }
7d74be16
 
f324f485
 // TestPullNonExistingImage pulls non-existing images from the central registry, with different
 // combinations of implicit tag and library prefix.
 func (s *DockerHubPullSuite) TestPullNonExistingImage(c *check.C) {
f9a3558a
 	testRequires(c, DaemonIsLinux)
f324f485
 	for _, e := range []struct {
4352da78
 		Repo  string
f324f485
 		Alias string
 	}{
4352da78
 		{"library/asdfasdf", "asdfasdf:foobar"},
 		{"library/asdfasdf", "library/asdfasdf:foobar"},
 		{"library/asdfasdf", "asdfasdf"},
 		{"library/asdfasdf", "asdfasdf:latest"},
 		{"library/asdfasdf", "library/asdfasdf"},
 		{"library/asdfasdf", "library/asdfasdf:latest"},
f324f485
 	} {
 		out, err := s.CmdWithError("pull", e.Alias)
 		c.Assert(err, checker.NotNil, check.Commentf("expected non-zero exit status when pulling non-existing image: %s", out))
9d6acbee
 		// Hub returns 401 rather than 404 for nonexistent repos over
 		// the v2 protocol - but we should end up falling back to v1,
 		// which does return a 404.
 		c.Assert(out, checker.Contains, fmt.Sprintf("Error: image %s not found", e.Repo), check.Commentf("expected image not found error messages"))
589a5226
 
 		// pull -a on a nonexistent registry should fall back as well
 		if !strings.ContainsRune(e.Alias, ':') {
 			out, err := s.CmdWithError("pull", "-a", e.Alias)
 			c.Assert(err, checker.NotNil, check.Commentf("expected non-zero exit status when pulling non-existing image: %s", out))
 			c.Assert(out, checker.Contains, fmt.Sprintf("Error: image %s not found", e.Repo), check.Commentf("expected image not found error messages"))
d37f25f0
 			c.Assert(out, checker.Not(checker.Contains), "unauthorized", check.Commentf(`message should not contain "unauthorized"`))
589a5226
 		}
6db32fde
 	}
589a5226
 
6db32fde
 }
568f86eb
 
f324f485
 // TestPullFromCentralRegistryImplicitRefParts pulls an image from the central registry and verifies
 // that pulling the same image with different combinations of implicit elements of the the image
 // reference (tag, repository, central registry url, ...) doesn't trigger a new pull nor leads to
 // multiple images.
 func (s *DockerHubPullSuite) TestPullFromCentralRegistryImplicitRefParts(c *check.C) {
f9a3558a
 	testRequires(c, DaemonIsLinux)
f324f485
 	s.Cmd(c, "pull", "hello-world")
 	defer deleteImages("hello-world")
 
 	for _, i := range []string{
 		"hello-world",
 		"hello-world:latest",
568f86eb
 		"library/hello-world",
f324f485
 		"library/hello-world:latest",
568f86eb
 		"docker.io/library/hello-world",
 		"index.docker.io/library/hello-world",
f324f485
 	} {
 		out := s.Cmd(c, "pull", i)
 		c.Assert(out, checker.Contains, "Image is up to date for hello-world:latest")
871d2b96
 	}
 
f324f485
 	// We should have a single entry in images.
 	img := strings.TrimSpace(s.Cmd(c, "images"))
1b010516
 	splitImg := strings.Split(img, "\n")
 	c.Assert(splitImg, checker.HasLen, 2)
 	c.Assert(splitImg[1], checker.Matches, `hello-world\s+latest.*?`, check.Commentf("invalid output for `docker images` (expected image and tag name"))
871d2b96
 }
 
f324f485
 // TestPullScratchNotAllowed verifies that pulling 'scratch' is rejected.
 func (s *DockerHubPullSuite) TestPullScratchNotAllowed(c *check.C) {
f9a3558a
 	testRequires(c, DaemonIsLinux)
f324f485
 	out, err := s.CmdWithError("pull", "scratch")
 	c.Assert(err, checker.NotNil, check.Commentf("expected pull of scratch to fail"))
 	c.Assert(out, checker.Contains, "'scratch' is a reserved name")
 	c.Assert(out, checker.Not(checker.Contains), "Pulling repository scratch")
58a1de9b
 }
1406cb35
 
f324f485
 // TestPullAllTagsFromCentralRegistry pulls using `all-tags` for a given image and verifies that it
 // results in more images than a naked pull.
 func (s *DockerHubPullSuite) TestPullAllTagsFromCentralRegistry(c *check.C) {
f9a3558a
 	testRequires(c, DaemonIsLinux)
f324f485
 	s.Cmd(c, "pull", "busybox")
 	outImageCmd := s.Cmd(c, "images", "busybox")
 	splitOutImageCmd := strings.Split(strings.TrimSpace(outImageCmd), "\n")
1b010516
 	c.Assert(splitOutImageCmd, checker.HasLen, 2)
f324f485
 
 	s.Cmd(c, "pull", "--all-tags=true", "busybox")
 	outImageAllTagCmd := s.Cmd(c, "images", "busybox")
1b010516
 	linesCount := strings.Count(outImageAllTagCmd, "\n")
 	c.Assert(linesCount, checker.GreaterThan, 2, check.Commentf("pulling all tags should provide more than two images, got %s", outImageAllTagCmd))
f324f485
 
 	// Verify that the line for 'busybox:latest' is left unchanged.
 	var latestLine string
 	for _, line := range strings.Split(outImageAllTagCmd, "\n") {
 		if strings.HasPrefix(line, "busybox") && strings.Contains(line, "latest") {
 			latestLine = line
 			break
1406cb35
 		}
268fa5af
 	}
f324f485
 	c.Assert(latestLine, checker.Not(checker.Equals), "", check.Commentf("no entry for busybox:latest found after pulling all tags"))
 	splitLatest := strings.Fields(latestLine)
 	splitCurrent := strings.Fields(splitOutImageCmd[1])
d1766999
 
 	// Clear relative creation times, since these can easily change between
 	// two invocations of "docker images". Without this, the test can fail
 	// like this:
 	// ... obtained []string = []string{"busybox", "latest", "d9551b4026f0", "27", "minutes", "ago", "1.113", "MB"}
 	// ... expected []string = []string{"busybox", "latest", "d9551b4026f0", "26", "minutes", "ago", "1.113", "MB"}
 	splitLatest[3] = ""
 	splitLatest[4] = ""
 	splitLatest[5] = ""
 	splitCurrent[3] = ""
 	splitCurrent[4] = ""
 	splitCurrent[5] = ""
 
f324f485
 	c.Assert(splitLatest, checker.DeepEquals, splitCurrent, check.Commentf("busybox:latest was changed after pulling all tags"))
268fa5af
 }
3e90b12d
 
f324f485
 // TestPullClientDisconnect kills the client during a pull operation and verifies that the operation
572ce802
 // gets cancelled.
f324f485
 //
 // Ref: docker/docker#15589
 func (s *DockerHubPullSuite) TestPullClientDisconnect(c *check.C) {
f9a3558a
 	testRequires(c, DaemonIsLinux)
8eeafa05
 	repoName := "hello-world:latest"
 
f324f485
 	pullCmd := s.MakeCmd("pull", repoName)
8eeafa05
 	stdout, err := pullCmd.StdoutPipe()
f324f485
 	c.Assert(err, checker.IsNil)
8eeafa05
 	err = pullCmd.Start()
f324f485
 	c.Assert(err, checker.IsNil)
8eeafa05
 
f324f485
 	// Cancel as soon as we get some output.
8eeafa05
 	buf := make([]byte, 10)
 	_, err = stdout.Read(buf)
f324f485
 	c.Assert(err, checker.IsNil)
8eeafa05
 
 	err = pullCmd.Process.Kill()
f324f485
 	c.Assert(err, checker.IsNil)
8eeafa05
 
572ce802
 	time.Sleep(2 * time.Second)
1b010516
 	_, err = s.CmdWithError("inspect", repoName)
 	c.Assert(err, checker.NotNil, check.Commentf("image was pulled after client disconnected"))
8eeafa05
 }