mirror of
https://github.com/webtorrent/bittorrent-tracker.git
synced 2025-02-22 21:29:07 +00:00
add tests
This commit is contained in:
parent
1159037222
commit
858b308f86
82
test/basic.js
Normal file
82
test/basic.js
Normal file
@ -0,0 +1,82 @@
|
||||
var Client = require('../').Client
|
||||
var fs = require('fs')
|
||||
var parseTorrent = require('parse-torrent')
|
||||
var test = require('tape')
|
||||
|
||||
var torrent = fs.readFileSync(__dirname + '/torrents/bitlove-intro.torrent')
|
||||
var parsedTorrent = parseTorrent(torrent)
|
||||
|
||||
var peerId = new Buffer('01234567890123456789')
|
||||
var port = 6881
|
||||
|
||||
test('client.start()', function (t) {
|
||||
t.plan(4)
|
||||
|
||||
var client = new Client(peerId, port, parsedTorrent)
|
||||
|
||||
client.on('error', function (err) {
|
||||
t.fail(err.message)
|
||||
})
|
||||
|
||||
client.once('update', function (data) {
|
||||
t.equal(data.announce, 'http://t.bitlove.org/announce')
|
||||
t.equal(typeof data.complete, 'number')
|
||||
t.equal(typeof data.incomplete, 'number')
|
||||
})
|
||||
|
||||
client.once('peer', function (addr) {
|
||||
t.pass('there is at least one peer') // TODO: this shouldn't rely on an external server!
|
||||
client.stop()
|
||||
})
|
||||
|
||||
client.start()
|
||||
})
|
||||
|
||||
test('client.stop()', function (t) {
|
||||
t.plan(3)
|
||||
|
||||
var client = new Client(peerId, port, parsedTorrent)
|
||||
|
||||
client.on('error', function (err) {
|
||||
t.fail(err.message)
|
||||
})
|
||||
|
||||
client.start()
|
||||
|
||||
setTimeout(function () {
|
||||
client.stop()
|
||||
|
||||
client.once('update', function (data) {
|
||||
// receive one final update after calling stop
|
||||
t.equal(data.announce, 'http://t.bitlove.org/announce')
|
||||
t.equal(typeof data.complete, 'number')
|
||||
t.equal(typeof data.incomplete, 'number')
|
||||
})
|
||||
}, 1000)
|
||||
})
|
||||
|
||||
test('client.update()', function (t) {
|
||||
t.plan(3)
|
||||
|
||||
var client = new Client(peerId, port, parsedTorrent, { interval: 5000 })
|
||||
|
||||
client.on('error', function (err) {
|
||||
t.fail(err.message)
|
||||
})
|
||||
|
||||
client.start()
|
||||
|
||||
client.once('update', function () {
|
||||
|
||||
client.once('update', function (data) {
|
||||
// received an update!
|
||||
t.equal(data.announce, 'http://t.bitlove.org/announce')
|
||||
t.equal(typeof data.complete, 'number')
|
||||
t.equal(typeof data.incomplete, 'number')
|
||||
client.stop()
|
||||
})
|
||||
|
||||
})
|
||||
})
|
||||
|
||||
// TODO: add test where tracker doesn't support compact
|
BIN
test/torrents/bitlove-intro.torrent
Normal file
BIN
test/torrents/bitlove-intro.torrent
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user