diff options
author | Matej Vasek <mvasek@redhat.com> | 2021-05-06 19:36:36 +0200 |
---|---|---|
committer | Matej Vasek <mvasek@redhat.com> | 2021-05-06 19:36:36 +0200 |
commit | 9da542a78bd025b1025c019ca27e1e9779323cc6 (patch) | |
tree | 56cb70e94540a2e6fcd61ac0e7ecc5dca996c110 /test/apiv2 | |
parent | c58feddb7bcd7f59a72e3dab3413f99e99296cce (diff) | |
download | podman-9da542a78bd025b1025c019ca27e1e9779323cc6.tar.gz podman-9da542a78bd025b1025c019ca27e1e9779323cc6.tar.bz2 podman-9da542a78bd025b1025c019ca27e1e9779323cc6.zip |
fix pre review request
Signed-off-by: Matej Vasek <mvasek@redhat.com>
Diffstat (limited to 'test/apiv2')
-rw-r--r-- | test/apiv2/10-images.at | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/test/apiv2/10-images.at b/test/apiv2/10-images.at index a6764371c..6f439ad85 100644 --- a/test/apiv2/10-images.at +++ b/test/apiv2/10-images.at @@ -140,17 +140,14 @@ t GET images/json?filters='{"reference":["test1"]}' 200 length=1 t DELETE libpod/images/test1:latest 200 -# Export more than one image -# FIXME FIXME FIXME, this doesn't work: -# not ok 64 [10-images] GET images/get?names=alpine,busybox : status -# expected: 200 -# actual: 500 -# expected: 200 -# not ok 65 [10-images] GET images/get?names=alpine,busybox : output - # expected: [POSIX tar archive] -# actual: {"cause":"no such image","message":"unable to find a name and tag match for busybox in repotags: no such image","response":500} -# -#t GET images/get?names=alpine,busybox 200 '[POSIX tar archive]' t GET "images/get?names=alpine" 200 '[POSIX tar archive]' +podman pull busybox +#t GET "images/get?names=alpine&names=busybox" 200 '[POSIX tar archive]' +#img_cnt=$(tar xf "$WORKDIR/curl.result.out" manifest.json -O | jq "length") +#is "$img_cnt" 2 "number of images in tar archive" +# TODO getting multiple images is not supported yet +# once it is supported replace the test below by the tests above +t GET "images/get?names=alpine&names=busybox" 501 + # vim: filetype=sh |