nim-eth2-scenarios/download_test_vectors.sh

91 lines
2.1 KiB
Bash
Raw Normal View History

#!/bin/bash
set -eu
VERSIONS=(
"v0.8.3"
"v0.9.0"
)
2019-10-31 16:51:36 +00:00
FLAVOURS=(
"general"
"minimal"
"mainnet"
)
# signal handler (we only care about the Ctrl+C generated SIGINT)
REL_PATH="$(dirname "${BASH_SOURCE[0]}")"
ABS_PATH="$(cd ${REL_PATH}; pwd)"
cleanup() {
echo -e "\nCtrl+C pressed. Cleaning up."
cd "$ABS_PATH"
rm -rf tarballs tests-*
exit 1
}
trap cleanup SIGINT
2019-10-31 16:51:36 +00:00
dl_version() {
[[ -z "$1" ]] && { echo "usage: dl_version() vX.Y.Z"; exit 1; }
version="$1"
2019-10-31 16:51:36 +00:00
mkdir -p "tarballs/${version}"
pushd "tarballs/${version}" >/dev/null
for flavour in "${FLAVOURS[@]}"; do
if [[ ! -e "${flavour}.tar.gz" ]]; then
echo "Downloading: ${version}/${flavour}.tar.gz"
curl --location --remote-name --silent --show-error \
"https://github.com/ethereum/eth2.0-spec-tests/releases/download/${version}/${flavour}.tar.gz" \
|| {
echo "Curl failed. Aborting"
rm -f "${flavour}.tar.gz"
exit 1
}
fi
done
popd >/dev/null
}
unpack_version() {
[[ -z "$1" ]] && { echo "usage: unpack_version() vX.Y.Z"; exit 1; }
version="$1"
dl_version "$version"
# suppress warnings when unpacking with GNU tar an archive created with BSD tar (probably on macOS)
EXTRA_TAR_PARAMS=""
tar --version | grep -qi 'gnu' && EXTRA_TAR_PARAMS="--warning=no-unknown-keyword"
if [[ ! -d "tests-${version}" ]]; then
for flavour in "${FLAVOURS[@]}"; do
echo "Unpacking: ${version}/${flavour}.tar.gz"
2019-10-31 21:52:04 +00:00
mkdir -p "tests-${version}"
tar -C "tests-${version}" --strip-components 1 --ignore-zeros ${EXTRA_TAR_PARAMS} -xzf \
2019-10-31 16:51:36 +00:00
"tarballs/${version}/${flavour}.tar.gz" \
|| {
echo "Tar failed. Aborting."
rm -rf "tests-${version}"
exit 1
}
done
fi
}
# download and unpack
for version in "${VERSIONS[@]}"; do
2019-10-31 16:51:36 +00:00
unpack_version "$version"
done
# delete tarballs and unpacked data from old versions
for tpath in tarballs/*; do
tdir="$(basename "$tpath")"
if [[ ! " ${VERSIONS[@]} " =~ " $tdir " ]]; then
rm -rf "$tpath"
fi
done
for tpath in tests-*; do
tver="$(echo "$tpath" | cut -d '-' -f 2)"
if [[ ! " ${VERSIONS[@]} " =~ " $tver " ]]; then
rm -rf "$tpath"
fi
done