summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-03-15 15:37:48 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-03-16 13:55:49 +0000
commit540a441234a483f65f9c6d3ad16b557e7ca6f111 (patch)
tree712d71d708a3dee7138ed7b9f1856d128fa93213 /test
parent95cad5a477ccfebdcba8b7f0d493a64c3fc46b90 (diff)
downloadpodman-540a441234a483f65f9c6d3ad16b557e7ca6f111.tar.gz
podman-540a441234a483f65f9c6d3ad16b557e7ca6f111.tar.bz2
podman-540a441234a483f65f9c6d3ad16b557e7ca6f111.zip
Add tests for restart
Signed-off-by: Matthew Heon <matthew.heon@gmail.com> Closes: #503 Approved by: rhatdan
Diffstat (limited to 'test')
-rw-r--r--test/e2e/restart_test.go81
1 files changed, 81 insertions, 0 deletions
diff --git a/test/e2e/restart_test.go b/test/e2e/restart_test.go
new file mode 100644
index 000000000..2ed48afaf
--- /dev/null
+++ b/test/e2e/restart_test.go
@@ -0,0 +1,81 @@
+package integration
+
+import (
+ "os"
+
+ . "github.com/onsi/ginkgo"
+ . "github.com/onsi/gomega"
+)
+
+var _ = Describe("Podman restart", func() {
+ var (
+ tempdir string
+ err error
+ podmanTest PodmanTest
+ )
+
+ BeforeEach(func() {
+ tempdir, err = CreateTempDirInTempDir()
+ if err != nil {
+ os.Exit(1)
+ }
+ podmanTest = PodmanCreate(tempdir)
+ podmanTest.RestoreAllArtifacts()
+ })
+
+ AfterEach(func() {
+ podmanTest.Cleanup()
+ })
+
+ It("Podman restart bogus container", func() {
+ session := podmanTest.Podman([]string{"start", "123"})
+ session.WaitWithDefaultTimeout()
+ Expect(session.ExitCode()).To(Equal(125))
+ })
+
+ It("Podman restart stopped container by name", func() {
+ _, exitCode, _ := podmanTest.RunLsContainer("test1")
+ Expect(exitCode).To(Equal(0))
+
+ session := podmanTest.Podman([]string{"restart", "test1"})
+ session.WaitWithDefaultTimeout()
+ Expect(session.ExitCode()).To(Equal(0))
+ })
+
+ It("Podman restart stopped container by ID", func() {
+ session := podmanTest.Podman([]string{"create", "-d", ALPINE, "ls"})
+ session.WaitWithDefaultTimeout()
+ Expect(session.ExitCode()).To(Equal(0))
+ cid := session.OutputToString()
+
+ startSession := podmanTest.Podman([]string{"start", cid})
+ startSession.WaitWithDefaultTimeout()
+ Expect(startSession.ExitCode()).To(Equal(0))
+
+ session2 := podmanTest.Podman([]string{"restart", "test1"})
+ session2.WaitWithDefaultTimeout()
+ Expect(session2.ExitCode()).To(Equal(0))
+ })
+
+ It("Podman restart running container", func() {
+ _ = podmanTest.RunTopContainer("test1")
+ ok := WaitForContainer(&podmanTest)
+ Expect(ok).To(BeTrue())
+
+ session := podmanTest.Podman([]string{"restart", "test1"})
+ session.WaitWithDefaultTimeout()
+ Expect(session.ExitCode()).To(Equal(0))
+ })
+
+ It("Podman restart multiple containers", func() {
+ _, exitCode, _ := podmanTest.RunLsContainer("test1")
+ Expect(exitCode).To(Equal(0))
+
+ _, exitCode, _ := podmanTest.RunLsContainer("test2")
+ Expect(exitCode).To(Equal(0))
+
+ session := podmanTest.Podman([]string{"restart", "test1", "test2"})
+ session.WaitWithDefaultTimeout()
+ Expect(session.ExitCode()).To(Equal(0))
+ })
+})