diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-08-11 19:53:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-11 19:53:17 +0000 |
commit | 57387da27e43e7bd7973d91975b10a66aff134e8 (patch) | |
tree | 5b70ebe1aeae69f1542820f191f7fc9488a50663 /test | |
parent | 1798cccf3ea3145a82c0948437758a865d7c4c94 (diff) | |
parent | a4efd401cd87d98dced4f4eda41a8a1b86e72379 (diff) | |
download | podman-57387da27e43e7bd7973d91975b10a66aff134e8.tar.gz podman-57387da27e43e7bd7973d91975b10a66aff134e8.tar.bz2 podman-57387da27e43e7bd7973d91975b10a66aff134e8.zip |
Merge pull request #15285 from YoitoFes/fix-15210
remote manifest push: show copy progress
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/manifest_test.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/e2e/manifest_test.go b/test/e2e/manifest_test.go index e80772aed..ee954a1a4 100644 --- a/test/e2e/manifest_test.go +++ b/test/e2e/manifest_test.go @@ -379,6 +379,11 @@ var _ = Describe("Podman manifest", func() { push = podmanTest.Podman([]string{"manifest", "push", "--tls-verify=false", "--creds=" + registry.User + ":" + registry.Password, "foo", "localhost:" + registry.Port + "/credstest"}) push.WaitWithDefaultTimeout() Expect(push).Should(Exit(0)) + output := push.ErrorToString() + Expect(output).To(ContainSubstring("Copying blob ")) + Expect(output).To(ContainSubstring("Copying config ")) + Expect(output).To(ContainSubstring("Writing manifest to image destination")) + Expect(output).To(ContainSubstring("Storing signatures")) push = podmanTest.Podman([]string{"manifest", "push", "--tls-verify=false", "--creds=podmantest:wrongpasswd", "foo", "localhost:" + registry.Port + "/credstest"}) push.WaitWithDefaultTimeout() |