diff options
author | Matej Vasek <mvasek@redhat.com> | 2021-02-10 00:47:01 +0100 |
---|---|---|
committer | Matej Vasek <mvasek@redhat.com> | 2021-02-10 02:03:28 +0100 |
commit | f4ece018b468e97e693d94628d3aa82acbcb6dc4 (patch) | |
tree | 583258bb8cfc289666c24399537fec5615a5e707 /test/apiv2 | |
parent | 2d829aeb1fe0dc19c45e796141ab78ff192b5dbb (diff) | |
download | podman-f4ece018b468e97e693d94628d3aa82acbcb6dc4.tar.gz podman-f4ece018b468e97e693d94628d3aa82acbcb6dc4.tar.bz2 podman-f4ece018b468e97e693d94628d3aa82acbcb6dc4.zip |
Docker APIv2 push sends digest in response body
Signed-off-by: Matej Vasek <mvasek@redhat.com>
Diffstat (limited to 'test/apiv2')
-rw-r--r-- | test/apiv2/12-imagesMore.at | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/apiv2/12-imagesMore.at b/test/apiv2/12-imagesMore.at index fe6a271ce..4f3ddf925 100644 --- a/test/apiv2/12-imagesMore.at +++ b/test/apiv2/12-imagesMore.at @@ -3,6 +3,9 @@ # Tests for more image-related endpoints # +red='\e[31m' +nc='\e[0m' + podman pull -q $IMAGE t GET libpod/images/json 200 \ @@ -26,6 +29,17 @@ t GET libpod/images/$IMAGE/json 200 \ podman run -d --name registry -p 5000:5000 quay.io/libpod/registry:2.6 /entrypoint.sh /etc/docker/registry/config.yml wait_for_port localhost 5000 +# Push to local registry and check output +while read -r LINE +do + if echo "${LINE}" | jq --exit-status 'select( .status != null) | select ( .status | contains("digest: sha256:"))' &>/dev/null; then + GOT_DIGEST="1" + fi +done < <(curl -sL "http://$HOST:$PORT/images/localhost:5000/myrepo/push?tlsVerify=false&tag=mytag" -XPOST) +if [ -z "${GOT_DIGEST}" ] ; then + echo -e "${red}not ok: did not found digest in output${nc}" 1>&2; +fi + # Push to local registry t POST "images/localhost:5000/myrepo/push?tlsVerify=false&tag=mytag" '' 200 @@ -43,3 +57,7 @@ t DELETE libpod/images/$IMAGE 200 \ .ExitCode=0 t DELETE libpod/images/quay.io/libpod/registry:2.6 200 \ .ExitCode=0 + +if [ -z "${GOT_DIGEST}" ] ; then + exit 1; +fi |