mirror of
https://github.com/containers/podman.git
synced 2025-10-29 17:06:22 +08:00
Currently the podman command --format output code uses a mix of report.Formatter and report.Template. I patched report.Formatter to correctly handle newlines[1]. Since we cannot fix this with report.Template we have to migrate all users to report.Formatter. This ensures consistent behavior for all commands. This change does not change the output, we can add a new test for the newline bug when the common PR is vendored in. Also fix a bug where a invlaid template would not cause a exit code > 0, see the added test case. [1] https://github.com/containers/common/pull/1146 Signed-off-by: Paul Holzinger <pholzing@redhat.com>
88 lines
2.5 KiB
Go
88 lines
2.5 KiB
Go
package e2e_test
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/containers/podman/v4/pkg/machine"
|
|
jsoniter "github.com/json-iterator/go"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
. "github.com/onsi/gomega/gexec"
|
|
)
|
|
|
|
var _ = Describe("podman machine stop", func() {
|
|
var (
|
|
mb *machineTestBuilder
|
|
testDir string
|
|
)
|
|
|
|
BeforeEach(func() {
|
|
testDir, mb = setup()
|
|
})
|
|
AfterEach(func() {
|
|
teardown(originalHomeDir, testDir, mb)
|
|
})
|
|
|
|
It("inspect bad name", func() {
|
|
i := inspectMachine{}
|
|
reallyLongName := "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
|
session, err := mb.setName(reallyLongName).setCmd(&i).run()
|
|
Expect(err).To(BeNil())
|
|
Expect(session).To(Exit(125))
|
|
})
|
|
|
|
It("inspect two machines", func() {
|
|
i := new(initMachine)
|
|
foo1, err := mb.setName("foo1").setCmd(i.withImagePath(mb.imagePath)).run()
|
|
Expect(err).To(BeNil())
|
|
Expect(foo1).To(Exit(0))
|
|
|
|
ii := new(initMachine)
|
|
foo2, err := mb.setName("foo2").setCmd(ii.withImagePath(mb.imagePath)).run()
|
|
Expect(err).To(BeNil())
|
|
Expect(foo2).To(Exit(0))
|
|
|
|
inspect := new(inspectMachine)
|
|
inspect = inspect.withFormat("{{.Name}}")
|
|
inspectSession, err := mb.setName("foo1").setCmd(inspect).run()
|
|
Expect(err).To(BeNil())
|
|
Expect(inspectSession).To(Exit(0))
|
|
Expect(inspectSession.Bytes()).To(ContainSubstring("foo1"))
|
|
})
|
|
|
|
It("inspect with go format", func() {
|
|
name := randomString()
|
|
i := new(initMachine)
|
|
session, err := mb.setName(name).setCmd(i.withImagePath(mb.imagePath)).run()
|
|
Expect(err).To(BeNil())
|
|
Expect(session).To(Exit(0))
|
|
|
|
// regular inspect should
|
|
inspectJSON := new(inspectMachine)
|
|
inspectSession, err := mb.setName(name).setCmd(inspectJSON).run()
|
|
Expect(err).To(BeNil())
|
|
Expect(inspectSession).To(Exit(0))
|
|
|
|
var inspectInfo []machine.InspectInfo
|
|
err = jsoniter.Unmarshal(inspectSession.Bytes(), &inspectInfo)
|
|
Expect(err).To(BeNil())
|
|
Expect(strings.HasSuffix(inspectInfo[0].ConnectionInfo.PodmanSocket.GetPath(), "podman.sock"))
|
|
|
|
inspect := new(inspectMachine)
|
|
inspect = inspect.withFormat("{{.Name}}")
|
|
inspectSession, err = mb.setName(name).setCmd(inspect).run()
|
|
Expect(err).To(BeNil())
|
|
Expect(inspectSession).To(Exit(0))
|
|
Expect(inspectSession.Bytes()).To(ContainSubstring(name))
|
|
|
|
// check invalid template returns error
|
|
inspect = new(inspectMachine)
|
|
inspect = inspect.withFormat("{{.Abcde}}")
|
|
inspectSession, err = mb.setName(name).setCmd(inspect).run()
|
|
Expect(err).To(BeNil())
|
|
Expect(inspectSession).To(Exit(125))
|
|
Expect(inspectSession.errorToString()).To(ContainSubstring("can't evaluate field Abcde in type machine.InspectInfo"))
|
|
})
|
|
})
|