]> Sergey Matveev's repositories - btrtrc.git/blobdiff - fs/test.sh
Add doc comment for Torrent.BytesMissing
[btrtrc.git] / fs / test.sh
index 068723f946f937b9c02d7a1eea2a1f23247b8fd4..5f46d3dc03d451a5befa83f85ead026e96c575e6 100755 (executable)
@@ -1,8 +1,20 @@
-mkdir mnt torrents
-GOPPROF=http godo github.com/anacrolix/torrent/cmd/torrentfs -mountDir=mnt -metainfoDir=torrents &
-cd torrents
-wget http://releases.ubuntu.com/14.04.2/ubuntu-14.04.2-desktop-amd64.iso.torrent
-cd ..
-file=ubuntu-14.04.2-desktop-amd64.iso
+set -eux
+repopath="$(cd "$(dirname "$0")/.."; pwd)"
+debian_file=debian-10.8.0-amd64-netinst.iso
+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.
+pushd torrents
+cp "$repopath/testdata/$debian_file.torrent" .
+godo -v -- "$repopath/cmd/torrent" metainfo "$repopath/testdata/sintel.torrent" magnet > sintel.magnet
+popd
+GOPPROF=http godo -v -- "$repopath/cmd/torrentfs" -mountDir=mnt -metainfoDir=torrents &
+trap 'set +e; sudo umount -f mnt' EXIT
+#file="$debian_file"
+file=Sintel/Sintel.mp4
 while [ ! -e "mnt/$file" ]; do sleep 1; done
-pv "mnt/$file" | md5sum
+pv -f "mnt/$file" | md5sum -c <(cat <<EOF
+083e808d56aa7b146f513b3458658292  -
+EOF)
+sudo umount mnt
+wait || echo "wait returned" $?