diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-09-21 10:50:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-21 10:50:40 -0400 |
commit | b922e61cec379c136d4138f13e4fc44d2fa3df11 (patch) | |
tree | c1fb5bdc874cf668ee090e6451936d9837ae5005 /test | |
parent | 9b5522d9adff9e8b2413e626bfc62d1df28ce534 (diff) | |
parent | ae5de8b390693784fc383b4d1df85aa92104f481 (diff) | |
download | podman-b922e61cec379c136d4138f13e4fc44d2fa3df11.tar.gz podman-b922e61cec379c136d4138f13e4fc44d2fa3df11.tar.bz2 podman-b922e61cec379c136d4138f13e4fc44d2fa3df11.zip |
Merge pull request #11650 from flouthoc/named-volume-overlay
volume: Add support for overlay on named volumes
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/run_volume_test.go | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/test/e2e/run_volume_test.go b/test/e2e/run_volume_test.go index 59937b6c0..4264e1efe 100644 --- a/test/e2e/run_volume_test.go +++ b/test/e2e/run_volume_test.go @@ -242,6 +242,39 @@ var _ = Describe("Podman run with volumes", func() { Expect(session).Should(Exit(0)) }) + It("podman support overlay on named volume", func() { + SkipIfRemote("Overlay volumes only work locally") + if os.Getenv("container") != "" { + Skip("Overlay mounts not supported when running in a container") + } + if rootless.IsRootless() { + if _, err := exec.LookPath("fuse-overlayfs"); err != nil { + Skip("Fuse-Overlayfs required for rootless overlay mount test") + } + } + session := podmanTest.Podman([]string{"volume", "create", "myvolume"}) + session.WaitWithDefaultTimeout() + volName := session.OutputToString() + Expect(session).Should(Exit(0)) + + // create file on actual volume + session = podmanTest.Podman([]string{"run", "--volume", volName + ":/data", ALPINE, "sh", "-c", "echo hello >> " + "/data/test"}) + session.WaitWithDefaultTimeout() + Expect(session).Should(Exit(0)) + + // create file on overlayed volume + session = podmanTest.Podman([]string{"run", "--volume", volName + ":/data:O", ALPINE, "sh", "-c", "echo hello >> " + "/data/overlayed"}) + session.WaitWithDefaultTimeout() + Expect(session).Should(Exit(0)) + + // volume should contain only `test` not `overlayed` + session = podmanTest.Podman([]string{"run", "--volume", volName + ":/data", ALPINE, "sh", "-c", "ls /data"}) + session.WaitWithDefaultTimeout() + Expect(session.OutputToString()).To(Not(ContainSubstring("overlayed"))) + Expect(session.OutputToString()).To(ContainSubstring("test")) + + }) + It("podman run with noexec can't exec", func() { session := podmanTest.Podman([]string{"run", "--rm", "-v", "/bin:/hostbin:noexec", ALPINE, "/hostbin/ls", "/"}) session.WaitWithDefaultTimeout() |