summaryrefslogtreecommitdiff
path: root/test/e2e/run_restart_test.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-03-13 15:12:52 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-03-15 17:45:11 +0000
commit4739fc2d98baf0ccfc46ae3ef770243bbdcea47a (patch)
treea8f09264dbad665e71e1c88a87193def7b3755f6 /test/e2e/run_restart_test.go
parent02a26c2934eea13799ae950827df54ec995312bc (diff)
downloadpodman-4739fc2d98baf0ccfc46ae3ef770243bbdcea47a.tar.gz
podman-4739fc2d98baf0ccfc46ae3ef770243bbdcea47a.tar.bz2
podman-4739fc2d98baf0ccfc46ae3ef770243bbdcea47a.zip
Add test. Move attach code in start back
Signed-off-by: Matthew Heon <matthew.heon@gmail.com> Closes: #482 Approved by: baude
Diffstat (limited to 'test/e2e/run_restart_test.go')
-rw-r--r--test/e2e/run_restart_test.go39
1 files changed, 39 insertions, 0 deletions
diff --git a/test/e2e/run_restart_test.go b/test/e2e/run_restart_test.go
new file mode 100644
index 000000000..8737cf4f8
--- /dev/null
+++ b/test/e2e/run_restart_test.go
@@ -0,0 +1,39 @@
+package integration
+
+import (
+ "os"
+
+ . "github.com/onsi/ginkgo"
+ . "github.com/onsi/gomega"
+)
+
+var _ = Describe("Podman run restart containers", 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 start after successful run", func() {
+ session := podmanTest.Podman([]string{"run", ALPINE, "ls"})
+ session.WaitWithDefaultTimeout()
+ Expect(session.ExitCode()).To(Equal(0))
+
+ session2 := podmanTest.Podman([]string{"start", "--attach", "--latest"})
+ session2.WaitWithDefaultTimeout()
+ Expect(session2.ExitCode()).To(Equal(0))
+ })
+})