mirror of
https://github.com/containers/podman.git
synced 2025-07-15 03:02:52 +08:00
Separate common used test functions and structs to test/utils
Put common used test functions and structs to a separated package. So we can use them for more testsuites. Signed-off-by: Yiqiao Pu <ypu@redhat.com>
This commit is contained in:
@ -5,6 +5,7 @@ import (
|
||||
"os"
|
||||
"path/filepath"
|
||||
|
||||
. "github.com/containers/libpod/test/utils"
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
)
|
||||
@ -13,7 +14,7 @@ var _ = Describe("Podman load", func() {
|
||||
var (
|
||||
tempdir string
|
||||
err error
|
||||
podmanTest PodmanTest
|
||||
podmanTest *PodmanTestIntegration
|
||||
)
|
||||
|
||||
BeforeEach(func() {
|
||||
@ -21,7 +22,7 @@ var _ = Describe("Podman load", func() {
|
||||
if err != nil {
|
||||
os.Exit(1)
|
||||
}
|
||||
podmanTest = PodmanCreate(tempdir)
|
||||
podmanTest = PodmanTestCreate(tempdir)
|
||||
podmanTest.RestoreAllArtifacts()
|
||||
})
|
||||
|
||||
@ -55,7 +56,7 @@ var _ = Describe("Podman load", func() {
|
||||
save.WaitWithDefaultTimeout()
|
||||
Expect(save.ExitCode()).To(Equal(0))
|
||||
|
||||
compress := podmanTest.SystemExec("gzip", []string{outfile})
|
||||
compress := SystemExec("gzip", []string{outfile})
|
||||
compress.WaitWithDefaultTimeout()
|
||||
outfile = outfile + ".gz"
|
||||
|
||||
@ -253,7 +254,7 @@ var _ = Describe("Podman load", func() {
|
||||
save := podmanTest.Podman([]string{"save", "-o", outfile, BB})
|
||||
save.WaitWithDefaultTimeout()
|
||||
Expect(save.ExitCode()).To(Equal(0))
|
||||
session := podmanTest.SystemExec("xz", []string{outfile})
|
||||
session := SystemExec("xz", []string{outfile})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
|
||||
|
Reference in New Issue
Block a user