summaryrefslogtreecommitdiff
path: root/pkg/bindings/test/containers_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-04-14 14:34:18 +0200
committerGitHub <noreply@github.com>2020-04-14 14:34:18 +0200
commit004826653f2a8b064af8c1f055b1a402f4060d1c (patch)
tree715f035f049b161b55932fa9586f24c1876f11a5 /pkg/bindings/test/containers_test.go
parent5cf64aee11063bc8e7ff22f1365b0bf6b3ab0900 (diff)
parentd8d1aa49d27d51f914a0858ab99c57d7dc929926 (diff)
downloadpodman-004826653f2a8b064af8c1f055b1a402f4060d1c.tar.gz
podman-004826653f2a8b064af8c1f055b1a402f4060d1c.tar.bz2
podman-004826653f2a8b064af8c1f055b1a402f4060d1c.zip
Merge pull request #5803 from baude/v2init
v2podman add container init
Diffstat (limited to 'pkg/bindings/test/containers_test.go')
-rw-r--r--pkg/bindings/test/containers_test.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkg/bindings/test/containers_test.go b/pkg/bindings/test/containers_test.go
index a8e2fd071..c6501ac9e 100644
--- a/pkg/bindings/test/containers_test.go
+++ b/pkg/bindings/test/containers_test.go
@@ -513,4 +513,22 @@ var _ = Describe("Podman containers ", func() {
Expect(err).To(BeNil())
})
+ It("container init on a bogus container", func() {
+ err := containers.ContainerInit(bt.conn, "doesnotexist")
+ Expect(err).ToNot(BeNil())
+ code, _ := bindings.CheckResponseCode(err)
+ Expect(code).To(BeNumerically("==", http.StatusNotFound))
+ })
+
+ It("container init", func() {
+ s := specgen.NewSpecGenerator(alpine.name)
+ ctr, err := containers.CreateWithSpec(bt.conn, s)
+ Expect(err).To(BeNil())
+ err = containers.ContainerInit(bt.conn, ctr.ID)
+ Expect(err).To(BeNil())
+ // trying to init again should be an error
+ err = containers.ContainerInit(bt.conn, ctr.ID)
+ Expect(err).ToNot(BeNil())
+ })
+
})