integration-cli/docker_cli_stats_test.go
f3023a93
 package main
 
 import (
ae818a82
 	"bufio"
f3023a93
 	"os/exec"
ae818a82
 	"regexp"
f3023a93
 	"strings"
 	"time"
 
90a81f6a
 	"github.com/docker/docker/pkg/integration/checker"
f3023a93
 	"github.com/go-check/check"
 )
 
66be81b1
 func (s *DockerSuite) TestStatsNoStream(c *check.C) {
f9a3558a
 	testRequires(c, DaemonIsLinux)
eef6eda7
 	out, _ := dockerCmd(c, "run", "-d", "busybox", "top")
f3023a93
 	id := strings.TrimSpace(out)
90a81f6a
 	c.Assert(waitRun(id), checker.IsNil)
f3023a93
 
 	statsCmd := exec.Command(dockerBinary, "stats", "--no-stream", id)
2d5d606f
 	type output struct {
 		out []byte
 		err error
 	}
 
 	ch := make(chan output)
f3023a93
 	go func() {
2d5d606f
 		out, err := statsCmd.Output()
 		ch <- output{out, err}
f3023a93
 	}()
 
 	select {
2d5d606f
 	case outerr := <-ch:
90a81f6a
 		c.Assert(outerr.err, checker.IsNil, check.Commentf("Error running stats: %v", outerr.err))
 		c.Assert(string(outerr.out), checker.Contains, id) //running container wasn't present in output
96123a1f
 	case <-time.After(3 * time.Second):
f3023a93
 		statsCmd.Process.Kill()
 		c.Fatalf("stats did not return immediately when not streaming")
 	}
66be81b1
 }
 
 func (s *DockerSuite) TestStatsContainerNotFound(c *check.C) {
 	testRequires(c, DaemonIsLinux)
2d5d606f
 
66be81b1
 	out, _, err := dockerCmdWithError("stats", "notfound")
90a81f6a
 	c.Assert(err, checker.NotNil)
c424c8c3
 	c.Assert(out, checker.Contains, "No such container: notfound", check.Commentf("Expected to fail on not found container stats, got %q instead", out))
66be81b1
 
 	out, _, err = dockerCmdWithError("stats", "--no-stream", "notfound")
90a81f6a
 	c.Assert(err, checker.NotNil)
c424c8c3
 	c.Assert(out, checker.Contains, "No such container: notfound", check.Commentf("Expected to fail on not found container stats with --no-stream, got %q instead", out))
f3023a93
 }
ae818a82
 
 func (s *DockerSuite) TestStatsAllRunningNoStream(c *check.C) {
 	testRequires(c, DaemonIsLinux)
 
 	out, _ := dockerCmd(c, "run", "-d", "busybox", "top")
 	id1 := strings.TrimSpace(out)[:12]
 	c.Assert(waitRun(id1), check.IsNil)
 	out, _ = dockerCmd(c, "run", "-d", "busybox", "top")
 	id2 := strings.TrimSpace(out)[:12]
 	c.Assert(waitRun(id2), check.IsNil)
 	out, _ = dockerCmd(c, "run", "-d", "busybox", "top")
 	id3 := strings.TrimSpace(out)[:12]
 	c.Assert(waitRun(id3), check.IsNil)
 	dockerCmd(c, "stop", id3)
 
 	out, _ = dockerCmd(c, "stats", "--no-stream")
 	if !strings.Contains(out, id1) || !strings.Contains(out, id2) {
 		c.Fatalf("Expected stats output to contain both %s and %s, got %s", id1, id2, out)
 	}
 	if strings.Contains(out, id3) {
 		c.Fatalf("Did not expect %s in stats, got %s", id3, out)
 	}
 }
 
 func (s *DockerSuite) TestStatsAllNoStream(c *check.C) {
 	testRequires(c, DaemonIsLinux)
 
 	out, _ := dockerCmd(c, "run", "-d", "busybox", "top")
 	id1 := strings.TrimSpace(out)[:12]
 	c.Assert(waitRun(id1), check.IsNil)
 	dockerCmd(c, "stop", id1)
 	out, _ = dockerCmd(c, "run", "-d", "busybox", "top")
 	id2 := strings.TrimSpace(out)[:12]
 	c.Assert(waitRun(id2), check.IsNil)
 
 	out, _ = dockerCmd(c, "stats", "--all", "--no-stream")
 	if !strings.Contains(out, id1) || !strings.Contains(out, id2) {
 		c.Fatalf("Expected stats output to contain both %s and %s, got %s", id1, id2, out)
 	}
 }
 
 func (s *DockerSuite) TestStatsAllNewContainersAdded(c *check.C) {
 	testRequires(c, DaemonIsLinux)
 
 	id := make(chan string)
 	addedChan := make(chan struct{})
 
 	dockerCmd(c, "run", "-d", "busybox", "top")
 	statsCmd := exec.Command(dockerBinary, "stats")
 	stdout, err := statsCmd.StdoutPipe()
 	c.Assert(err, check.IsNil)
 	c.Assert(statsCmd.Start(), check.IsNil)
 	defer statsCmd.Process.Kill()
 
 	go func() {
 		containerID := <-id
 		matchID := regexp.MustCompile(containerID)
 
 		scanner := bufio.NewScanner(stdout)
 		for scanner.Scan() {
 			switch {
 			case matchID.MatchString(scanner.Text()):
 				close(addedChan)
 			}
 		}
 	}()
 
 	out, _ := dockerCmd(c, "run", "-d", "busybox", "top")
71d6e71c
 	c.Assert(waitRun(strings.TrimSpace(out)), check.IsNil)
ae818a82
 	id <- strings.TrimSpace(out)[:12]
 
 	select {
 	case <-time.After(5 * time.Second):
 		c.Fatal("failed to observe new container created added to stats")
 	case <-addedChan:
 		// ignore, done
 	}
 }