mirror of
https://github.com/containers/podman.git
synced 2025-06-20 09:03:43 +08:00
fix NOTIFY_SOCKET in e2e testfix NOTIFY_SOCKET in e2e tests
Signed-off-by: baude <bbaude@redhat.com>
This commit is contained in:
@ -32,27 +32,27 @@ var _ = Describe("Podman run passwd", func() {
|
||||
})
|
||||
|
||||
It("podman run no user specified ", func() {
|
||||
session := podmanTest.Podman([]string{"run", ALPINE, "mount"})
|
||||
session := podmanTest.Podman([]string{"run", BB, "mount"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
Expect(session.LineInOutputContains("passwd")).To(BeFalse())
|
||||
})
|
||||
It("podman run user specified in container", func() {
|
||||
session := podmanTest.Podman([]string{"run", "-u", "bin", ALPINE, "mount"})
|
||||
session := podmanTest.Podman([]string{"run", "-u", "bin", BB, "mount"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
Expect(session.LineInOutputContains("passwd")).To(BeFalse())
|
||||
})
|
||||
|
||||
It("podman run UID specified in container", func() {
|
||||
session := podmanTest.Podman([]string{"run", "-u", "2:1", ALPINE, "mount"})
|
||||
session := podmanTest.Podman([]string{"run", "-u", "2:1", BB, "mount"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
Expect(session.LineInOutputContains("passwd")).To(BeFalse())
|
||||
})
|
||||
|
||||
It("podman run UID not specified in container", func() {
|
||||
session := podmanTest.Podman([]string{"run", "-u", "20001:1", ALPINE, "mount"})
|
||||
session := podmanTest.Podman([]string{"run", "-u", "20001:1", BB, "mount"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
Expect(session.LineInOutputContains("passwd")).To(BeTrue())
|
||||
|
Reference in New Issue
Block a user