summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorYiqiao Pu <ypu@redhat.com>2018-04-23 17:21:23 +0800
committerYiqiao Pu <ypu@redhat.com>2018-04-23 17:34:26 +0800
commit04b58bc80cf58390d0923a4aff84ff07eef34d23 (patch)
tree2f2c19cedbba6361aeaa72681d4c73e6227c2424 /test
parent18c98375a08543d30b0371b8947aac347fc2e1c4 (diff)
downloadpodman-04b58bc80cf58390d0923a4aff84ff07eef34d23.tar.gz
podman-04b58bc80cf58390d0923a4aff84ff07eef34d23.tar.bz2
podman-04b58bc80cf58390d0923a4aff84ff07eef34d23.zip
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 <ypu@redhat.com>
Diffstat (limited to 'test')
-rw-r--r--test/e2e/restart_test.go14
1 files changed, 14 insertions, 0 deletions
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())
+ })
})