diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-06-17 15:47:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-17 15:47:52 +0200 |
commit | 877c7aae7573ff00ef4fba02b5f7735f73aceb2f (patch) | |
tree | 6d8184f985018fd699c5dd7acc651dff4d2e76fc /test/e2e/logs_test.go | |
parent | 29be1764b419da68eb5f5ee1504631448ea495c4 (diff) | |
parent | 6b7649e4ba41aa050ed1c77da395aa103a39fab9 (diff) | |
download | podman-877c7aae7573ff00ef4fba02b5f7735f73aceb2f.tar.gz podman-877c7aae7573ff00ef4fba02b5f7735f73aceb2f.tar.bz2 podman-877c7aae7573ff00ef4fba02b5f7735f73aceb2f.zip |
Merge pull request #3347 from giuseppe/add-test-for-logs-f
test: add test for logs -f
Diffstat (limited to 'test/e2e/logs_test.go')
-rw-r--r-- | test/e2e/logs_test.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/e2e/logs_test.go b/test/e2e/logs_test.go index cc50c4d95..d17f60a5d 100644 --- a/test/e2e/logs_test.go +++ b/test/e2e/logs_test.go @@ -218,4 +218,21 @@ var _ = Describe("Podman logs", func() { Expect(results.ExitCode()).To(Equal(0)) Expect(len(results.OutputToStringArray())).To(Equal(3)) }) + + It("podman logs -f two lines", func() { + containerName := "logs-f-rm" + + logc := podmanTest.Podman([]string{"run", "--rm", "--name", containerName, "-dt", ALPINE, "sh", "-c", "echo podman; sleep 1; echo podman"}) + logc.WaitWithDefaultTimeout() + Expect(logc.ExitCode()).To(Equal(0)) + + results := podmanTest.Podman([]string{"logs", "-f", containerName}) + results.WaitWithDefaultTimeout() + Expect(results.ExitCode()).To(Equal(0)) + + // Verify that the cleanup process worked correctly and we can recreate a container with the same name + logc = podmanTest.Podman([]string{"run", "--rm", "--name", containerName, "-dt", ALPINE, "true"}) + logc.WaitWithDefaultTimeout() + Expect(logc.ExitCode()).To(Equal(0)) + }) }) |