2018-06-29 22:08:01 +08:00
|
|
|
set -ex
|
2017-12-29 10:50:26 +08:00
|
|
|
repopath=$(cd $(dirname $0)/..; pwd)
|
2018-06-29 22:08:01 +08:00
|
|
|
d=$(mktemp -d)
|
|
|
|
pushd "$d"
|
2017-08-26 11:25:27 +08:00
|
|
|
mkdir mnt torrents
|
2017-08-27 12:03:10 +08:00
|
|
|
GOPPROF=http godo github.com/anacrolix/torrent/cmd/torrentfs -mountDir=mnt -metainfoDir=torrents &
|
2018-06-29 22:08:01 +08:00
|
|
|
trap 'set +e; sudo umount -f mnt; pushd; rm -rv "$d"' EXIT
|
|
|
|
pushd torrents
|
2017-12-29 10:50:26 +08:00
|
|
|
cp "$repopath"/testdata/debian-9.1.0-amd64-netinst.iso.torrent .
|
2017-08-29 12:02:30 +08:00
|
|
|
echo 'magnet:?xt=urn:btih:6a9759bffd5c0af65319979fb7832189f4f3c35d&dn=sintel.mp4' > sintel.magnet
|
2018-06-29 22:08:01 +08:00
|
|
|
popd
|
2017-08-29 12:02:30 +08:00
|
|
|
file=debian-9.1.0-amd64-netinst.iso
|
|
|
|
# file=sintel.mp4
|
2017-08-27 12:03:10 +08:00
|
|
|
while [ ! -e "mnt/$file" ]; do sleep 1; done
|
|
|
|
pv "mnt/$file" | md5sum
|
2018-06-29 22:08:01 +08:00
|
|
|
umount mnt
|
|
|
|
wait || echo "wait returned" $?
|