2021-02-12 16:21:28 +08:00
|
|
|
set -eux
|
|
|
|
repopath="$(cd "$(dirname "$0")/.."; pwd)"
|
|
|
|
debian_file=debian-10.8.0-amd64-netinst.iso
|
2022-01-31 14:35:20 +08:00
|
|
|
mkdir -p mnt torrents
|
|
|
|
# I think the timing can cause torrents to not get added correctly to the torrentfs client, so add
|
|
|
|
# them first and start the fs afterwards.
|
2018-06-29 22:08:01 +08:00
|
|
|
pushd torrents
|
2021-02-12 16:21:28 +08:00
|
|
|
cp "$repopath/testdata/$debian_file.torrent" .
|
2022-01-31 08:52:57 +08:00
|
|
|
godo -v "$repopath/cmd/torrent" metainfo "$repopath/testdata/sintel.torrent" magnet > sintel.magnet
|
2018-06-29 22:08:01 +08:00
|
|
|
popd
|
2022-01-31 14:35:20 +08:00
|
|
|
GOPPROF=http godo -v "$repopath/cmd/torrentfs" -mountDir=mnt -metainfoDir=torrents &
|
|
|
|
trap 'set +e; sudo umount -f mnt' EXIT
|
2022-01-31 08:48:39 +08:00
|
|
|
#file="$debian_file"
|
|
|
|
file=Sintel/Sintel.mp4
|
2017-08-27 12:03:10 +08:00
|
|
|
while [ ! -e "mnt/$file" ]; do sleep 1; done
|
2022-02-10 06:20:23 +08:00
|
|
|
pv -f "mnt/$file" | md5sum -c <(cat <<EOF
|
|
|
|
083e808d56aa7b146f513b3458658292 -
|
|
|
|
EOF)
|
2018-06-30 20:03:29 +08:00
|
|
|
sudo umount mnt
|
2018-06-29 22:08:01 +08:00
|
|
|
wait || echo "wait returned" $?
|