mirror of
https://github.com/anchore/syft
synced 2024-11-10 06:14:16 +00:00
ecfc471ce5
* Add support for macOS signing and notarization Signed-off-by: Dan Luhring <dan.luhring@anchore.com> * Use Docker to run the changelog generator locally Signed-off-by: Dan Luhring <dan.luhring@anchore.com>
52 lines
1.3 KiB
Bash
Executable file
52 lines
1.3 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
set -eux
|
|
set -o pipefail
|
|
|
|
DISTDIR=$1
|
|
ACC_DIR=$2
|
|
TEST_IMAGE=$3
|
|
RESULTSDIR=$4
|
|
|
|
TEST_IMAGE_TAR=/tmp/image.tar
|
|
TEST_TYPE=mac
|
|
WORK_DIR=`mktemp -d -t "syft-acceptance-test-${TEST_TYPE}-XXXXXX"`
|
|
NORMAL_TEST_IMAGE=$(echo ${TEST_IMAGE} | tr ':' '-' )
|
|
REPORT=${WORK_DIR}/acceptance-${TEST_TYPE}-${NORMAL_TEST_IMAGE}.json
|
|
GOLDEN_REPORT=${ACC_DIR}/test-fixtures/acceptance-${NORMAL_TEST_IMAGE}.json
|
|
|
|
# check if tmp dir was created
|
|
if [[ ! "${WORK_DIR}" || ! -d "${WORK_DIR}" ]]; then
|
|
echo "Could not create temp dir"
|
|
exit 1
|
|
fi
|
|
|
|
function cleanup {
|
|
# we should still preserve previous failures
|
|
exit_code=$?
|
|
rm -rf "${WORK_DIR}"
|
|
exit ${exit_code}
|
|
}
|
|
|
|
trap cleanup EXIT
|
|
|
|
# install skopeo
|
|
skopeo --version || brew install skopeo
|
|
|
|
# fetch test image
|
|
skopeo --override-os linux copy docker://docker.io/${TEST_IMAGE} docker-archive:${TEST_IMAGE_TAR}
|
|
ls -alh ${TEST_IMAGE_TAR}
|
|
|
|
# run syft
|
|
SYFT_PATH="${DISTDIR}/syft-macos_darwin_amd64/syft"
|
|
chmod 755 "${SYFT_PATH}"
|
|
"${SYFT_PATH}" version
|
|
SYFT_CHECK_FOR_APP_UPDATE=0 "${SYFT_PATH}" docker-archive://${TEST_IMAGE_TAR} -vv -o json > "${REPORT}"
|
|
|
|
# keep the generated report around
|
|
mkdir -p ${RESULTSDIR}
|
|
cp ${REPORT} ${RESULTSDIR}
|
|
|
|
# compare the results to a known good output
|
|
${ACC_DIR}/compare.py \
|
|
${GOLDEN_REPORT} \
|
|
${REPORT} | tee ${RESULTSDIR}/acceptance-${TEST_TYPE}.txt
|