2022-04-27 01:00:20 -05:00
|
|
|
load helpers_scrub
|
|
|
|
|
|
|
|
function setup_file(){
|
2023-02-17 16:54:49 -05:00
|
|
|
skopeo --insecure-policy copy --format=oci docker://ghcr.io/project-zot/golang:1.20 oci:${TEST_DATA_DIR}/golang:1.20
|
2022-04-27 01:00:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
function setup() {
|
|
|
|
|
|
|
|
# verify prerequisites are available
|
|
|
|
if ! verify_prerequisites; then
|
|
|
|
echo "oh noooooo"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# 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}
|
|
|
|
cat >${ZOT_CONFIG_FILE} <<EOF
|
|
|
|
{
|
2023-01-31 12:35:33 -05:00
|
|
|
"distSpecVersion": "1.1.0",
|
2022-04-27 01:00:20 -05:00
|
|
|
"storage": {
|
2023-04-07 11:49:24 -05:00
|
|
|
"rootDirectory": "${ZOT_ROOT_DIR}",
|
|
|
|
"dedupe": false
|
2022-04-27 01:00:20 -05:00
|
|
|
},
|
|
|
|
"http": {
|
|
|
|
"address": "0.0.0.0",
|
2022-07-14 10:13:46 -05:00
|
|
|
"port": "8080"
|
2022-04-27 01:00:20 -05:00
|
|
|
},
|
|
|
|
"log": {
|
|
|
|
"level": "debug",
|
|
|
|
"output": "${ZOT_LOG_FILE}"
|
|
|
|
},
|
|
|
|
"extensions": {
|
|
|
|
"scrub": {
|
2022-09-27 20:06:50 -05:00
|
|
|
"enable": true,
|
2022-04-27 01:00:20 -05:00
|
|
|
"interval": "2h"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function teardown() {
|
|
|
|
local zot_root_dir=${BATS_FILE_TMPDIR}/zot
|
|
|
|
teardown_zot_file_level
|
|
|
|
rm -rf ${zot_root_dir}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@test "blobs/manifest integrity not affected" {
|
|
|
|
|
|
|
|
add_test_files
|
|
|
|
echo ${ZOT_CONFIG_FILE}
|
|
|
|
setup_zot_file_level ${ZOT_CONFIG_FILE}
|
|
|
|
wait_zot_reachable "http://127.0.0.1:8080/v2/_catalog"
|
|
|
|
|
|
|
|
# wait for scrub to be done and logs to get populated
|
2023-08-07 14:55:19 -05:00
|
|
|
run sleep 15s
|
2022-04-27 01:00:20 -05:00
|
|
|
run not_affected
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[ $(echo "${lines[0]}" ) = 'true' ]
|
|
|
|
}
|
|
|
|
|
|
|
|
@test "blobs/manifest integrity affected" {
|
|
|
|
|
|
|
|
add_test_files
|
|
|
|
delete_blob
|
|
|
|
echo ${ZOT_CONFIG_FILE}
|
|
|
|
setup_zot_file_level ${ZOT_CONFIG_FILE}
|
|
|
|
wait_zot_reachable "http://127.0.0.1:8080/v2/_catalog"
|
|
|
|
|
|
|
|
# wait for scrub to be done and logs to get populated
|
2023-08-07 14:55:19 -05:00
|
|
|
run sleep 15s
|
2022-04-27 01:00:20 -05:00
|
|
|
run affected
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[ $(echo "${lines[0]}" ) = 'true' ]
|
|
|
|
# [ $(echo "${lines[-1]}" | jq .) ]
|
|
|
|
}
|
|
|
|
|