diff options
author | umohnani8 <umohnani@redhat.com> | 2017-12-12 13:33:10 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2017-12-14 18:37:17 +0000 |
commit | 1e7d880b561318aa2ad89d7583addad1904e5a36 (patch) | |
tree | 7773e3d409c410ae9bb3a210e106dddc28e302b5 /test | |
parent | bf0d35904752c2ac5c607c4a82237f074c862744 (diff) | |
download | podman-1e7d880b561318aa2ad89d7583addad1904e5a36.tar.gz podman-1e7d880b561318aa2ad89d7583addad1904e5a36.tar.bz2 podman-1e7d880b561318aa2ad89d7583addad1904e5a36.zip |
Add manifest type conversion to kpod push
User can select from 3 manifest types: oci, v2s1, or v2s2
e.g kpod push --format v2s2 alpine dir:my-directory
Added "compress" flag to enable compression when true
Signed-off-by: umohnani8 <umohnani@redhat.com>
Closes: #126
Approved by: rhatdan
Diffstat (limited to 'test')
-rw-r--r-- | test/kpod_push.bats | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/kpod_push.bats b/test/kpod_push.bats index d9b1811cc..dee29a64c 100644 --- a/test/kpod_push.bats +++ b/test/kpod_push.bats @@ -84,3 +84,19 @@ function setup() { run ${KPOD_BINARY} $KPOD_OPTIONS rmi "$ALPINE" echo "$output" } + +@test "push with manifest type conversion" { + run bash -c "${KPOD_BINARY} $KPOD_OPTIONS push --format oci "${BB}" dir:my-dir" + echo "$output" + [ "$status" -eq 0 ] + run bash -c "grep "application/vnd.oci.image.config.v1+json" my-dir/manifest.json" + echo "$output" + [ "$status" -eq 0 ] + run bash -c "${KPOD_BINARY} $KPOD_OPTIONS push --compress --format v2s2 "${BB}" dir:my-dir" + echo "$output" + [ "$status" -eq 0 ] + run bash -c "grep "application/vnd.docker.distribution.manifest.v2+json" my-dir/manifest.json" + echo "$output" + [ "$status" -eq 0 ] + rm -rf my-dir +} |