258 lines
7.1 KiB
JavaScript
Raw Normal View History

var Client = require('../')
var common = require('./common')
2014-03-26 01:17:59 -07:00
var fs = require('fs')
var parseTorrent = require('parse-torrent')
2016-02-05 14:08:46 -08:00
var path = require('path')
2014-03-26 01:17:59 -07:00
var test = require('tape')
2016-02-05 14:08:46 -08:00
var torrent = fs.readFileSync(path.join(__dirname, 'torrents/bitlove-intro.torrent'))
2014-03-26 01:17:59 -07:00
var parsedTorrent = parseTorrent(torrent)
2014-07-11 03:50:35 -07:00
var peerId1 = new Buffer('01234567890123456789')
2014-07-11 03:50:48 -07:00
var peerId2 = new Buffer('12345678901234567890')
var peerId3 = new Buffer('23456789012345678901')
2014-03-26 01:17:59 -07:00
var port = 6881
2016-02-29 14:48:23 -08:00
function mockWebSocketTracker (client) {
client._trackers[0]._generateOffers = function (numwant, cb) {
var offers = []
for (var i = 0; i < numwant; i++) {
offers.push('fake_offer_' + i)
}
process.nextTick(function () {
cb(offers)
})
}
}
2014-07-11 03:50:35 -07:00
function testClientStart (t, serverType) {
2016-02-29 14:48:23 -08:00
t.plan(4)
common.createServer(t, serverType, function (server, announceUrl) {
parsedTorrent.announce = [ announceUrl ]
2016-02-29 14:48:23 -08:00
var client = new Client(peerId1, port, parsedTorrent, { wrtc: {} })
2014-03-26 01:17:59 -07:00
2016-02-29 14:48:23 -08:00
if (serverType === 'ws') mockWebSocketTracker(client)
client.on('error', function (err) { t.error(err) })
client.on('warning', function (err) { t.error(err) })
2014-07-10 21:58:19 -07:00
2014-03-26 01:17:59 -07:00
client.once('update', function (data) {
t.equal(data.announce, announceUrl)
2014-03-26 01:17:59 -07:00
t.equal(typeof data.complete, 'number')
t.equal(typeof data.incomplete, 'number')
2014-05-23 21:14:19 -07:00
client.stop()
client.once('update', function () {
t.pass('got response to stop')
server.close()
client.destroy()
2014-05-23 21:14:19 -07:00
})
})
2014-03-26 01:17:59 -07:00
2014-05-23 21:14:19 -07:00
client.start()
})
2014-07-11 03:50:35 -07:00
}
test('http: client.start()', function (t) {
testClientStart(t, 'http')
2014-05-23 21:14:19 -07:00
})
2014-03-26 01:17:59 -07:00
2014-07-11 03:50:35 -07:00
test('udp: client.start()', function (t) {
testClientStart(t, 'udp')
})
2014-03-26 01:17:59 -07:00
2016-02-29 14:48:23 -08:00
test('ws: client.start()', function (t) {
testClientStart(t, 'ws')
})
2014-07-11 03:50:35 -07:00
function testClientStop (t, serverType) {
t.plan(3)
common.createServer(t, serverType, function (server, announceUrl) {
parsedTorrent.announce = [ announceUrl ]
2016-02-29 14:48:23 -08:00
var client = new Client(peerId1, port, parsedTorrent, { wrtc: {} })
2014-03-26 01:17:59 -07:00
2016-02-29 14:48:23 -08:00
if (serverType === 'ws') mockWebSocketTracker(client)
client.on('error', function (err) { t.error(err) })
client.on('warning', function (err) { t.error(err) })
2014-07-10 21:58:19 -07:00
2014-05-23 21:14:19 -07:00
client.start()
2014-03-26 01:17:59 -07:00
2014-05-23 21:14:19 -07:00
setTimeout(function () {
2014-03-26 01:17:59 -07:00
client.stop()
2014-05-23 21:14:19 -07:00
client.once('update', function (data) {
// receive one final update after calling stop
t.equal(data.announce, announceUrl)
t.equal(typeof data.complete, 'number')
t.equal(typeof data.incomplete, 'number')
server.close()
client.destroy()
2014-05-23 21:14:19 -07:00
})
}, 1000)
})
2014-07-11 03:50:35 -07:00
}
test('http: client.stop()', function (t) {
testClientStop(t, 'http')
2014-05-23 21:14:19 -07:00
})
2014-07-11 03:50:35 -07:00
test('udp: client.stop()', function (t) {
testClientStop(t, 'udp')
})
2014-05-23 21:14:19 -07:00
2016-02-29 14:48:23 -08:00
test('ws: client.stop()', function (t) {
testClientStop(t, 'ws')
})
2014-07-11 03:50:35 -07:00
function testClientUpdate (t, serverType) {
t.plan(4)
common.createServer(t, serverType, function (server, announceUrl) {
parsedTorrent.announce = [ announceUrl ]
2016-02-29 14:48:23 -08:00
var client = new Client(peerId1, port, parsedTorrent, { wrtc: {} })
2014-05-23 21:14:19 -07:00
2016-02-29 14:48:23 -08:00
if (serverType === 'ws') mockWebSocketTracker(client)
client.on('error', function (err) { t.error(err) })
client.on('warning', function (err) { t.error(err) })
2014-03-26 01:17:59 -07:00
2016-02-29 14:48:23 -08:00
client.setInterval(2000)
2014-07-10 21:58:19 -07:00
2014-05-23 21:14:19 -07:00
client.start()
client.once('update', function () {
2015-12-05 00:06:23 -08:00
client.setInterval(2000)
2015-03-24 01:02:10 -07:00
// after interval (2s), we should get another update
2014-05-23 21:14:19 -07:00
client.once('update', function (data) {
// received an update!
t.equal(data.announce, announceUrl)
t.equal(typeof data.complete, 'number')
t.equal(typeof data.incomplete, 'number')
client.stop()
client.once('update', function () {
t.pass('got response to stop')
server.close()
client.destroy()
2014-05-23 21:14:19 -07:00
})
})
})
2014-03-26 01:17:59 -07:00
})
2014-07-11 03:50:35 -07:00
}
test('http: client.update()', function (t) {
testClientUpdate(t, 'http')
2014-03-26 01:17:59 -07:00
})
2014-07-11 03:50:35 -07:00
test('udp: client.update()', function (t) {
testClientUpdate(t, 'udp')
})
2016-02-29 14:48:23 -08:00
test('ws: client.update()', function (t) {
testClientUpdate(t, 'ws')
})
2014-07-11 03:50:35 -07:00
function testClientScrape (t, serverType) {
t.plan(4)
common.createServer(t, serverType, function (server, announceUrl) {
parsedTorrent.announce = [ announceUrl ]
2016-02-29 14:48:23 -08:00
var client = new Client(peerId1, port, parsedTorrent, { wrtc: {} })
2016-02-29 14:48:23 -08:00
if (serverType === 'ws') mockWebSocketTracker(client)
client.on('error', function (err) { t.error(err) })
client.on('warning', function (err) { t.error(err) })
2014-07-10 21:58:19 -07:00
2014-05-23 21:14:19 -07:00
client.once('scrape', function (data) {
t.equal(data.announce, announceUrl)
t.equal(typeof data.complete, 'number')
t.equal(typeof data.incomplete, 'number')
t.equal(typeof data.downloaded, 'number')
2014-05-11 17:32:57 -07:00
server.close()
client.destroy()
2014-05-23 21:14:19 -07:00
})
client.scrape()
})
2014-07-11 03:50:35 -07:00
}
test('http: client.scrape()', function (t) {
testClientScrape(t, 'http')
})
test('udp: client.scrape()', function (t) {
testClientScrape(t, 'udp')
})
2016-02-29 14:48:23 -08:00
// TODO: uncomment once scrape is supported on WebSocket trackers
// test('ws: client.scrape()', function (t) {
// testClientScrape(t, 'ws')
// })
2014-07-11 03:50:48 -07:00
function testClientAnnounceWithNumWant (t, serverType) {
t.plan(4)
common.createServer(t, serverType, function (server, announceUrl) {
parsedTorrent.announce = [ announceUrl ]
2016-02-29 14:48:23 -08:00
var client1 = new Client(peerId1, port, parsedTorrent, { wrtc: {} })
if (serverType === 'ws') mockWebSocketTracker(client1)
client1.on('error', function (err) { t.error(err) })
client1.on('warning', function (err) { t.error(err) })
2014-07-11 03:50:48 -07:00
client1.start()
2014-11-26 20:11:49 +08:00
client1.once('update', function () {
2016-02-29 14:48:23 -08:00
var client2 = new Client(peerId2, port + 1, parsedTorrent, { wrtc: {} })
if (serverType === 'ws') mockWebSocketTracker(client2)
client2.on('error', function (err) { t.error(err) })
client2.on('warning', function (err) { t.error(err) })
2014-07-11 03:50:48 -07:00
client2.start()
client2.once('update', function () {
2016-02-29 14:48:23 -08:00
var client3 = new Client(peerId3, port + 2, parsedTorrent, { wrtc: {} })
if (serverType === 'ws') mockWebSocketTracker(client3)
client3.on('error', function (err) { t.error(err) })
client3.on('warning', function (err) { t.error(err) })
2015-07-29 01:47:09 -07:00
client3.start({ numwant: 1 })
2014-07-11 03:50:48 -07:00
client3.on('peer', function () {
t.pass('got one peer (this should only fire once)')
var num = 3
function tryCloseServer () {
num -= 1
if (num === 0) server.close()
}
2014-07-11 03:50:48 -07:00
client1.stop()
client1.once('update', function () {
t.pass('got response to stop (client1)')
client1.destroy()
tryCloseServer()
})
2014-07-11 03:50:48 -07:00
client2.stop()
client2.once('update', function () {
t.pass('got response to stop (client2)')
client2.destroy()
tryCloseServer()
})
2014-07-11 03:50:48 -07:00
client3.stop()
client3.once('update', function () {
t.pass('got response to stop (client3)')
client3.destroy()
tryCloseServer()
})
2014-07-11 03:50:48 -07:00
})
})
})
})
}
test('http: client announce with numwant', function (t) {
2014-07-11 03:50:48 -07:00
testClientAnnounceWithNumWant(t, 'http')
})
test('udp: client announce with numwant', function (t) {
2014-07-11 03:50:48 -07:00
testClientAnnounceWithNumWant(t, 'udp')
})