From 0fc3c0d91bf80e4677d637b94dd77c37110804e9 Mon Sep 17 00:00:00 2001
From: Daniel J Walsh <dwalsh@redhat.com>
Date: Sun, 8 Nov 2020 07:33:08 -0500
Subject: [PATCH] Add tests to make sure podman-remote logs works correctly.

Fixes: https://github.com/containers/podman/issues/7942

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
---
 test/e2e/logs_test.go | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/test/e2e/logs_test.go b/test/e2e/logs_test.go
index 4214bd50e4..a749a86ff9 100644
--- a/test/e2e/logs_test.go
+++ b/test/e2e/logs_test.go
@@ -337,4 +337,22 @@ var _ = Describe("Podman logs", func() {
 		Expect(results).To(Exit(0))
 		Expect(results.OutputToString()).To(Equal("podman podman podman"))
 	})
+
+	It("Make sure logs match expected length", func() {
+		logc := podmanTest.Podman([]string{"run", "-t", "--name", "test", ALPINE, "sh", "-c", "echo 1; echo 2"})
+		logc.WaitWithDefaultTimeout()
+		Expect(logc).To(Exit(0))
+
+		wait := podmanTest.Podman([]string{"wait", "test"})
+		wait.WaitWithDefaultTimeout()
+		Expect(wait).To(Exit(0))
+
+		results := podmanTest.Podman([]string{"logs", "test"})
+		results.WaitWithDefaultTimeout()
+		Expect(results).To(Exit(0))
+		outlines := results.OutputToStringArray()
+		Expect(len(outlines)).To(Equal(2))
+		Expect(outlines[0]).To(Equal("1\r"))
+		Expect(outlines[1]).To(Equal("2\r"))
+	})
 })