mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-27 02:37:53 +00:00
Now that Dan has added helpful comments to each SkipIfRemote,
let's take the next step and include those messages in the
Skip() output so someone viewing test results can easily
see if a remote test is skipped for a real reason or for
a FIXME.
This commit is the result of a simple:
perl -pi -e 's;(SkipIfRemote)\(\)(\s+//\s+(.*))?;$1("$3");' *.go
in the test/e2e directory, with a few minor (manual) changes
in wording.
Signed-off-by: Ed Santiago <santiago@redhat.com>
56 lines
1.3 KiB
Go
56 lines
1.3 KiB
Go
package integration
|
|
|
|
import (
|
|
"os"
|
|
|
|
. "github.com/containers/podman/v2/test/utils"
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("Podman namespaces", func() {
|
|
var (
|
|
tempdir string
|
|
err error
|
|
podmanTest *PodmanTestIntegration
|
|
)
|
|
|
|
BeforeEach(func() {
|
|
tempdir, err = CreateTempDirInTempDir()
|
|
if err != nil {
|
|
os.Exit(1)
|
|
}
|
|
podmanTest = PodmanTestCreate(tempdir)
|
|
podmanTest.Setup()
|
|
podmanTest.SeedImages()
|
|
})
|
|
|
|
AfterEach(func() {
|
|
podmanTest.Cleanup()
|
|
f := CurrentGinkgoTestDescription()
|
|
processTestResult(f)
|
|
|
|
})
|
|
|
|
It("podman namespace test", func() {
|
|
SkipIfRemote("FIXME This should work on Remote")
|
|
podman1 := podmanTest.Podman([]string{"--namespace", "test1", "run", "-d", ALPINE, "echo", "hello"})
|
|
podman1.WaitWithDefaultTimeout()
|
|
Expect(podman1.ExitCode()).To(Equal(0))
|
|
|
|
podman2 := podmanTest.Podman([]string{"--namespace", "test2", "ps", "-aq"})
|
|
podman2.WaitWithDefaultTimeout()
|
|
Expect(podman2.ExitCode()).To(Equal(0))
|
|
output := podman2.OutputToStringArray()
|
|
numCtrs := 0
|
|
for _, outputLine := range output {
|
|
if outputLine != "" {
|
|
numCtrs = numCtrs + 1
|
|
}
|
|
}
|
|
Expect(numCtrs).To(Equal(0))
|
|
|
|
numberOfCtrsNoNamespace := podmanTest.NumberOfContainers()
|
|
Expect(numberOfCtrsNoNamespace).To(Equal(1))
|
|
})
|
|
})
|