mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
4e5db84cb1
BREAKING CHANGE: the dist spec version in the config files needs to be bumped to 1.1.0 in order for the config verification to pass without warnings. Also fix 1 dependabot alert for helm. Signed-off-by: Andrei Aaron <aaaron@luxoft.com>
361 lines
14 KiB
Bash
361 lines
14 KiB
Bash
# Note: Intended to be run as "make run-blackbox-tests" or "make run-blackbox-ci"
|
|
# Makefile target installs & checks all necessary tooling
|
|
# Extra tools that are not covered in Makefile target needs to be added in verify_prerequisites()
|
|
|
|
load helpers_zot
|
|
|
|
function verify_prerequisites {
|
|
if [ ! $(command -v curl) ]; then
|
|
echo "you need to install curl as a prerequisite to running the tests" >&3
|
|
return 1
|
|
fi
|
|
|
|
if [ ! $(command -v jq) ]; then
|
|
echo "you need to install jq as a prerequisite to running the tests" >&3
|
|
return 1
|
|
fi
|
|
|
|
return 0
|
|
}
|
|
|
|
function setup_file() {
|
|
# Verify prerequisites are available
|
|
if ! $(verify_prerequisites); then
|
|
exit 1
|
|
fi
|
|
# Download test data to folder common for the entire suite, not just this file
|
|
skopeo --insecure-policy copy --format=oci docker://ghcr.io/project-zot/golang:1.20 oci:${TEST_DATA_DIR}/golang:1.20
|
|
# Setup zot server
|
|
local zot_root_dir=${BATS_FILE_TMPDIR}/zot
|
|
local zot_config_file=${BATS_FILE_TMPDIR}/zot_config.json
|
|
local oci_data_dir=${BATS_FILE_TMPDIR}/oci
|
|
mkdir -p ${zot_root_dir}
|
|
mkdir -p ${oci_data_dir}
|
|
zot_port=$(get_free_port)
|
|
echo ${zot_port} > ${BATS_FILE_TMPDIR}/zot.port
|
|
cat > ${zot_config_file}<<EOF
|
|
{
|
|
"distSpecVersion": "1.1.0",
|
|
"storage": {
|
|
"rootDirectory": "${zot_root_dir}"
|
|
},
|
|
"http": {
|
|
"address": "0.0.0.0",
|
|
"port": "${zot_port}"
|
|
},
|
|
"log": {
|
|
"level": "debug",
|
|
"output": "${BATS_FILE_TMPDIR}/zot.log"
|
|
}
|
|
}
|
|
EOF
|
|
git -C ${BATS_FILE_TMPDIR} clone https://github.com/project-zot/helm-charts.git
|
|
zot_serve ${ZOT_PATH} ${zot_config_file}
|
|
wait_zot_reachable ${zot_port}
|
|
}
|
|
|
|
function teardown() {
|
|
# conditionally printing on failure is possible from teardown but not from from teardown_file
|
|
cat ${BATS_FILE_TMPDIR}/zot.log
|
|
}
|
|
|
|
function teardown_file() {
|
|
zot_stop_all
|
|
}
|
|
|
|
@test "push image" {
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
run skopeo --insecure-policy copy --dest-tls-verify=false \
|
|
oci:${TEST_DATA_DIR}/golang:1.20 \
|
|
docker://127.0.0.1:${zot_port}/golang:1.20
|
|
[ "$status" -eq 0 ]
|
|
run curl http://127.0.0.1:${zot_port}/v2/_catalog
|
|
[ "$status" -eq 0 ]
|
|
[ $(echo "${lines[-1]}" | jq '.repositories[]') = '"golang"' ]
|
|
run curl http://127.0.0.1:${zot_port}/v2/golang/tags/list
|
|
[ "$status" -eq 0 ]
|
|
[ $(echo "${lines[-1]}" | jq '.tags[]') = '"1.20"' ]
|
|
}
|
|
|
|
@test "pull image" {
|
|
local oci_data_dir=${BATS_FILE_TMPDIR}/oci
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
run skopeo --insecure-policy copy --src-tls-verify=false \
|
|
docker://127.0.0.1:${zot_port}/golang:1.20 \
|
|
oci:${oci_data_dir}/golang:1.20
|
|
[ "$status" -eq 0 ]
|
|
run cat ${BATS_FILE_TMPDIR}/oci/golang/index.json
|
|
[ "$status" -eq 0 ]
|
|
[ $(echo "${lines[-1]}" | jq '.manifests[].annotations."org.opencontainers.image.ref.name"') = '"1.20"' ]
|
|
}
|
|
|
|
@test "push image index" {
|
|
# --multi-arch below pushes an image index (containing many images) instead
|
|
# of an image manifest (single image)
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
run skopeo --insecure-policy copy --format=oci --dest-tls-verify=false --multi-arch=all \
|
|
docker://public.ecr.aws/docker/library/busybox:latest \
|
|
docker://127.0.0.1:${zot_port}/busybox:latest
|
|
[ "$status" -eq 0 ]
|
|
run curl http://127.0.0.1:${zot_port}/v2/_catalog
|
|
[ "$status" -eq 0 ]
|
|
[ $(echo "${lines[-1]}" | jq '.repositories[0]') = '"busybox"' ]
|
|
run curl http://127.0.0.1:${zot_port}/v2/busybox/tags/list
|
|
[ "$status" -eq 0 ]
|
|
[ $(echo "${lines[-1]}" | jq '.tags[]') = '"latest"' ]
|
|
}
|
|
|
|
@test "pull image index" {
|
|
local oci_data_dir=${BATS_FILE_TMPDIR}/oci
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
run skopeo --insecure-policy copy --src-tls-verify=false --multi-arch=all \
|
|
docker://127.0.0.1:${zot_port}/busybox:latest \
|
|
oci:${oci_data_dir}/busybox:latest
|
|
[ "$status" -eq 0 ]
|
|
run cat ${BATS_FILE_TMPDIR}/oci/busybox/index.json
|
|
[ "$status" -eq 0 ]
|
|
[ $(echo "${lines[-1]}" | jq '.manifests[].annotations."org.opencontainers.image.ref.name"') = '"latest"' ]
|
|
run skopeo --insecure-policy --override-arch=arm64 --override-os=linux copy --src-tls-verify=false --multi-arch=all \
|
|
docker://127.0.0.1:${zot_port}/busybox:latest \
|
|
oci:${oci_data_dir}/busybox:latest
|
|
[ "$status" -eq 0 ]
|
|
run cat ${BATS_FILE_TMPDIR}/oci/busybox/index.json
|
|
[ "$status" -eq 0 ]
|
|
[ $(echo "${lines[-1]}" | jq '.manifests[].annotations."org.opencontainers.image.ref.name"') = '"latest"' ]
|
|
run curl -X DELETE http://127.0.0.1:${zot_port}/v2/busybox/manifests/latest
|
|
[ "$status" -eq 0 ]
|
|
}
|
|
|
|
@test "push oras artifact" {
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
echo "{\"name\":\"foo\",\"value\":\"bar\"}" > config.json
|
|
echo "hello world" > artifact.txt
|
|
run oras push --plain-http 127.0.0.1:${zot_port}/hello-artifact:v2 \
|
|
--config config.json:application/vnd.acme.rocket.config.v1+json artifact.txt:text/plain -d -v
|
|
[ "$status" -eq 0 ]
|
|
rm -f artifact.txt
|
|
rm -f config.json
|
|
}
|
|
|
|
@test "pull oras artifact" {
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
run oras pull --plain-http 127.0.0.1:${zot_port}/hello-artifact:v2 -d -v
|
|
[ "$status" -eq 0 ]
|
|
grep -q "hello world" artifact.txt
|
|
rm -f artifact.txt
|
|
}
|
|
|
|
@test "attach oras artifacts" {
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
# attach signature
|
|
echo "{\"artifact\": \"\", \"signature\": \"pat hancock\"}" > ${BATS_FILE_TMPDIR}/signature.json
|
|
run oras attach --plain-http 127.0.0.1:${zot_port}/golang:1.20 --image-spec v1.1-image --artifact-type 'signature/example' ${BATS_FILE_TMPDIR}/signature.json:application/json
|
|
[ "$status" -eq 0 ]
|
|
# attach sbom
|
|
echo "{\"version\": \"0.0.0.0\", \"artifact\": \"'127.0.0.1:${zot_port}/golang:1.20'\", \"contents\": \"good\"}" > ${BATS_FILE_TMPDIR}/sbom.json
|
|
run oras attach --plain-http 127.0.0.1:${zot_port}/golang:1.20 --image-spec v1.1-image --artifact-type 'sbom/example' ${BATS_FILE_TMPDIR}/sbom.json:application/json
|
|
[ "$status" -eq 0 ]
|
|
}
|
|
|
|
@test "discover oras artifacts" {
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
run oras discover --plain-http -o json 127.0.0.1:${zot_port}/golang:1.20
|
|
[ "$status" -eq 0 ]
|
|
[ $(echo "$output" | jq -r ".manifests | length") -eq 2 ]
|
|
}
|
|
|
|
@test "add and list tags using oras" {
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
run skopeo --insecure-policy copy --dest-tls-verify=false \
|
|
oci:${TEST_DATA_DIR}/golang:1.20 \
|
|
docker://127.0.0.1:${zot_port}/oras-tags:1.20
|
|
[ "$status" -eq 0 ]
|
|
run oras tag --plain-http 127.0.0.1:${zot_port}/oras-tags:1.20 1 new latest
|
|
[ "$status" -eq 0 ]
|
|
run oras repo tags --plain-http 127.0.0.1:${zot_port}/oras-tags
|
|
[ "$status" -eq 0 ]
|
|
echo "$output"
|
|
[ $(echo "$output" | wc -l) -eq 4 ]
|
|
[ "${lines[-1]}" == "new" ]
|
|
[ "${lines[-2]}" == "latest" ]
|
|
[ "${lines[-3]}" == "1.20" ]
|
|
[ "${lines[-4]}" == "1" ]
|
|
run oras repo tags --plain-http --last new 127.0.0.1:${zot_port}/oras-tags
|
|
[ "$status" -eq 0 ]
|
|
echo "$output"
|
|
[ -z $output ]
|
|
run oras repo tags --plain-http --last latest 127.0.0.1:${zot_port}/oras-tags
|
|
[ "$status" -eq 0 ]
|
|
echo "$output"
|
|
[ $(echo "$output" | wc -l) -eq 1 ]
|
|
[ "${lines[-1]}" == "new" ]
|
|
run oras repo tags --plain-http --last "1.20" 127.0.0.1:${zot_port}/oras-tags
|
|
[ "$status" -eq 0 ]
|
|
echo "$output"
|
|
[ $(echo "$output" | wc -l) -eq 2 ]
|
|
[ "${lines[-2]}" == "latest" ]
|
|
[ "${lines[-1]}" == "new" ]
|
|
run oras repo tags --plain-http --last "1" 127.0.0.1:${zot_port}/oras-tags
|
|
[ "$status" -eq 0 ]
|
|
echo "$output"
|
|
[ $(echo "$output" | wc -l) -eq 3 ]
|
|
[ "${lines[-3]}" == "1.20" ]
|
|
[ "${lines[-2]}" == "latest" ]
|
|
[ "${lines[-1]}" == "new" ]
|
|
}
|
|
|
|
@test "push helm chart" {
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
run helm package ${BATS_FILE_TMPDIR}/helm-charts/charts/zot -d ${BATS_FILE_TMPDIR}
|
|
[ "$status" -eq 0 ]
|
|
local chart_version=$(awk '/version/{printf $2}' ${BATS_FILE_TMPDIR}/helm-charts/charts/zot/Chart.yaml)
|
|
run helm push ${BATS_FILE_TMPDIR}/zot-${chart_version}.tgz oci://localhost:${zot_port}/zot-chart
|
|
[ "$status" -eq 0 ]
|
|
}
|
|
|
|
@test "pull helm chart" {
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
local chart_version=$(awk '/version/{printf $2}' ${BATS_FILE_TMPDIR}/helm-charts/charts/zot/Chart.yaml)
|
|
run helm pull oci://localhost:${zot_port}/zot-chart/zot --version ${chart_version} -d ${BATS_FILE_TMPDIR}
|
|
[ "$status" -eq 0 ]
|
|
}
|
|
|
|
@test "push image with regclient" {
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
run regctl registry set localhost:${zot_port} --tls disabled
|
|
[ "$status" -eq 0 ]
|
|
run regctl image copy ocidir://${TEST_DATA_DIR}/golang:1.20 localhost:${zot_port}/test-regclient
|
|
[ "$status" -eq 0 ]
|
|
}
|
|
|
|
@test "pull image with regclient" {
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
run regctl image copy localhost:${zot_port}/test-regclient ocidir://${TEST_DATA_DIR}/golang:1.20
|
|
[ "$status" -eq 0 ]
|
|
}
|
|
|
|
@test "list repositories with regclient" {
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
run regctl repo ls localhost:${zot_port}
|
|
[ "$status" -eq 0 ]
|
|
|
|
found=0
|
|
for i in "${lines[@]}"
|
|
do
|
|
|
|
if [ "$i" = 'test-regclient' ]; then
|
|
found=1
|
|
fi
|
|
done
|
|
[ "$found" -eq 1 ]
|
|
}
|
|
|
|
@test "list image tags with regclient" {
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
run regctl tag ls localhost:${zot_port}/test-regclient
|
|
[ "$status" -eq 0 ]
|
|
|
|
found=0
|
|
for i in "${lines[@]}"
|
|
do
|
|
|
|
if [ "$i" = 'latest' ]; then
|
|
found=1
|
|
fi
|
|
done
|
|
[ "$found" -eq 1 ]
|
|
}
|
|
|
|
@test "push manifest with regclient" {
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
manifest=$(regctl manifest get localhost:${zot_port}/test-regclient --format=raw-body)
|
|
run regctl manifest put localhost:${zot_port}/test-regclient:1.0.0 --format oci --content-type application/vnd.oci.image.manifest.v1+json --format oci <<EOF
|
|
$manifest
|
|
EOF
|
|
[ "$status" -eq 0 ]
|
|
}
|
|
|
|
@test "pull manifest with regclient" {
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
run regctl manifest get localhost:${zot_port}/test-regclient
|
|
[ "$status" -eq 0 ]
|
|
}
|
|
|
|
@test "pull manifest with docker client" {
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
run docker pull localhost:${zot_port}/test-regclient
|
|
[ "$status" -eq 0 ]
|
|
}
|
|
|
|
@test "pull manifest with crictl" {
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
run crictl pull localhost:${zot_port}/test-regclient
|
|
[ "$status" -eq 0 ]
|
|
}
|
|
|
|
@test "push OCI artifact with regclient" {
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
run regctl artifact put localhost:${zot_port}/artifact:demo <<EOF
|
|
this is an artifact
|
|
EOF
|
|
[ "$status" -eq 0 ]
|
|
}
|
|
|
|
@test "pull OCI artifact with regclient" {
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
run regctl manifest get localhost:${zot_port}/artifact:demo
|
|
[ "$status" -eq 0 ]
|
|
run regctl artifact get localhost:${zot_port}/artifact:demo
|
|
[ "$status" -eq 0 ]
|
|
[ "${lines[-1]}" == "this is an artifact" ]
|
|
}
|
|
|
|
@test "push OCI artifact references with regclient" {
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
run regctl artifact put localhost:${zot_port}/manifest-ref:demo <<EOF
|
|
test artifact
|
|
EOF
|
|
[ "$status" -eq 0 ]
|
|
run regctl artifact list localhost:${zot_port}/manifest-ref:demo --format raw-body
|
|
[ "$status" -eq 0 ]
|
|
[ $(echo "${lines[-1]}" | jq '.manifests | length') -eq 0 ]
|
|
run regctl artifact put --annotation demo=true --annotation format=oci --artifact-type "application/vnd.example.icecream.v1" --subject localhost:${zot_port}/manifest-ref:demo << EOF
|
|
test reference
|
|
EOF
|
|
[ "$status" -eq 0 ]
|
|
# with artifact media-type
|
|
run regctl artifact put localhost:${zot_port}/artifact-ref:demo <<EOF
|
|
test artifact
|
|
EOF
|
|
[ "$status" -eq 0 ]
|
|
run regctl artifact list localhost:${zot_port}/artifact-ref:demo --format raw-body
|
|
[ "$status" -eq 0 ]
|
|
[ $(echo "${lines[-1]}" | jq '.manifests | length') -eq 0 ]
|
|
run regctl artifact put --annotation demo=true --annotation format=oci --artifact-type "application/vnd.example.icecream.v1" --subject localhost:${zot_port}/artifact-ref:demo << EOF
|
|
test reference
|
|
EOF
|
|
[ "$status" -eq 0 ]
|
|
}
|
|
|
|
@test "pull OCI artifact references with regclient" {
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
|
run regctl artifact list localhost:${zot_port}/manifest-ref:demo --format raw-body
|
|
[ "$status" -eq 0 ]
|
|
[ $(echo "${lines[-1]}" | jq '.manifests | length') -eq 1 ]
|
|
run regctl artifact list --filter-artifact-type "application/vnd.example.icecream.v1" localhost:${zot_port}/manifest-ref:demo --format raw-body
|
|
[ "$status" -eq 0 ]
|
|
[ $(echo "${lines[-1]}" | jq '.manifests | length') -eq 1 ]
|
|
run regctl artifact list --filter-artifact-type "application/invalid" localhost:${zot_port}/manifest-ref:demo --format raw-body
|
|
[ "$status" -eq 0 ]
|
|
[ $(echo "${lines[-1]}" | jq '.manifests | length') -eq 0 ]
|
|
# with artifact media-type
|
|
run regctl artifact list localhost:${zot_port}/artifact-ref:demo --format raw-body
|
|
[ "$status" -eq 0 ]
|
|
[ $(echo "${lines[-1]}" | jq '.manifests | length') -eq 1 ]
|
|
run regctl artifact list --filter-artifact-type "application/vnd.example.icecream.v1" localhost:${zot_port}/artifact-ref:demo --format raw-body
|
|
[ "$status" -eq 0 ]
|
|
[ $(echo "${lines[-1]}" | jq '.manifests | length') -eq 1 ]
|
|
run regctl artifact list --filter-artifact-type "application/invalid" localhost:${zot_port}/artifact-ref:demo --format raw-body
|
|
[ "$status" -eq 0 ]
|
|
[ $(echo "${lines[-1]}" | jq '.manifests | length') -eq 0 ]
|
|
}
|