From c7c81a8c081f6f7458345027f315a796d6ca5eda Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Thu, 11 Jun 2020 10:59:43 +0200 Subject: e2e: sanity check --infra-conmon-pidfile Signed-off-by: Valentin Rothberg --- test/e2e/pod_start_test.go | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'test') diff --git a/test/e2e/pod_start_test.go b/test/e2e/pod_start_test.go index 99285d1e1..d7d623d6e 100644 --- a/test/e2e/pod_start_test.go +++ b/test/e2e/pod_start_test.go @@ -1,8 +1,11 @@ package integration import ( + "fmt" "io/ioutil" "os" + "strconv" + "strings" . "github.com/containers/libpod/test/utils" . "github.com/onsi/ginkgo" @@ -210,6 +213,21 @@ var _ = Describe("Podman pod start", func() { session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) Expect(podmanTest.NumberOfContainersRunning()).To(Equal(1)) // infra + + readFirstLine := func(path string) string { + content, err := ioutil.ReadFile(path) + Expect(err).To(BeNil()) + return strings.Split(string(content), "\n")[0] + } + + // Read the infra-conmon-pidfile and perform some sanity checks + // on the pid. + infraConmonPID := readFirstLine(tmpFile) + _, err = strconv.Atoi(infraConmonPID) // Make sure it's a proper integer + Expect(err).To(BeNil()) + + cmdline := readFirstLine(fmt.Sprintf("/proc/%s/cmdline", infraConmonPID)) + Expect(cmdline).To(ContainSubstring("/conmon")) }) }) -- cgit v1.2.3-54-g00ecf