Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

can't download a magnet URI #607

Merged
merged 1 commit into from Feb 9, 2016
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file or symbol
Failed to load files and symbols.

Always

Just for now

@@ -0,0 +1,63 @@
/* global Blob */

var test = require('tape')
var Readable = require('readable-stream').Readable
var WebTorrent = require('../')
var concat = require('concat-stream')
var Tracker = require('bittorrent-tracker/server')

test('client.seed: stream', function (t) {
t.plan(4)

var announce = []
var tracker = new Tracker()
var seeder, client
tracker.listen(function () {
announce.push('http://localhost:'+tracker.http.address().port)
seeder = new WebTorrent({ dht: false })
client = new WebTorrent({ dht: false })

seeder.on('error', function (err) { t.fail(err) })
seeder.on('warning', function (err) { t.fail(err) })
client.on('error', function (err) { t.fail(err) })
client.on('warning', function (err) { t.fail(err) })

seed()
})
tracker.on('start', function () {
console.log('START', argument)
})

t.once('end', function () {
seeder.destroy(function (err) { if (err) t.error(err, 'seeder destroyed') })
client.destroy(function (err) { if (err) t.error(err, 'client destroyed') })
tracker.close()
})

var stream = new Readable
stream._read = function () {}
stream.push('HELLO WORLD\n')
stream.push(null)

function seed () {
var sopts = {
name: 'hello.txt',
pieceLength: 5,
announce: announce
}
var copts = { announce: announce }
seeder.seed([stream], sopts, function (torrent) {
console.log(torrent.magnetURI)
// this works: client.add(torrent, copts, function (dl) {
client.add(torrent.magnetURI, copts, function (dl) {
t.equal(dl.files.length, 1)
t.equal(dl.files[0].name, 'hello.txt')
t.equal(dl.files[0].length, 12)
dl.files[0].createReadStream()
.pipe(concat({ encoding: 'string' }, function (body) {
t.equal(body, 'HELLO WORLD\n', 'content')
}))
})
})
}
})
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.