mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
eef6eda7d2
Part of #14603 integration-cli/docker_cli_links_test.go (coolljt0725) integration-cli/docker_cli_links_unix_test.go (coolljt0725) integration-cli/docker_cli_logs_test.go (coolljt0725) integration-cli/docker_cli_nat_test.go (coolljt0725) integration-cli/docker_cli_network_test.go (coolljt0725) integration-cli/docker_cli_stats_test.go (coolljt0725) integration-cli/docker_cli_tag_test.go (coolljt0725) integration-cli/docker_cli_top_test.go (coolljt0725) integration-cli/docker_cli_version_test.go (coolljt0725) integration-cli/docker_cli_wait_test.go (coolljt0725 Signed-off-by: Lei Jitang <leijitang@huawei.com>
55 lines
1.8 KiB
Go
55 lines
1.8 KiB
Go
package main
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/go-check/check"
|
|
)
|
|
|
|
func (s *DockerSuite) TestTopMultipleArgs(c *check.C) {
|
|
out, _ := dockerCmd(c, "run", "-i", "-d", "busybox", "top")
|
|
|
|
cleanedContainerID := strings.TrimSpace(out)
|
|
|
|
out, _ = dockerCmd(c, "top", cleanedContainerID, "-o", "pid")
|
|
if !strings.Contains(out, "PID") {
|
|
c.Fatalf("did not see PID after top -o pid: %s", out)
|
|
}
|
|
|
|
}
|
|
|
|
func (s *DockerSuite) TestTopNonPrivileged(c *check.C) {
|
|
out, _ := dockerCmd(c, "run", "-i", "-d", "busybox", "top")
|
|
cleanedContainerID := strings.TrimSpace(out)
|
|
|
|
out1, _ := dockerCmd(c, "top", cleanedContainerID)
|
|
out2, _ := dockerCmd(c, "top", cleanedContainerID)
|
|
out, _ = dockerCmd(c, "kill", cleanedContainerID)
|
|
|
|
if !strings.Contains(out1, "top") && !strings.Contains(out2, "top") {
|
|
c.Fatal("top should've listed `top` in the process list, but failed twice")
|
|
} else if !strings.Contains(out1, "top") {
|
|
c.Fatal("top should've listed `top` in the process list, but failed the first time")
|
|
} else if !strings.Contains(out2, "top") {
|
|
c.Fatal("top should've listed `top` in the process list, but failed the second itime")
|
|
}
|
|
|
|
}
|
|
|
|
func (s *DockerSuite) TestTopPrivileged(c *check.C) {
|
|
out, _ := dockerCmd(c, "run", "--privileged", "-i", "-d", "busybox", "top")
|
|
cleanedContainerID := strings.TrimSpace(out)
|
|
|
|
out1, _ := dockerCmd(c, "top", cleanedContainerID)
|
|
out2, _ := dockerCmd(c, "top", cleanedContainerID)
|
|
out, _ = dockerCmd(c, "kill", cleanedContainerID)
|
|
|
|
if !strings.Contains(out1, "top") && !strings.Contains(out2, "top") {
|
|
c.Fatal("top should've listed `top` in the process list, but failed twice")
|
|
} else if !strings.Contains(out1, "top") {
|
|
c.Fatal("top should've listed `top` in the process list, but failed the first time")
|
|
} else if !strings.Contains(out2, "top") {
|
|
c.Fatal("top should've listed `top` in the process list, but failed the second itime")
|
|
}
|
|
|
|
}
|