Files
podman/test/utils/podmansession_test.go
Matt Heon 72f1617fac Bump Go module to v5
Moving from Go module v4 to v5 prepares us for public releases.

Move done using gomove [1] as with the v3 and v4 moves.

[1] https://github.com/KSubedi/gomove

Signed-off-by: Matt Heon <mheon@redhat.com>
2024-02-08 09:35:39 -05:00

91 lines
2.9 KiB
Go

package utils_test
import (
. "github.com/containers/podman/v5/test/utils"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
var _ = Describe("PodmanSession test", func() {
var session *PodmanSession
BeforeEach(func() {
session = StartFakeCmdSession([]string{"PodmanSession", "test", "Podman Session"})
session.WaitWithDefaultTimeout()
})
It("Test OutputToString", func() {
Expect(session.OutputToString()).To(Equal("PodmanSession test Podman Session"))
})
It("Test OutputToStringArray", func() {
Expect(session.OutputToStringArray()).To(Equal([]string{"PodmanSession", "test", "Podman Session"}))
})
It("Test ErrorToString", func() {
Expect(session.ErrorToString()).To(Equal("PodmanSession test Podman Session"))
})
It("Test ErrorToStringArray", func() {
Expect(session.ErrorToStringArray()).To(Equal([]string{"PodmanSession", "test", "Podman Session", ""}))
})
It("Test GrepString", func() {
match, backStr := session.GrepString("Session")
Expect(match).To(BeTrue())
Expect(backStr).To(Equal([]string{"PodmanSession", "Podman Session"}))
match, backStr = session.GrepString("I am not here")
Expect(match).To(Not(BeTrue()))
Expect(backStr).To(BeNil())
})
It("Test ErrorGrepString", func() {
match, backStr := session.ErrorGrepString("Session")
Expect(match).To(BeTrue())
Expect(backStr).To(Equal([]string{"PodmanSession", "Podman Session"}))
match, backStr = session.ErrorGrepString("I am not here")
Expect(match).To(Not(BeTrue()))
Expect(backStr).To(BeNil())
})
It("Test LineInOutputStartsWith", func() {
Expect(session.LineInOutputStartsWith("Podman")).To(BeTrue())
Expect(session.LineInOutputStartsWith("Session")).To(Not(BeTrue()))
})
It("Test LineInOutputContains", func() {
Expect(session.LineInOutputContains("Podman")).To(BeTrue())
Expect(session.LineInOutputContains("Session")).To(BeTrue())
Expect(session.LineInOutputContains("I am not here")).To(Not(BeTrue()))
})
It("Test LineInOutputContainsTag", func() {
session = StartFakeCmdSession([]string{"HEAD LINE", "docker.io/library/busybox latest e1ddd7948a1c 5 weeks ago 1.38MB"})
session.WaitWithDefaultTimeout()
Expect(session.LineInOutputContainsTag("docker.io/library/busybox", "latest")).To(BeTrue())
Expect(session.LineInOutputContainsTag("busybox", "latest")).To(Not(BeTrue()))
})
It("Test IsJSONOutputValid", func() {
session = StartFakeCmdSession([]string{`{"page":1,"fruits":["apple","peach","pear"]}`})
session.WaitWithDefaultTimeout()
Expect(session.IsJSONOutputValid()).To(BeTrue())
session = StartFakeCmdSession([]string{"I am not JSON"})
session.WaitWithDefaultTimeout()
Expect(session.IsJSONOutputValid()).To(Not(BeTrue()))
})
It("Test WaitWithDefaultTimeout", func() {
session = StartFakeCmdSession([]string{"sleep", "2"})
Expect(session.ExitCode()).Should(Equal(-1))
session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).Should(Equal(0))
})
})