diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2018-07-25 08:47:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-25 08:47:35 -0400 |
commit | c90b7400a8b9ffc77de69ad3aae1754ac006ba21 (patch) | |
tree | 80f5a45ff74c22d8571710df1febd7b25f5b3aaa /test | |
parent | 32b690e90298f3c17e71c08d87e9727cfce8d3fb (diff) | |
parent | 1b51e88098e0c77cddd8de3484ef56965352bcf3 (diff) | |
download | podman-c90b7400a8b9ffc77de69ad3aae1754ac006ba21.tar.gz podman-c90b7400a8b9ffc77de69ad3aae1754ac006ba21.tar.bz2 podman-c90b7400a8b9ffc77de69ad3aae1754ac006ba21.zip |
Merge pull request #1116 from mheon/namespaces
Add Pod and Container namespaces
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/namespace_test.go | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/test/e2e/namespace_test.go b/test/e2e/namespace_test.go new file mode 100644 index 000000000..7cc6dc114 --- /dev/null +++ b/test/e2e/namespace_test.go @@ -0,0 +1,51 @@ +package integration + +import ( + "os" + + . "github.com/onsi/ginkgo" + . "github.com/onsi/gomega" +) + +var _ = Describe("Podman namespaces", func() { + var ( + tempdir string + err error + podmanTest PodmanTest + ) + + BeforeEach(func() { + tempdir, err = CreateTempDirInTempDir() + if err != nil { + os.Exit(1) + } + podmanTest = PodmanCreate(tempdir) + podmanTest.RestoreAllArtifacts() + }) + + AfterEach(func() { + podmanTest.Cleanup() + + }) + + It("podman namespace test", func() { + 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)) + }) +}) |