diff options
author | cdoern <cbdoer23@g.holycross.edu> | 2021-09-30 14:12:30 -0400 |
---|---|---|
committer | cdoern <cdoern@redhat.com> | 2021-10-01 14:50:58 -0400 |
commit | 163d81cc0dd0139eb14dfcd6595c9eafb40472b2 (patch) | |
tree | 2051005b0798566930a6fa90b20c3b2416d894eb /test/e2e | |
parent | e9d8524af5122314e47385299bf9ae3d0b000096 (diff) | |
download | podman-163d81cc0dd0139eb14dfcd6595c9eafb40472b2.tar.gz podman-163d81cc0dd0139eb14dfcd6595c9eafb40472b2.tar.bz2 podman-163d81cc0dd0139eb14dfcd6595c9eafb40472b2.zip |
Pod Events Logging Fix
on create, libpod was only creating a new event if the pod had an infra container.
now, pod creation triggers a new pod event with or without infra
Signed-off-by: cdoern <cdoern@redhat.com>
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/events_test.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/e2e/events_test.go b/test/e2e/events_test.go index 46ea10c56..ee0b8761a 100644 --- a/test/e2e/events_test.go +++ b/test/e2e/events_test.go @@ -199,4 +199,17 @@ var _ = Describe("Podman events", func() { wg.Wait() }) + + It("podman events pod creation", func() { + create := podmanTest.Podman([]string{"pod", "create", "--infra=false", "--name", "foobarpod"}) + create.WaitWithDefaultTimeout() + Expect(create).Should(Exit(0)) + id := create.OutputToString() + result := podmanTest.Podman([]string{"events", "--stream=false", "--filter", "pod=" + id}) + result.WaitWithDefaultTimeout() + Expect(result).Should(Exit(0)) + Expect(result.OutputToStringArray()).To(HaveLen(1)) + Expect(result.OutputToString()).To(ContainSubstring("create")) + }) + }) |