summaryrefslogtreecommitdiff
path: root/test/e2e/pull_test.go
diff options
context:
space:
mode:
authorGiuseppe Scrivano <gscrivan@redhat.com>2019-04-12 14:26:39 +0200
committerGiuseppe Scrivano <gscrivan@redhat.com>2019-04-12 15:24:22 +0200
commitfcea6fda82cc3809f8990c0c80a52f6c4a03c5cd (patch)
treefb74ed3bb903d97cc180fb3036b6b5dbf571a69e /test/e2e/pull_test.go
parent6f3d2edc2beb8d18452cdd7b3b1ef7f05b90f5c5 (diff)
downloadpodman-fcea6fda82cc3809f8990c0c80a52f6c4a03c5cd.tar.gz
podman-fcea6fda82cc3809f8990c0c80a52f6c4a03c5cd.tar.bz2
podman-fcea6fda82cc3809f8990c0c80a52f6c4a03c5cd.zip
pull: exit with error if the image is not found
Closes: https://github.com/containers/libpod/issues/2785 Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'test/e2e/pull_test.go')
-rw-r--r--test/e2e/pull_test.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/e2e/pull_test.go b/test/e2e/pull_test.go
index de6d4ea09..4e4e80d56 100644
--- a/test/e2e/pull_test.go
+++ b/test/e2e/pull_test.go
@@ -38,6 +38,12 @@ var _ = Describe("Podman pull", func() {
})
+ It("podman pull from docker a not existing image", func() {
+ session := podmanTest.Podman([]string{"pull", "ibetthisdoesntexistthere:foo"})
+ session.WaitWithDefaultTimeout()
+ Expect(session.ExitCode()).To(Not(Equal(0)))
+ })
+
It("podman pull from docker with tag", func() {
session := podmanTest.Podman([]string{"pull", "busybox:glibc"})
session.WaitWithDefaultTimeout()