diff options
author | Aditya R <arajan@redhat.com> | 2022-07-29 23:04:45 +0530 |
---|---|---|
committer | Aditya R <arajan@redhat.com> | 2022-08-01 21:47:04 +0530 |
commit | 5ab98f2c07acc5650c6a7adcf295657a99875c15 (patch) | |
tree | 9ea3654d4869af87c42bb88d253a1f508c57e21a /test/e2e | |
parent | 30cc6dbf085e56c3d67341962e79efacdab3e524 (diff) | |
download | podman-5ab98f2c07acc5650c6a7adcf295657a99875c15.tar.gz podman-5ab98f2c07acc5650c6a7adcf295657a99875c15.tar.bz2 podman-5ab98f2c07acc5650c6a7adcf295657a99875c15.zip |
test: verify manifest inspect must contain OCI annotations
Signed-off-by: Aditya R <arajan@redhat.com>
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/manifest_test.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/e2e/manifest_test.go b/test/e2e/manifest_test.go index 893210a1f..e80772aed 100644 --- a/test/e2e/manifest_test.go +++ b/test/e2e/manifest_test.go @@ -173,13 +173,15 @@ var _ = Describe("Podman manifest", func() { session = podmanTest.Podman([]string{"manifest", "add", "foo", imageListInstance}) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) - session = podmanTest.Podman([]string{"manifest", "annotate", "--arch", "bar", "foo", imageListARM64InstanceDigest}) + session = podmanTest.Podman([]string{"manifest", "annotate", "--annotation", "hello=world", "--arch", "bar", "foo", imageListARM64InstanceDigest}) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) session = podmanTest.Podman([]string{"manifest", "inspect", "foo"}) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) Expect(session.OutputToString()).To(ContainSubstring(`"architecture": "bar"`)) + // Check added annotation + Expect(session.OutputToString()).To(ContainSubstring(`"hello": "world"`)) }) It("remove digest", func() { |