mirror of https://github.com/containers/podman.git
244 lines
9.2 KiB
Go
244 lines
9.2 KiB
Go
package integration
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
. "github.com/containers/podman/v4/test/utils"
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("Podman volume ls", func() {
|
|
|
|
AfterEach(func() {
|
|
podmanTest.CleanupVolume()
|
|
})
|
|
|
|
It("podman ls volume", func() {
|
|
session := podmanTest.Podman([]string{"volume", "create", "myvol"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
|
|
session = podmanTest.Podman([]string{"volume", "ls"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
Expect(session.OutputToStringArray()).To(HaveLen(2))
|
|
})
|
|
|
|
It("podman ls volume filter with comma label", func() {
|
|
session := podmanTest.Podman([]string{"volume", "create", "--label", "test=with,comma", "myvol3"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
|
|
session = podmanTest.Podman([]string{"volume", "ls", "--filter", "label=test=with,comma"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
Expect(session.OutputToStringArray()).To(HaveLen(2))
|
|
})
|
|
|
|
It("podman ls volume filter with a key pattern", func() {
|
|
session := podmanTest.Podman([]string{"volume", "create", "--label", "helloworld=world", "myvol2"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
|
|
session = podmanTest.Podman([]string{"volume", "ls", "--filter", "label=hello*"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
Expect(session.OutputToStringArray()).To(HaveLen(2))
|
|
})
|
|
|
|
It("podman ls volume with JSON format", func() {
|
|
session := podmanTest.Podman([]string{"volume", "create", "myvol"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
|
|
session = podmanTest.Podman([]string{"volume", "ls", "--format", "json"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
Expect(session.OutputToString()).To(BeValidJSON())
|
|
})
|
|
|
|
It("podman ls volume with Go template", func() {
|
|
session := podmanTest.Podman([]string{"volume", "create", "myvol"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
|
|
session = podmanTest.Podman([]string{"volume", "ls", "--format", "table {{.Name}} {{.Driver}} {{.Scope}}"})
|
|
session.WaitWithDefaultTimeout()
|
|
|
|
Expect(session).Should(ExitCleanly())
|
|
arr := session.OutputToStringArray()
|
|
Expect(arr).To(HaveLen(2))
|
|
Expect(arr[0]).To(ContainSubstring("NAME"))
|
|
Expect(arr[1]).To(ContainSubstring("myvol"))
|
|
})
|
|
|
|
It("podman ls volume with --filter flag", func() {
|
|
session := podmanTest.Podman([]string{"volume", "create", "--label", "foo=bar", "myvol"})
|
|
volName := session.OutputToString()
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
|
|
session = podmanTest.Podman([]string{"volume", "create"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
|
|
session = podmanTest.Podman([]string{"volume", "ls", "--filter", "label=foo"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
Expect(session.OutputToStringArray()).To(HaveLen(2))
|
|
Expect(session.OutputToStringArray()[1]).To(ContainSubstring(volName))
|
|
|
|
session = podmanTest.Podman([]string{"volume", "ls", "--filter", "label=foo=foo"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
Expect(session.OutputToStringArray()).To(BeEmpty())
|
|
|
|
session = podmanTest.Podman([]string{"volume", "ls", "--filter", "label=foo=bar"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
Expect(session.OutputToStringArray()).To(HaveLen(2))
|
|
Expect(session.OutputToStringArray()[1]).To(ContainSubstring(volName))
|
|
|
|
session = podmanTest.Podman([]string{"volume", "ls", "--filter", "label=foo=baz"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
Expect(session.OutputToStringArray()).To(BeEmpty())
|
|
})
|
|
|
|
It("podman ls volume with --filter until flag", func() {
|
|
session := podmanTest.Podman([]string{"volume", "create"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
|
|
session = podmanTest.Podman([]string{"volume", "ls", "--filter", "until=5000000000"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
Expect(session.OutputToStringArray()).To(HaveLen(2))
|
|
|
|
session = podmanTest.Podman([]string{"volume", "ls", "--filter", "until=50000"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
Expect(session.OutputToStringArray()).To(BeEmpty())
|
|
})
|
|
|
|
It("podman volume ls with --filter dangling", func() {
|
|
volName1 := "volume1"
|
|
session := podmanTest.Podman([]string{"volume", "create", volName1})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
|
|
volName2 := "volume2"
|
|
session2 := podmanTest.Podman([]string{"volume", "create", volName2})
|
|
session2.WaitWithDefaultTimeout()
|
|
Expect(session2).Should(ExitCleanly())
|
|
|
|
ctr := podmanTest.Podman([]string{"create", "-v", fmt.Sprintf("%s:/test", volName2), ALPINE, "sh"})
|
|
ctr.WaitWithDefaultTimeout()
|
|
Expect(ctr).Should(ExitCleanly())
|
|
|
|
lsNoDangling := podmanTest.Podman([]string{"volume", "ls", "--filter", "dangling=false", "--quiet"})
|
|
lsNoDangling.WaitWithDefaultTimeout()
|
|
Expect(lsNoDangling).Should(ExitCleanly())
|
|
Expect(lsNoDangling.OutputToString()).To(ContainSubstring(volName2))
|
|
|
|
lsDangling := podmanTest.Podman([]string{"volume", "ls", "--filter", "dangling=true", "--quiet"})
|
|
lsDangling.WaitWithDefaultTimeout()
|
|
Expect(lsDangling).Should(ExitCleanly())
|
|
Expect(lsDangling.OutputToString()).To(ContainSubstring(volName1))
|
|
})
|
|
|
|
It("podman ls volume with --filter name", func() {
|
|
volName1 := "volume1"
|
|
session := podmanTest.Podman([]string{"volume", "create", volName1})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
|
|
volName2 := "volume2"
|
|
session2 := podmanTest.Podman([]string{"volume", "create", volName2})
|
|
session2.WaitWithDefaultTimeout()
|
|
Expect(session2).Should(ExitCleanly())
|
|
|
|
session = podmanTest.Podman([]string{"volume", "ls", "--filter", "name=volume1*"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
Expect(session.OutputToStringArray()).To(HaveLen(3))
|
|
Expect(session.OutputToStringArray()[1]).To(ContainSubstring(volName1))
|
|
Expect(session.OutputToStringArray()[2]).To(ContainSubstring(volName2))
|
|
|
|
session = podmanTest.Podman([]string{"volume", "ls", "--filter", "name=volumex"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
Expect(session.OutputToStringArray()).To(BeEmpty())
|
|
|
|
session = podmanTest.Podman([]string{"volume", "ls", "--filter", "name=volume1"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
Expect(session.OutputToStringArray()).To(HaveLen(2))
|
|
Expect(session.OutputToStringArray()[1]).To(ContainSubstring(volName1))
|
|
})
|
|
|
|
It("podman ls volume with multiple --filter flag", func() {
|
|
session := podmanTest.Podman([]string{"volume", "create", "--label", "a=b", "--label", "b=c", "vol1"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
|
|
vol1Name := session.OutputToString()
|
|
|
|
session = podmanTest.Podman([]string{"volume", "create", "--label", "b=c", "--label", "a=b", "vol2"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
|
|
vol2Name := session.OutputToString()
|
|
|
|
session = podmanTest.Podman([]string{"volume", "create", "--label", "b=c", "--label", "c=d", "vol3"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
|
|
vol3Name := session.OutputToString()
|
|
|
|
session = podmanTest.Podman([]string{"volume", "ls", "-q", "--filter", "label=a=b", "--filter", "label=b=c"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
Expect(session.OutputToStringArray()).To(HaveLen(2))
|
|
Expect(session.OutputToStringArray()[0]).To(Equal(vol1Name))
|
|
Expect(session.OutputToStringArray()[1]).To(Equal(vol2Name))
|
|
|
|
session = podmanTest.Podman([]string{"volume", "ls", "-q", "--filter", "label=c=d", "--filter", "label=b=c"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
Expect(session.OutputToStringArray()).To(HaveLen(1))
|
|
Expect(session.OutputToStringArray()[0]).To(Equal(vol3Name))
|
|
})
|
|
|
|
It("podman ls volume with --filter since/after", func() {
|
|
vol1 := "vol1"
|
|
vol2 := "vol2"
|
|
vol3 := "vol3"
|
|
|
|
session := podmanTest.Podman([]string{"volume", "create", vol1})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).To(ExitCleanly())
|
|
|
|
session = podmanTest.Podman([]string{"volume", "create", vol2})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).To(ExitCleanly())
|
|
|
|
session = podmanTest.Podman([]string{"volume", "create", vol3})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).To(ExitCleanly())
|
|
|
|
session = podmanTest.Podman([]string{"volume", "ls", "-q", "--filter", "since=" + vol1})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session.OutputToStringArray()).To(HaveLen(2))
|
|
Expect(session.OutputToStringArray()[0]).To(Equal(vol2))
|
|
Expect(session.OutputToStringArray()[1]).To(Equal(vol3))
|
|
|
|
session = podmanTest.Podman([]string{"volume", "ls", "-q", "--filter", "after=" + vol1})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session.OutputToStringArray()).To(HaveLen(2))
|
|
Expect(session.OutputToStringArray()[0]).To(Equal(vol2))
|
|
Expect(session.OutputToStringArray()[1]).To(Equal(vol3))
|
|
})
|
|
})
|