forked from webtorrent/webtorrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblocklist-tracker.js
90 lines (72 loc) · 2.29 KB
/
blocklist-tracker.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
var common = require('../common')
var extend = require('xtend')
var series = require('run-series')
var test = require('tape')
var TrackerServer = require('bittorrent-tracker/server')
var WebTorrent = require('../../')
test('blocklist blocks peers discovered via tracker', function (t) {
t.plan(9)
var parsedTorrent = extend(common.leaves.parsedTorrent)
var tracker, client1, client2
series([
function (cb) {
tracker = new TrackerServer({ udp: false, ws: false })
tracker.listen(function () {
var port = tracker.http.address().port
var announceUrl = 'http://127.0.0.1:' + port + '/announce'
// Overwrite announce with our local tracker
parsedTorrent.announce = announceUrl
cb(null)
})
tracker.once('start', function () {
t.pass('client1 connected to tracker')
tracker.once('start', function () {
t.pass('client2 connected to tracker')
})
})
},
function (cb) {
client1 = new WebTorrent({ dht: false })
client1.on('error', function (err) { t.fail(err) })
client1.on('warning', function (err) { t.fail(err) })
var torrent1 = client1.add(parsedTorrent)
torrent1.on('peer', function () {
t.pass('client1 found itself')
cb(null)
})
torrent1.on('blockedPeer', function () {
t.fail('client1 should not block any peers')
})
},
function (cb) {
client2 = new WebTorrent({
dht: false,
blocklist: [ '127.0.0.1' ]
})
client2.on('error', function (err) { t.fail(err) })
client2.on('warning', function (err) { t.fail(err) })
var torrent2 = client2.add(parsedTorrent)
torrent2.once('blockedPeer', function () {
t.pass('client2 blocked first peer')
torrent2.once('blockedPeer', function () {
t.pass('client2 blocked second peer')
cb(null)
})
})
torrent2.on('peer', function () {
t.fail('client2 should not find any peers')
})
}
], function (err) {
t.error(err)
tracker.close(function () {
t.pass('tracker closed')
})
client1.destroy(function (err) {
t.error(err, 'client1 destroyed')
})
client2.destroy(function (err) {
t.error(err, 'client2 destroyed')
})
})
})