From 04b58bc80cf58390d0923a4aff84ff07eef34d23 Mon Sep 17 00:00:00 2001 From: Yiqiao Pu Date: Mon, 23 Apr 2018 17:21:23 +0800 Subject: Add restart test with timeout Test the --timeout flag with a container which can not be stopped with SIGSTOP. This means the container should can not be stopped and will be killed then restart with timeout value. Test steps: Start a container with STOPSIGNAL=SIGKILL Restart it with --timeout set to 2s Check the restart command will finished more than 2s and less than 10s(the default timeout) Signed-off-by: Yiqiao Pu --- test/e2e/restart_test.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'test') diff --git a/test/e2e/restart_test.go b/test/e2e/restart_test.go index 46f950dd2..812ba5ac9 100644 --- a/test/e2e/restart_test.go +++ b/test/e2e/restart_test.go @@ -2,6 +2,7 @@ package integration import ( "os" + "time" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" @@ -118,4 +119,17 @@ var _ = Describe("Podman restart", func() { Expect(restartTime.OutputToStringArray()[0]).To(Equal(startTime.OutputToStringArray()[0])) Expect(restartTime.OutputToStringArray()[1]).To(Not(Equal(startTime.OutputToStringArray()[1]))) }) + + It("Podman restart non-stop container with short timeout", func() { + session := podmanTest.Podman([]string{"run", "-d", "--name", "test1", "--env", "STOPSIGNAL=SIGKILL", ALPINE, "sleep", "999"}) + session.WaitWithDefaultTimeout() + Expect(session.ExitCode()).To(Equal(0)) + startTime := time.Now() + session = podmanTest.Podman([]string{"restart", "-t", "2", "test1"}) + session.WaitWithDefaultTimeout() + Expect(session.ExitCode()).To(Equal(0)) + timeSince := time.Since(startTime) + Expect(timeSince < 10*time.Second).To(BeTrue()) + Expect(timeSince > 2*time.Second).To(BeTrue()) + }) }) -- cgit v1.2.3-54-g00ecf