diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-10-26 04:33:12 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-26 04:33:12 -0700 |
commit | 6e1aeb06f86bfed7045be19c8e8b09c1bf5ba55f (patch) | |
tree | e05292388acb06c0c30d5031fc540fc629f6f6e5 /test/e2e | |
parent | a2dc29746f354382a90956fcc3b47abf8a986fd9 (diff) | |
parent | 606a5cec8fa177fe64cff4ccf7cac05900fbe86c (diff) | |
download | podman-6e1aeb06f86bfed7045be19c8e8b09c1bf5ba55f.tar.gz podman-6e1aeb06f86bfed7045be19c8e8b09c1bf5ba55f.tar.bz2 podman-6e1aeb06f86bfed7045be19c8e8b09c1bf5ba55f.zip |
Merge pull request #1637 from vrothberg/runlabel-execute-any-command
runlabel: run any command
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/runlabel_test.go | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/test/e2e/runlabel_test.go b/test/e2e/runlabel_test.go new file mode 100644 index 000000000..8d10d3c24 --- /dev/null +++ b/test/e2e/runlabel_test.go @@ -0,0 +1,68 @@ +package integration + +import ( + "fmt" + "os" + + . "github.com/onsi/ginkgo" + . "github.com/onsi/gomega" +) + +var PodmanDockerfile = ` +FROM alpine:latest +LABEL RUN podman --version` + +var LsDockerfile = ` +FROM alpine:latest +LABEL RUN ls -la` + +var _ = Describe("podman container runlabel", 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() + f := CurrentGinkgoTestDescription() + timedResult := fmt.Sprintf("Test: %s completed in %f seconds", f.TestText, f.Duration.Seconds()) + GinkgoWriter.Write([]byte(timedResult)) + + }) + + It("podman container runlabel (podman --version)", func() { + image := "podman-runlabel-test:podman" + podmanTest.BuildImage(PodmanDockerfile, image, "false") + + result := podmanTest.Podman([]string{"container", "runlabel", "RUN", image}) + result.WaitWithDefaultTimeout() + Expect(result.ExitCode()).To(Equal(0)) + + result = podmanTest.Podman([]string{"rmi", image}) + result.WaitWithDefaultTimeout() + Expect(result.ExitCode()).To(Equal(0)) + }) + + It("podman container runlabel (ls -la)", func() { + image := "podman-runlabel-test:ls" + podmanTest.BuildImage(LsDockerfile, image, "false") + + result := podmanTest.Podman([]string{"container", "runlabel", "RUN", image}) + result.WaitWithDefaultTimeout() + Expect(result.ExitCode()).To(Equal(0)) + + result = podmanTest.Podman([]string{"rmi", image}) + result.WaitWithDefaultTimeout() + Expect(result.ExitCode()).To(Equal(0)) + }) +}) |