From 6d8fac87ed20c7bb3214e28e2ef74d3d8831eadd Mon Sep 17 00:00:00 2001 From: TomSweeneyRedHat Date: Fri, 29 Jun 2018 16:35:22 -0400 Subject: Allow multiple mounts Signed-off-by: TomSweeneyRedHat Closes: #1030 Approved by: rhatdan --- test/e2e/mount_test.go | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'test/e2e') diff --git a/test/e2e/mount_test.go b/test/e2e/mount_test.go index 26eb5a7d2..1c206c597 100644 --- a/test/e2e/mount_test.go +++ b/test/e2e/mount_test.go @@ -62,6 +62,31 @@ var _ = Describe("Podman mount", func() { Expect(umount.ExitCode()).To(Equal(0)) }) + It("podman mount many", func() { + setup1 := podmanTest.Podman([]string{"create", ALPINE, "ls"}) + setup1.WaitWithDefaultTimeout() + Expect(setup1.ExitCode()).To(Equal(0)) + cid1 := setup1.OutputToString() + + setup2 := podmanTest.Podman([]string{"create", ALPINE, "ls"}) + setup2.WaitWithDefaultTimeout() + Expect(setup2.ExitCode()).To(Equal(0)) + cid2 := setup2.OutputToString() + + setup3 := podmanTest.Podman([]string{"create", ALPINE, "ls"}) + setup3.WaitWithDefaultTimeout() + Expect(setup3.ExitCode()).To(Equal(0)) + cid3 := setup3.OutputToString() + + mount1 := podmanTest.Podman([]string{"mount", cid1, cid2, cid3}) + mount1.WaitWithDefaultTimeout() + Expect(mount1.ExitCode()).To(Equal(0)) + + umount := podmanTest.Podman([]string{"umount", cid1, cid2, cid3}) + umount.WaitWithDefaultTimeout() + Expect(umount.ExitCode()).To(Equal(0)) + }) + It("podman umount many", func() { setup1 := podmanTest.Podman([]string{"create", ALPINE, "ls"}) setup1.WaitWithDefaultTimeout() -- cgit v1.2.3-54-g00ecf