diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/e2e/libpod_suite_remoteclient_test.go | 2 | ||||
| -rw-r--r-- | test/e2e/logs_test.go | 19 | 
2 files changed, 20 insertions, 1 deletions
| diff --git a/test/e2e/libpod_suite_remoteclient_test.go b/test/e2e/libpod_suite_remoteclient_test.go index 2cd485114..c87ff016a 100644 --- a/test/e2e/libpod_suite_remoteclient_test.go +++ b/test/e2e/libpod_suite_remoteclient_test.go @@ -24,7 +24,7 @@ func SkipIfRemote() {  func SkipIfRootless() {  	if os.Geteuid() != 0 { -		ginkgo.Skip("This function is not enabled for remote podman") +		ginkgo.Skip("This function is not enabled for rootless podman")  	}  } diff --git a/test/e2e/logs_test.go b/test/e2e/logs_test.go index e25364695..0438a31cb 100644 --- a/test/e2e/logs_test.go +++ b/test/e2e/logs_test.go @@ -1,7 +1,9 @@  package integration  import ( +	"fmt"  	"os" +	"os/exec"  	"strings"  	. "github.com/containers/libpod/test/utils" @@ -153,6 +155,23 @@ var _ = Describe("Podman logs", func() {  		Expect(results.ExitCode()).To(BeZero())  	}) +	It("podman journald logs for container with container tag", func() { +		Skip("need to verify images have correct packages for journald") +		logc := podmanTest.Podman([]string{"run", "--log-driver", "journald", "--log-opt=tag={{.ImageName}}", "-d", ALPINE, "sh", "-c", "echo podman; sleep 0.1; echo podman; sleep 0.1; echo podman"}) +		logc.WaitWithDefaultTimeout() +		Expect(logc.ExitCode()).To(Equal(0)) +		cid := logc.OutputToString() + +		wait := podmanTest.Podman([]string{"wait", "-l"}) +		wait.WaitWithDefaultTimeout() +		Expect(wait.ExitCode()).To(BeZero()) + +		cmd := exec.Command("journalctl", "--no-pager", "-o", "json", "--output-fields=CONTAINER_TAG", "-u", fmt.Sprintf("libpod-conmon-%s.scope", cid)) +		out, err := cmd.CombinedOutput() +		Expect(err).To(BeNil()) +		Expect(string(out)).To(ContainSubstring("alpine")) +	}) +  	It("podman journald logs for container", func() {  		Skip("need to verify images have correct packages for journald")  		logc := podmanTest.Podman([]string{"run", "--log-driver", "journald", "-dt", ALPINE, "sh", "-c", "echo podman; echo podman; echo podman"}) | 
