summaryrefslogtreecommitdiff
path: root/test/e2e/runlabel_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-11-08 22:06:34 +0100
committerGitHub <noreply@github.com>2019-11-08 22:06:34 +0100
commitf456ce90f966f2eefdfc27ca83541ceacc4a298d (patch)
tree24f39eb6404de474cb2e2d41acc2a3ace8410ce5 /test/e2e/runlabel_test.go
parent651d6ebe5274a892ce64819bb007080895f98321 (diff)
parentd7c0f968ca60994306c8c76cd8e4e0a677fe9ada (diff)
downloadpodman-f456ce90f966f2eefdfc27ca83541ceacc4a298d.tar.gz
podman-f456ce90f966f2eefdfc27ca83541ceacc4a298d.tar.bz2
podman-f456ce90f966f2eefdfc27ca83541ceacc4a298d.zip
Merge pull request #4337 from QiWang19/check_auth_path
fix bug check nonexist authfile
Diffstat (limited to 'test/e2e/runlabel_test.go')
-rw-r--r--test/e2e/runlabel_test.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/e2e/runlabel_test.go b/test/e2e/runlabel_test.go
index 52a011efb..41d61e9d9 100644
--- a/test/e2e/runlabel_test.go
+++ b/test/e2e/runlabel_test.go
@@ -98,4 +98,19 @@ var _ = Describe("podman container runlabel", func() {
result.WaitWithDefaultTimeout()
Expect(result.ExitCode()).To(Equal(0))
})
+
+ It("runlabel should fail with nonexist authfile", func() {
+ SkipIfRemote()
+ image := "podman-runlabel-test:podman"
+ podmanTest.BuildImage(PodmanDockerfile, image, "false")
+
+ // runlabel should fail with nonexist authfile
+ result := podmanTest.Podman([]string{"container", "runlabel", "--authfile", "/tmp/nonexist", "RUN", image})
+ result.WaitWithDefaultTimeout()
+ Expect(result.ExitCode()).To(Not(Equal(0)))
+
+ result = podmanTest.Podman([]string{"rmi", image})
+ result.WaitWithDefaultTimeout()
+ Expect(result.ExitCode()).To(Equal(0))
+ })
})