зеркало из https://github.com/microsoft/docker.git
75 строки
2.1 KiB
Go
75 строки
2.1 KiB
Go
package main
|
|
|
|
import (
|
|
"os/exec"
|
|
"strings"
|
|
|
|
"github.com/go-check/check"
|
|
)
|
|
|
|
func (s *DockerSuite) TestKillContainer(c *check.C) {
|
|
runCmd := exec.Command(dockerBinary, "run", "-d", "busybox", "top")
|
|
out, _, err := runCommandWithOutput(runCmd)
|
|
if err != nil {
|
|
c.Fatal(out, err)
|
|
}
|
|
|
|
cleanedContainerID := strings.TrimSpace(out)
|
|
|
|
inspectCmd := exec.Command(dockerBinary, "inspect", cleanedContainerID)
|
|
if out, _, err = runCommandWithOutput(inspectCmd); err != nil {
|
|
c.Fatalf("out should've been a container id: %s, %v", out, err)
|
|
}
|
|
|
|
killCmd := exec.Command(dockerBinary, "kill", cleanedContainerID)
|
|
if out, _, err = runCommandWithOutput(killCmd); err != nil {
|
|
c.Fatalf("failed to kill container: %s, %v", out, err)
|
|
}
|
|
|
|
listRunningContainersCmd := exec.Command(dockerBinary, "ps", "-q")
|
|
out, _, err = runCommandWithOutput(listRunningContainersCmd)
|
|
if err != nil {
|
|
c.Fatalf("failed to list running containers: %s, %v", out, err)
|
|
}
|
|
|
|
if strings.Contains(out, cleanedContainerID) {
|
|
c.Fatal("killed container is still running")
|
|
}
|
|
|
|
deleteContainer(cleanedContainerID)
|
|
|
|
}
|
|
|
|
func (s *DockerSuite) TestKillDifferentUserContainer(c *check.C) {
|
|
runCmd := exec.Command(dockerBinary, "run", "-u", "daemon", "-d", "busybox", "top")
|
|
out, _, err := runCommandWithOutput(runCmd)
|
|
if err != nil {
|
|
c.Fatal(out, err)
|
|
}
|
|
|
|
cleanedContainerID := strings.TrimSpace(out)
|
|
|
|
inspectCmd := exec.Command(dockerBinary, "inspect", cleanedContainerID)
|
|
if out, _, err = runCommandWithOutput(inspectCmd); err != nil {
|
|
c.Fatalf("out should've been a container id: %s, %v", out, err)
|
|
}
|
|
|
|
killCmd := exec.Command(dockerBinary, "kill", cleanedContainerID)
|
|
if out, _, err = runCommandWithOutput(killCmd); err != nil {
|
|
c.Fatalf("failed to kill container: %s, %v", out, err)
|
|
}
|
|
|
|
listRunningContainersCmd := exec.Command(dockerBinary, "ps", "-q")
|
|
out, _, err = runCommandWithOutput(listRunningContainersCmd)
|
|
if err != nil {
|
|
c.Fatalf("failed to list running containers: %s, %v", out, err)
|
|
}
|
|
|
|
if strings.Contains(out, cleanedContainerID) {
|
|
c.Fatal("killed container is still running")
|
|
}
|
|
|
|
deleteContainer(cleanedContainerID)
|
|
|
|
}
|