diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2022-07-08 08:32:16 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-08 08:32:16 +0000 |
commit | a2bcf833c98cb38eb28dc65a8768963d0b7344fc (patch) | |
tree | 738e826bce6a0aef0454f44dfb4cc1f3e8f06efc /test/e2e/manifest_test.go | |
parent | 720b3217fd02c635d4f3fd5a2ba0464ae1d8c8b2 (diff) | |
parent | 1161e8bd548d23ea9b8cf5ba12d89ded3f86a425 (diff) | |
download | podman-a2bcf833c98cb38eb28dc65a8768963d0b7344fc.tar.gz podman-a2bcf833c98cb38eb28dc65a8768963d0b7344fc.tar.bz2 podman-a2bcf833c98cb38eb28dc65a8768963d0b7344fc.zip |
Merge pull request #14845 from edsantiago/registry_sanitize
manifest_test: safer registry setup and teardown
Diffstat (limited to 'test/e2e/manifest_test.go')
-rw-r--r-- | test/e2e/manifest_test.go | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/test/e2e/manifest_test.go b/test/e2e/manifest_test.go index 2f8b47e25..280276973 100644 --- a/test/e2e/manifest_test.go +++ b/test/e2e/manifest_test.go @@ -17,6 +17,7 @@ var _ = Describe("Podman manifest", func() { tempdir string err error podmanTest *PodmanTestIntegration + registry *podmanRegistry.Registry ) const ( @@ -39,10 +40,16 @@ var _ = Describe("Podman manifest", func() { }) AfterEach(func() { + // if auth test fails, it will leave a registry running + if registry != nil { + _ = registry.Stop() + } + // Also from auth test; don't propagate it to other tests + os.Unsetenv("PODMAN") + podmanTest.Cleanup() f := CurrentGinkgoTestDescription() processTestResult(f) - }) It("create w/o image", func() { session := podmanTest.Podman([]string{"manifest", "create", "foo"}) @@ -297,7 +304,15 @@ var _ = Describe("Podman manifest", func() { registryOptions := &podmanRegistry.Options{ Image: "docker-archive:" + imageTarPath(REGISTRY_IMAGE), } - registry, err := podmanRegistry.StartWithOptions(registryOptions) + + // registry script invokes $PODMAN; make sure we define that + // so it can use our same networking options. + opts := strings.Join(podmanTest.MakeOptions(nil, false, false), " ") + if IsRemote() { + opts = strings.Join(getRemoteOptions(podmanTest, nil), " ") + } + os.Setenv("PODMAN", podmanTest.PodmanBinary+" "+opts) + registry, err = podmanRegistry.StartWithOptions(registryOptions) Expect(err).To(BeNil()) session := podmanTest.Podman([]string{"manifest", "create", "foo"}) @@ -330,6 +345,7 @@ var _ = Describe("Podman manifest", func() { err = registry.Stop() Expect(err).To(BeNil()) + registry = nil }) It("push with error", func() { |