mirror of
https://github.com/containers/podman.git
synced 2025-05-31 15:42:48 +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:
@ -2,9 +2,9 @@ package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/containers/libpod/libpod/adapter"
|
||||
"os"
|
||||
|
||||
"github.com/containers/libpod/libpod/adapter"
|
||||
"github.com/containers/storage"
|
||||
"github.com/pkg/errors"
|
||||
"github.com/urfave/cli"
|
||||
@ -57,11 +57,11 @@ func rmiCmd(c *cli.Context) error {
|
||||
return err
|
||||
}
|
||||
removeAll := c.Bool("all")
|
||||
localRuntime, err := adapter.GetRuntime(c)
|
||||
runtime, err := adapter.GetRuntime(c)
|
||||
if err != nil {
|
||||
return errors.Wrapf(err, "could not get runtime")
|
||||
}
|
||||
defer localRuntime.Runtime.Shutdown(false)
|
||||
defer runtime.Runtime.Shutdown(false)
|
||||
|
||||
args := c.Args()
|
||||
if len(args) == 0 && !removeAll {
|
||||
@ -75,7 +75,7 @@ func rmiCmd(c *cli.Context) error {
|
||||
|
||||
removeImage := func(img *adapter.ContainerImage) {
|
||||
deleted = true
|
||||
msg, deleteErr = localRuntime.RemoveImage(ctx, img, c.Bool("force"))
|
||||
msg, deleteErr = runtime.RemoveImage(ctx, img, c.Bool("force"))
|
||||
if deleteErr != nil {
|
||||
if errors.Cause(deleteErr) == storage.ErrImageUsedByContainer {
|
||||
fmt.Printf("A container associated with containers/storage, i.e. via Buildah, CRI-O, etc., may be associated with this image: %-12.12s\n", img.ID())
|
||||
@ -91,7 +91,7 @@ func rmiCmd(c *cli.Context) error {
|
||||
|
||||
if removeAll {
|
||||
var imagesToDelete []*adapter.ContainerImage
|
||||
imagesToDelete, err = localRuntime.GetImages()
|
||||
imagesToDelete, err = runtime.GetImages()
|
||||
if err != nil {
|
||||
return errors.Wrapf(err, "unable to query local images")
|
||||
}
|
||||
@ -111,7 +111,7 @@ func rmiCmd(c *cli.Context) error {
|
||||
removeImage(i)
|
||||
}
|
||||
lastNumberofImages = len(imagesToDelete)
|
||||
imagesToDelete, err = localRuntime.GetImages()
|
||||
imagesToDelete, err = runtime.GetImages()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
@ -129,7 +129,7 @@ func rmiCmd(c *cli.Context) error {
|
||||
// See https://github.com/containers/libpod/issues/930 as
|
||||
// an exemplary inconsistency issue.
|
||||
for _, i := range images {
|
||||
newImage, err := localRuntime.NewImageFromLocal(i)
|
||||
newImage, err := runtime.NewImageFromLocal(i)
|
||||
if err != nil {
|
||||
fmt.Fprintln(os.Stderr, err)
|
||||
continue
|
||||
|
@ -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))
|
||||
|
@ -6,6 +6,7 @@ import (
|
||||
"fmt"
|
||||
"github.com/containers/libpod/libpod"
|
||||
"github.com/containers/libpod/pkg/inspect"
|
||||
"github.com/onsi/ginkgo"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"os/exec"
|
||||
@ -13,13 +14,16 @@ import (
|
||||
"strings"
|
||||
)
|
||||
|
||||
func SkipIfRemote() {
|
||||
ginkgo.Skip("This function is not enabled for remote podman")
|
||||
}
|
||||
|
||||
// Cleanup cleans up the temporary store
|
||||
func (p *PodmanTestIntegration) Cleanup() {
|
||||
p.StopVarlink()
|
||||
// TODO
|
||||
// Stop all containers
|
||||
// Rm all containers
|
||||
// Rm all images
|
||||
|
||||
if err := os.RemoveAll(p.TempDir); err != nil {
|
||||
fmt.Printf("%q\n", err)
|
||||
|
@ -19,6 +19,8 @@ import (
|
||||
"github.com/onsi/gomega/gexec"
|
||||
)
|
||||
|
||||
func SkipIfRemote() {}
|
||||
|
||||
// Podman is the exec call to podman on the filesystem
|
||||
func (p *PodmanTestIntegration) Podman(args []string) *PodmanSessionIntegration {
|
||||
podmanSession := p.PodmanBase(args)
|
||||
|
@ -1,5 +1,3 @@
|
||||
// +build !remoteclient
|
||||
|
||||
package integration
|
||||
|
||||
import (
|
||||
@ -113,6 +111,7 @@ var _ = Describe("Podman rmi", func() {
|
||||
})
|
||||
|
||||
It("podman rmi image that is a parent of another image", func() {
|
||||
SkipIfRemote()
|
||||
session := podmanTest.Podman([]string{"rmi", "-fa"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
@ -150,6 +149,7 @@ var _ = Describe("Podman rmi", func() {
|
||||
})
|
||||
|
||||
It("podman rmi image that is created from another named imaged", func() {
|
||||
SkipIfRemote()
|
||||
session := podmanTest.Podman([]string{"rmi", "-fa"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
@ -185,6 +185,7 @@ var _ = Describe("Podman rmi", func() {
|
||||
})
|
||||
|
||||
It("podman rmi with cached images", func() {
|
||||
SkipIfRemote()
|
||||
session := podmanTest.Podman([]string{"rmi", "-fa"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
@ -254,6 +255,7 @@ var _ = Describe("Podman rmi", func() {
|
||||
})
|
||||
|
||||
It("podman rmi -a with parent|child images", func() {
|
||||
SkipIfRemote()
|
||||
dockerfile := `FROM docker.io/library/alpine:latest AS base
|
||||
RUN touch /1
|
||||
ENV LOCAL=/1
|
||||
|
Reference in New Issue
Block a user