diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-03-08 12:27:20 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-08 12:27:20 -0800 |
commit | 008aaf7468bf6987a5b6c0b9eb63cf9a2972f7d1 (patch) | |
tree | b3c6fe100edd84e9a199c016498b871bfe94bff7 /test/e2e/push_test.go | |
parent | be6ad02049780027d0c2e1506d9c6bb56d8abd26 (diff) | |
parent | d5546008ab00d2a192eff4ad93e53e1f24e93e4c (diff) | |
download | podman-008aaf7468bf6987a5b6c0b9eb63cf9a2972f7d1.tar.gz podman-008aaf7468bf6987a5b6c0b9eb63cf9a2972f7d1.tar.bz2 podman-008aaf7468bf6987a5b6c0b9eb63cf9a2972f7d1.zip |
Merge pull request #2560 from baude/ginkgoimprovements
ginkgo status improvements
Diffstat (limited to 'test/e2e/push_test.go')
-rw-r--r-- | test/e2e/push_test.go | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/test/e2e/push_test.go b/test/e2e/push_test.go index fee117783..89df62d42 100644 --- a/test/e2e/push_test.go +++ b/test/e2e/push_test.go @@ -26,14 +26,15 @@ var _ = Describe("Podman push", func() { os.Exit(1) } podmanTest = PodmanTestCreate(tempdir) + podmanTest.Setup() podmanTest.RestoreAllArtifacts() }) AfterEach(func() { podmanTest.Cleanup() f := CurrentGinkgoTestDescription() - timedResult := fmt.Sprintf("Test: %s completed in %f seconds", f.TestText, f.Duration.Seconds()) - GinkgoWriter.Write([]byte(timedResult)) + processTestResult(f) + }) It("podman push to containers/storage", func() { @@ -62,6 +63,8 @@ var _ = Describe("Podman push", func() { if podmanTest.Host.Arch == "ppc64le" { Skip("No registry image for ppc64le") } + lock := GetPortLock("5000") + defer lock.Unlock() podmanTest.RestoreArtifact(registry) session := podmanTest.Podman([]string{"run", "-d", "--name", "registry", "-p", "5000:5000", registry, "/entrypoint.sh", "/etc/docker/registry/config.yml"}) session.WaitWithDefaultTimeout() @@ -100,6 +103,8 @@ var _ = Describe("Podman push", func() { }() } } + lock := GetPortLock("5000") + defer lock.Unlock() podmanTest.RestoreArtifact(registry) session := podmanTest.Podman([]string{"run", "--entrypoint", "htpasswd", registry, "-Bbn", "podmantest", "test"}) session.WaitWithDefaultTimeout() |