mirror of
https://github.com/containers/podman.git
synced 2025-06-23 02:18:13 +08:00
podman remote integrations tests
add exists and rmi tests back in ... Signed-off-by: baude <bbaude@redhat.com>
This commit is contained in:
@ -1,5 +1,3 @@
|
||||
// +build !remoteclient
|
||||
|
||||
package integration
|
||||
|
||||
import (
|
||||
@ -51,6 +49,7 @@ var _ = Describe("Podman image|container exists", func() {
|
||||
Expect(session.ExitCode()).To(Equal(1))
|
||||
})
|
||||
It("podman container exists in local storage by name", func() {
|
||||
SkipIfRemote()
|
||||
setup := podmanTest.RunTopContainer("foobar")
|
||||
setup.WaitWithDefaultTimeout()
|
||||
Expect(setup.ExitCode()).To(Equal(0))
|
||||
@ -60,6 +59,7 @@ var _ = Describe("Podman image|container exists", func() {
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
})
|
||||
It("podman container exists in local storage by container ID", func() {
|
||||
SkipIfRemote()
|
||||
setup := podmanTest.RunTopContainer("")
|
||||
setup.WaitWithDefaultTimeout()
|
||||
Expect(setup.ExitCode()).To(Equal(0))
|
||||
@ -70,6 +70,7 @@ var _ = Describe("Podman image|container exists", func() {
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
})
|
||||
It("podman container exists in local storage by short container ID", func() {
|
||||
SkipIfRemote()
|
||||
setup := podmanTest.RunTopContainer("")
|
||||
setup.WaitWithDefaultTimeout()
|
||||
Expect(setup.ExitCode()).To(Equal(0))
|
||||
@ -80,12 +81,14 @@ var _ = Describe("Podman image|container exists", func() {
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
})
|
||||
It("podman container does not exist in local storage", func() {
|
||||
SkipIfRemote()
|
||||
session := podmanTest.Podman([]string{"container", "exists", "foobar"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(1))
|
||||
})
|
||||
|
||||
It("podman pod exists in local storage by name", func() {
|
||||
SkipIfRemote()
|
||||
setup, rc, _ := podmanTest.CreatePod("foobar")
|
||||
setup.WaitWithDefaultTimeout()
|
||||
Expect(rc).To(Equal(0))
|
||||
@ -95,6 +98,7 @@ var _ = Describe("Podman image|container exists", func() {
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
})
|
||||
It("podman pod exists in local storage by container ID", func() {
|
||||
SkipIfRemote()
|
||||
setup, rc, podID := podmanTest.CreatePod("")
|
||||
setup.WaitWithDefaultTimeout()
|
||||
Expect(rc).To(Equal(0))
|
||||
@ -104,6 +108,7 @@ var _ = Describe("Podman image|container exists", func() {
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
})
|
||||
It("podman pod exists in local storage by short container ID", func() {
|
||||
SkipIfRemote()
|
||||
setup, rc, podID := podmanTest.CreatePod("")
|
||||
setup.WaitWithDefaultTimeout()
|
||||
Expect(rc).To(Equal(0))
|
||||
@ -113,6 +118,7 @@ var _ = Describe("Podman image|container exists", func() {
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
})
|
||||
It("podman pod does not exist in local storage", func() {
|
||||
SkipIfRemote()
|
||||
session := podmanTest.Podman([]string{"pod", "exists", "foobar"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(1))
|
||||
|
Reference in New Issue
Block a user