summaryrefslogtreecommitdiff
path: root/test/e2e/search_test.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-02-08 14:19:58 -0500
committerGitHub <noreply@github.com>2018-02-08 14:19:58 -0500
commit851bdc325124700448b035057055bd594981030a (patch)
tree902bea3952683afd6d4c75b210ee7386d49bccba /test/e2e/search_test.go
parent5529143877778ef8bcdd05179e279bb7d662b431 (diff)
parentc089cb9c9270aa4b367deb8c8c03cb05f8860a33 (diff)
downloadpodman-851bdc325124700448b035057055bd594981030a.tar.gz
podman-851bdc325124700448b035057055bd594981030a.tar.bz2
podman-851bdc325124700448b035057055bd594981030a.zip
Merge pull request #314 from baude/ginkgo_last
Final ginkgo migration
Diffstat (limited to 'test/e2e/search_test.go')
-rw-r--r--test/e2e/search_test.go67
1 files changed, 67 insertions, 0 deletions
diff --git a/test/e2e/search_test.go b/test/e2e/search_test.go
new file mode 100644
index 000000000..fbe5a4580
--- /dev/null
+++ b/test/e2e/search_test.go
@@ -0,0 +1,67 @@
+package integration
+
+import (
+ "os"
+
+ . "github.com/onsi/ginkgo"
+ . "github.com/onsi/gomega"
+)
+
+var _ = Describe("Podman search", func() {
+ var (
+ tempdir string
+ err error
+ podmanTest PodmanTest
+ )
+
+ BeforeEach(func() {
+ tempdir, err = CreateTempDirInTempDir()
+ if err != nil {
+ os.Exit(1)
+ }
+ podmanTest = PodmanCreate(tempdir)
+ })
+
+ AfterEach(func() {
+ podmanTest.Cleanup()
+
+ })
+
+ It("podman search", func() {
+ search := podmanTest.Podman([]string{"search", "alpine"})
+ search.WaitWithDefaultTimeout()
+ Expect(search.ExitCode()).To(Equal(0))
+ Expect(len(search.OutputToStringArray())).To(BeNumerically(">", 1))
+ Expect(search.LineInOuputContains("docker.io/library/alpine")).To(BeTrue())
+ })
+
+ It("podman search registry flag", func() {
+ search := podmanTest.Podman([]string{"search", "--registry", "registry.fedoraproject.org", "fedora-minimal"})
+ search.WaitWithDefaultTimeout()
+ Expect(search.ExitCode()).To(Equal(0))
+ Expect(search.LineInOuputContains("fedoraproject.org/fedora-minimal")).To(BeTrue())
+ })
+
+ It("podman search format flag", func() {
+ search := podmanTest.Podman([]string{"search", "--format", "table {{.Index}} {{.Name}}", "alpine"})
+ search.WaitWithDefaultTimeout()
+ Expect(search.ExitCode()).To(Equal(0))
+ Expect(len(search.OutputToStringArray())).To(BeNumerically(">", 1))
+ Expect(search.LineInOuputContains("docker.io/library/alpine")).To(BeTrue())
+ })
+
+ It("podman search no-trunc flag", func() {
+ search := podmanTest.Podman([]string{"search", "alpine"})
+ search.WaitWithDefaultTimeout()
+ Expect(search.ExitCode()).To(Equal(0))
+ Expect(len(search.OutputToStringArray())).To(BeNumerically(">", 1))
+ Expect(search.LineInOuputContains("docker.io/library/alpine")).To(BeTrue())
+ })
+
+ It("podman search limit flag", func() {
+ search := podmanTest.Podman([]string{"search", "--limit", "3", "alpine"})
+ search.WaitWithDefaultTimeout()
+ Expect(search.ExitCode()).To(Equal(0))
+ Expect(len(search.OutputToStringArray())).To(Equal(4))
+ })
+})