2014-04-14 12:43:01 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
2014-08-05 19:11:09 -04:00
|
|
|
"strings"
|
2015-04-18 09:46:47 -07:00
|
|
|
|
2015-10-19 10:42:56 +08:00
|
|
|
"github.com/docker/docker/pkg/integration/checker"
|
2015-04-18 09:46:47 -07:00
|
|
|
"github.com/go-check/check"
|
2014-04-14 12:43:01 +00:00
|
|
|
)
|
|
|
|
|
2015-04-18 09:46:47 -07:00
|
|
|
func (s *DockerSuite) TestRmContainerWithRemovedVolume(c *check.C) {
|
2015-08-28 10:36:42 -07:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-04-18 09:46:47 -07:00
|
|
|
testRequires(c, SameHostDaemon)
|
2015-02-19 22:56:02 -08:00
|
|
|
|
2015-07-15 04:15:00 +08:00
|
|
|
dockerCmd(c, "run", "--name", "losemyvolumes", "-v", "/tmp/testing:/test", "busybox", "true")
|
2014-04-14 12:43:01 +00:00
|
|
|
|
2015-10-19 10:42:56 +08:00
|
|
|
err := os.Remove("/tmp/testing")
|
|
|
|
c.Assert(err, check.IsNil)
|
2014-04-14 12:43:01 +00:00
|
|
|
|
2015-07-15 04:15:00 +08:00
|
|
|
dockerCmd(c, "rm", "-v", "losemyvolumes")
|
2014-04-14 12:43:01 +00:00
|
|
|
}
|
2014-04-18 17:40:12 +00:00
|
|
|
|
2015-04-18 09:46:47 -07:00
|
|
|
func (s *DockerSuite) TestRmContainerWithVolume(c *check.C) {
|
2015-08-28 10:36:42 -07:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-07-15 04:15:00 +08:00
|
|
|
dockerCmd(c, "run", "--name", "foo", "-v", "/srv", "busybox", "true")
|
2015-02-19 22:56:02 -08:00
|
|
|
|
2015-07-15 04:15:00 +08:00
|
|
|
dockerCmd(c, "rm", "-v", "foo")
|
2014-04-18 17:40:12 +00:00
|
|
|
}
|
|
|
|
|
2015-04-18 09:46:47 -07:00
|
|
|
func (s *DockerSuite) TestRmRunningContainer(c *check.C) {
|
2015-08-28 10:36:42 -07:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-04-18 09:46:47 -07:00
|
|
|
createRunningContainer(c, "foo")
|
2014-04-18 17:40:12 +00:00
|
|
|
|
2015-10-19 10:42:56 +08:00
|
|
|
_, _, err := dockerCmdWithError("rm", "foo")
|
|
|
|
c.Assert(err, checker.NotNil, check.Commentf("Expected error, can't rm a running container"))
|
2014-07-06 22:44:56 +02:00
|
|
|
}
|
|
|
|
|
2015-04-18 09:46:47 -07:00
|
|
|
func (s *DockerSuite) TestRmForceRemoveRunningContainer(c *check.C) {
|
2015-08-28 10:36:42 -07:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-04-18 09:46:47 -07:00
|
|
|
createRunningContainer(c, "foo")
|
2014-07-06 22:44:56 +02:00
|
|
|
|
|
|
|
// Stop then remove with -s
|
2015-07-15 04:15:00 +08:00
|
|
|
dockerCmd(c, "rm", "-f", "foo")
|
2014-07-06 22:44:56 +02:00
|
|
|
}
|
|
|
|
|
2015-04-18 09:46:47 -07:00
|
|
|
func (s *DockerSuite) TestRmContainerOrphaning(c *check.C) {
|
2015-08-28 10:36:42 -07:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2014-08-05 19:11:09 -04:00
|
|
|
dockerfile1 := `FROM busybox:latest
|
|
|
|
ENTRYPOINT ["/bin/true"]`
|
|
|
|
img := "test-container-orphaning"
|
|
|
|
dockerfile2 := `FROM busybox:latest
|
|
|
|
ENTRYPOINT ["/bin/true"]
|
|
|
|
MAINTAINER Integration Tests`
|
|
|
|
|
|
|
|
// build first dockerfile
|
|
|
|
img1, err := buildImage(img, dockerfile1, true)
|
2015-10-19 10:42:56 +08:00
|
|
|
c.Assert(err, check.IsNil, check.Commentf("Could not build image %s", img))
|
2014-08-05 19:11:09 -04:00
|
|
|
// run container on first image
|
2015-10-19 10:42:56 +08:00
|
|
|
dockerCmd(c, "run", img)
|
2014-08-05 19:11:09 -04:00
|
|
|
// rebuild dockerfile with a small addition at the end
|
2015-10-19 10:42:56 +08:00
|
|
|
_, err = buildImage(img, dockerfile2, true)
|
|
|
|
c.Assert(err, check.IsNil, check.Commentf("Could not rebuild image %s", img))
|
2015-11-26 09:57:20 +08:00
|
|
|
// try to remove the image, should not error out.
|
2015-10-19 10:42:56 +08:00
|
|
|
out, _, err := dockerCmdWithError("rmi", img)
|
2015-11-26 09:57:20 +08:00
|
|
|
c.Assert(err, check.IsNil, check.Commentf("Expected to removing the image, but failed: %s", out))
|
2015-07-15 04:15:00 +08:00
|
|
|
|
2014-08-05 19:11:09 -04:00
|
|
|
// check if we deleted the first image
|
2015-10-19 10:42:56 +08:00
|
|
|
out, _ = dockerCmd(c, "images", "-q", "--no-trunc")
|
|
|
|
c.Assert(out, checker.Contains, img1, check.Commentf("Orphaned container (could not find %q in docker images): %s", img1, out))
|
|
|
|
|
2014-08-05 19:11:09 -04:00
|
|
|
}
|
|
|
|
|
2015-04-18 09:46:47 -07:00
|
|
|
func (s *DockerSuite) TestRmInvalidContainer(c *check.C) {
|
2015-07-27 14:13:25 -04:00
|
|
|
if out, _, err := dockerCmdWithError("rm", "unknown"); err == nil {
|
2015-04-18 09:46:47 -07:00
|
|
|
c.Fatal("Expected error on rm unknown container, got none")
|
2015-12-29 22:03:39 +08:00
|
|
|
} else if !strings.Contains(out, "Failed to remove container") {
|
|
|
|
c.Fatalf("Expected output to contain 'Failed to remove container', got %q", out)
|
2014-08-05 19:11:09 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-18 09:46:47 -07:00
|
|
|
func createRunningContainer(c *check.C, name string) {
|
2015-07-15 04:15:00 +08:00
|
|
|
dockerCmd(c, "run", "-dt", "--name", name, "busybox", "top")
|
2014-04-18 17:40:12 +00:00
|
|
|
}
|