summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-12-07 11:39:58 +0000
committerGitHub <noreply@github.com>2021-12-07 11:39:58 +0000
commit43077291ac8cafeea5b75ccbb37d929b079bf235 (patch)
tree273bb56a1e6595178a66ba7f96e166424650aa20 /test
parent2f11e2ac53269d2aafd0325e17e7c9bfda119dea (diff)
parent7d0fd175f1bcb6bb2bb9ccb83426f35c001599b2 (diff)
downloadpodman-43077291ac8cafeea5b75ccbb37d929b079bf235.tar.gz
podman-43077291ac8cafeea5b75ccbb37d929b079bf235.tar.bz2
podman-43077291ac8cafeea5b75ccbb37d929b079bf235.zip
Merge pull request #12528 from flouthoc/dont_modify_mount_permissions
volume: apply exact permission of target directory without adding extra `0111`
Diffstat (limited to 'test')
-rw-r--r--test/e2e/run_volume_test.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/e2e/run_volume_test.go b/test/e2e/run_volume_test.go
index 3d05e0f70..c2817c551 100644
--- a/test/e2e/run_volume_test.go
+++ b/test/e2e/run_volume_test.go
@@ -762,6 +762,18 @@ USER testuser`, fedoraMinimal)
})
+ It("podman run with named volume check if we honor permission of target dir", func() {
+ session := podmanTest.Podman([]string{"run", "--rm", ALPINE, "stat", "-c", "%a %Y", "/var/tmp"})
+ session.WaitWithDefaultTimeout()
+ Expect(session).Should(Exit(0))
+ perms := session.OutputToString()
+
+ session = podmanTest.Podman([]string{"run", "--rm", "-v", "test:/var/tmp", ALPINE, "stat", "-c", "%a %Y", "/var/tmp"})
+ session.WaitWithDefaultTimeout()
+ Expect(session).Should(Exit(0))
+ Expect(session.OutputToString()).To(Equal(perms))
+ })
+
It("podman volume with uid and gid works", func() {
volName := "testVol"
volCreate := podmanTest.Podman([]string{"volume", "create", "--opt", "o=uid=1000", volName})