summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-04-14 15:35:20 -0400
committerGitHub <noreply@github.com>2022-04-14 15:35:20 -0400
commit6076e1a9a53a785d0053d22f1859103d5fea8b56 (patch)
tree9901a7a5ac74c7a67763efd563fe07e08e08234f /test
parent53b984f20fef3a66269029f10c6cd16d7b80fd4e (diff)
parent3f2939c2ef6d9867862f597751c12b14c74440a3 (diff)
downloadpodman-6076e1a9a53a785d0053d22f1859103d5fea8b56.tar.gz
podman-6076e1a9a53a785d0053d22f1859103d5fea8b56.tar.bz2
podman-6076e1a9a53a785d0053d22f1859103d5fea8b56.zip
Merge pull request #13616 from giuseppe/passwd-entry
run, create: add --passwd-entry
Diffstat (limited to 'test')
-rw-r--r--test/e2e/run_passwd_test.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/e2e/run_passwd_test.go b/test/e2e/run_passwd_test.go
index 4c97e665a..ce6c6ffda 100644
--- a/test/e2e/run_passwd_test.go
+++ b/test/e2e/run_passwd_test.go
@@ -137,4 +137,16 @@ USER 1000`, ALPINE)
Expect(run).Should(Exit(0))
Expect(run.OutputToString()).NotTo((ContainSubstring("1234:1234")))
})
+
+ It("podman run --passwd-entry flag", func() {
+ // Test that the line we add doesn't contain anything else than what is specified
+ run := podmanTest.Podman([]string{"run", "--user", "1234:1234", "--passwd-entry=FOO", ALPINE, "grep", "^FOO$", "/etc/passwd"})
+ run.WaitWithDefaultTimeout()
+ Expect(run).Should(Exit(0))
+
+ run = podmanTest.Podman([]string{"run", "--user", "12345:12346", "-w", "/etc", "--passwd-entry=$UID-$GID-$NAME-$HOME-$USERNAME", ALPINE, "cat", "/etc/passwd"})
+ run.WaitWithDefaultTimeout()
+ Expect(run).Should(Exit(0))
+ Expect(run.OutputToString()).To(ContainSubstring("12345-12346-container user-/etc-12345"))
+ })
})