mirror of
https://github.com/containers/podman.git
synced 2025-06-02 19:02:10 +08:00
Restore --format table header support
Signed-off-by: Jhon Honce <jhonce@redhat.com>
This commit is contained in:
@ -14,7 +14,7 @@ import (
|
||||
"github.com/containers/storage/pkg/parsers/kernel"
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
"github.com/onsi/gomega/gexec"
|
||||
. "github.com/onsi/gomega/gexec"
|
||||
)
|
||||
|
||||
var (
|
||||
@ -48,7 +48,7 @@ type PodmanTest struct {
|
||||
|
||||
// PodmanSession wraps the gexec.session so we can extend it
|
||||
type PodmanSession struct {
|
||||
*gexec.Session
|
||||
*Session
|
||||
}
|
||||
|
||||
// HostOS is a simple struct for the test os
|
||||
@ -96,7 +96,7 @@ func (p *PodmanTest) PodmanAsUserBase(args []string, uid, gid uint32, cwd string
|
||||
|
||||
command.ExtraFiles = extraFiles
|
||||
|
||||
session, err := gexec.Start(command, GinkgoWriter, GinkgoWriter)
|
||||
session, err := Start(command, GinkgoWriter, GinkgoWriter)
|
||||
if err != nil {
|
||||
Fail(fmt.Sprintf("unable to run podman command: %s\n%v", strings.Join(podmanOptions, " "), err))
|
||||
}
|
||||
@ -125,7 +125,7 @@ func (p *PodmanTest) NumberOfContainersRunning() int {
|
||||
var containers []string
|
||||
ps := p.PodmanBase([]string{"ps", "-q"}, false, true)
|
||||
ps.WaitWithDefaultTimeout()
|
||||
Expect(ps.ExitCode()).To(Equal(0))
|
||||
Expect(ps).Should(Exit(0))
|
||||
for _, i := range ps.OutputToStringArray() {
|
||||
if i != "" {
|
||||
containers = append(containers, i)
|
||||
@ -318,7 +318,7 @@ func (s *PodmanSession) IsJSONOutputValid() bool {
|
||||
|
||||
// WaitWithDefaultTimeout waits for process finished with defaultWaitTimeout
|
||||
func (s *PodmanSession) WaitWithDefaultTimeout() {
|
||||
Eventually(s, defaultWaitTimeout).Should(gexec.Exit())
|
||||
Eventually(s, defaultWaitTimeout).Should(Exit())
|
||||
os.Stdout.Sync()
|
||||
os.Stderr.Sync()
|
||||
fmt.Println("output:", s.OutputToString())
|
||||
@ -332,7 +332,7 @@ func CreateTempDirInTempDir() (string, error) {
|
||||
// SystemExec is used to exec a system command to check its exit code or output
|
||||
func SystemExec(command string, args []string) *PodmanSession {
|
||||
c := exec.Command(command, args...)
|
||||
session, err := gexec.Start(c, GinkgoWriter, GinkgoWriter)
|
||||
session, err := Start(c, GinkgoWriter, GinkgoWriter)
|
||||
if err != nil {
|
||||
Fail(fmt.Sprintf("unable to run command: %s %s", command, strings.Join(args, " ")))
|
||||
}
|
||||
@ -343,7 +343,7 @@ func SystemExec(command string, args []string) *PodmanSession {
|
||||
// StartSystemExec is used to start exec a system command
|
||||
func StartSystemExec(command string, args []string) *PodmanSession {
|
||||
c := exec.Command(command, args...)
|
||||
session, err := gexec.Start(c, GinkgoWriter, GinkgoWriter)
|
||||
session, err := Start(c, GinkgoWriter, GinkgoWriter)
|
||||
if err != nil {
|
||||
Fail(fmt.Sprintf("unable to run command: %s %s", command, strings.Join(args, " ")))
|
||||
}
|
||||
|
Reference in New Issue
Block a user