2023-09-07 13:06:21 -05:00
|
|
|
# Note: Intended to be run as "make run-blackbox-ci"
|
2023-08-30 14:24:28 -05:00
|
|
|
# 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) ] &>/dev/null; then
|
|
|
|
echo "you need to install jq as a prerequisite to running the tests" >&3
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
2023-03-10 13:37:29 -05:00
|
|
|
|
|
|
|
function setup() {
|
|
|
|
# Verify prerequisites are available
|
2023-08-30 14:24:28 -05:00
|
|
|
if ! $(verify_prerequisites); then
|
2023-03-10 13:37:29 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Download test data to folder common for the entire suite, not just this file
|
2023-03-20 11:14:17 -05:00
|
|
|
skopeo --insecure-policy copy --format=oci docker://ghcr.io/project-zot/golang:1.20 oci:${TEST_DATA_DIR}/golang:1.20
|
2023-03-10 13:37:29 -05:00
|
|
|
|
|
|
|
# Setup zot server
|
|
|
|
ZOT_ROOT_DIR=${BATS_FILE_TMPDIR}/zot
|
|
|
|
echo ${ZOT_ROOT_DIR}
|
|
|
|
ZOT_LOG_FILE=${ZOT_ROOT_DIR}/zot-log.json
|
|
|
|
ZOT_CONFIG_FILE=${BATS_FILE_TMPDIR}/zot_config.json
|
|
|
|
mkdir -p ${ZOT_ROOT_DIR}
|
|
|
|
touch ${ZOT_LOG_FILE}
|
2023-11-15 13:44:31 -05:00
|
|
|
zot_port=$(get_free_port)
|
|
|
|
echo ${zot_port} > ${BATS_FILE_TMPDIR}/zot.port
|
2023-03-10 13:37:29 -05:00
|
|
|
cat >${ZOT_CONFIG_FILE} <<EOF
|
|
|
|
{
|
2024-02-20 06:27:21 -05:00
|
|
|
"distSpecVersion": "1.1.0",
|
2023-03-10 13:37:29 -05:00
|
|
|
"storage": {
|
|
|
|
"rootDirectory": "${ZOT_ROOT_DIR}"
|
|
|
|
},
|
|
|
|
"http": {
|
|
|
|
"address": "0.0.0.0",
|
2023-11-15 13:44:31 -05:00
|
|
|
"port": "${zot_port}"
|
2023-03-10 13:37:29 -05:00
|
|
|
},
|
|
|
|
"log": {
|
|
|
|
"level": "debug",
|
|
|
|
"output": "${ZOT_LOG_FILE}"
|
|
|
|
},
|
|
|
|
"extensions": {
|
|
|
|
"search": {
|
|
|
|
"enable": true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
|
|
|
# Add artifact contents to files
|
|
|
|
ARTIFACT_BLOBS_DIR=${BATS_FILE_TMPDIR}/artifact-blobs
|
|
|
|
mkdir -p ${ARTIFACT_BLOBS_DIR}
|
|
|
|
|
|
|
|
IMAGE_MANIFEST_REFERRER=${ARTIFACT_BLOBS_DIR}/image-manifest-ref-blob
|
|
|
|
echo IMAGE_MANIFEST_REFERRER=${IMAGE_MANIFEST_REFERRER}
|
|
|
|
touch ${IMAGE_MANIFEST_REFERRER}
|
|
|
|
cat >${IMAGE_MANIFEST_REFERRER} <<EOF
|
|
|
|
This artifact is represented as an ispec image manifest, this is the layer inside the manifest.
|
|
|
|
EOF
|
|
|
|
|
2023-08-30 14:24:28 -05:00
|
|
|
zot_serve ${ZOT_PATH} ${ZOT_CONFIG_FILE}
|
2023-11-15 13:44:31 -05:00
|
|
|
wait_zot_reachable ${zot_port}
|
2023-03-10 13:37:29 -05:00
|
|
|
|
|
|
|
run skopeo --insecure-policy copy --dest-tls-verify=false \
|
2023-03-20 11:14:17 -05:00
|
|
|
oci:${TEST_DATA_DIR}/golang:1.20 \
|
2023-11-15 13:44:31 -05:00
|
|
|
docker://127.0.0.1:${zot_port}/golang:1.20
|
2023-03-10 13:37:29 -05:00
|
|
|
[ "$status" -eq 0 ]
|
2023-11-15 13:44:31 -05:00
|
|
|
run curl http://127.0.0.1:${zot_port}/v2/_catalog
|
2023-03-10 13:37:29 -05:00
|
|
|
[ "$status" -eq 0 ]
|
2023-03-20 11:14:17 -05:00
|
|
|
[ $(echo "${lines[-1]}" | jq '.repositories[]') = '"golang"' ]
|
2023-03-10 13:37:29 -05:00
|
|
|
|
2023-11-15 13:44:31 -05:00
|
|
|
run oras attach --plain-http --image-spec v1.1-image --artifact-type image.artifact/type 127.0.0.1:${zot_port}/golang:1.20 ${IMAGE_MANIFEST_REFERRER}
|
2023-03-10 13:37:29 -05:00
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
2023-11-15 13:44:31 -05:00
|
|
|
MANIFEST_DIGEST=$(skopeo inspect --tls-verify=false docker://localhost:${zot_port}/golang:1.20 | jq -r '.Digest')
|
2023-03-10 13:37:29 -05:00
|
|
|
echo ${MANIFEST_DIGEST}
|
|
|
|
|
2023-11-15 13:44:31 -05:00
|
|
|
curl -X GET http://127.0.0.1:${zot_port}/v2/golang/referrers/${MANIFEST_DIGEST}?artifactType=image.artifact/type
|
2023-03-10 13:37:29 -05:00
|
|
|
}
|
|
|
|
|
2023-09-07 13:06:21 -05:00
|
|
|
function teardown() {
|
|
|
|
# conditionally printing on failure is possible from teardown but not from from teardown_file
|
|
|
|
cat ${BATS_FILE_TMPDIR}/zot/zot-log.json
|
|
|
|
}
|
|
|
|
|
2023-08-30 14:24:28 -05:00
|
|
|
function teardown_file() {
|
|
|
|
zot_stop_all
|
2023-03-10 13:37:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
@test "add referrers, one artifact and one image" {
|
2023-11-15 13:44:31 -05:00
|
|
|
zot_port=`cat ${BATS_FILE_TMPDIR}/zot.port`
|
2023-03-10 13:37:29 -05:00
|
|
|
# Check referrers API using the normal REST endpoint
|
2023-11-15 13:44:31 -05:00
|
|
|
run curl -X GET http://127.0.0.1:${zot_port}/v2/golang/referrers/${MANIFEST_DIGEST}?artifactType=image.artifact/type
|
2023-03-10 13:37:29 -05:00
|
|
|
[ "$status" -eq 0 ]
|
2023-07-13 11:31:39 -05:00
|
|
|
[ $(echo "${lines[-1]}" | jq '.manifests[].artifactType') = '"image.artifact/type"' ]
|
2023-03-10 13:37:29 -05:00
|
|
|
|
|
|
|
# Check referrers API using the GQL endpoint
|
2023-07-13 11:31:39 -05:00
|
|
|
REFERRER_QUERY_DATA="{ \"query\": \"{ Referrers(repo:\\\"golang\\\", digest:\\\"${MANIFEST_DIGEST}\\\", type:[\\\"image.artifact/type\\\"]) { MediaType ArtifactType Digest Size} }\"}"
|
2023-11-15 13:44:31 -05:00
|
|
|
run curl -X POST -H "Content-Type: application/json" --data "${REFERRER_QUERY_DATA}" http://localhost:${zot_port}/v2/_zot/ext/search
|
2023-03-10 13:37:29 -05:00
|
|
|
[ "$status" -eq 0 ]
|
2023-07-13 11:31:39 -05:00
|
|
|
[ $(echo "${lines[-1]}" | jq '.data.Referrers[].ArtifactType') = '"image.artifact/type"' ]
|
2023-03-10 13:37:29 -05:00
|
|
|
}
|