torrent/fs/test.sh

16 lines
498 B
Bash
Raw Normal View History

repopath=$(cd $(dirname $0)/..; pwd)
2017-08-26 03:25:27 +00:00
mkdir mnt torrents
2017-08-29 04:02:30 +00:00
umount mnt
set -e
GOPPROF=http godo github.com/anacrolix/torrent/cmd/torrentfs -mountDir=mnt -metainfoDir=torrents &
2017-08-26 03:25:27 +00:00
cd torrents
cp "$repopath"/testdata/debian-9.1.0-amd64-netinst.iso.torrent .
2017-08-29 04:02:30 +00:00
echo 'magnet:?xt=urn:btih:6a9759bffd5c0af65319979fb7832189f4f3c35d&dn=sintel.mp4' > sintel.magnet
2017-08-26 03:25:27 +00:00
cd ..
2017-08-29 04:02:30 +00:00
file=debian-9.1.0-amd64-netinst.iso
# file=sintel.mp4
while [ ! -e "mnt/$file" ]; do sleep 1; done
pv "mnt/$file" | md5sum
2017-09-18 03:51:05 +00:00
sudo umount mnt
wait