Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/node/blocklist-dht.js')
-rw-r--r--test/node/blocklist-dht.js95
1 files changed, 95 insertions, 0 deletions
diff --git a/test/node/blocklist-dht.js b/test/node/blocklist-dht.js
new file mode 100644
index 0000000..b492057
--- /dev/null
+++ b/test/node/blocklist-dht.js
@@ -0,0 +1,95 @@
+var common = require('../common')
+var DHT = require('bittorrent-dht/server')
+var networkAddress = require('network-address')
+var series = require('run-series')
+var test = require('tape')
+var WebTorrent = require('../../')
+
+test('blocklist blocks peers discovered via DHT', function (t) {
+ t.plan(9)
+
+ var dhtServer, client1, client2
+
+ series([
+ function (cb) {
+ dhtServer = new DHT({ bootstrap: false })
+ dhtServer.on('error', function (err) { t.fail(err) })
+ dhtServer.on('warning', function (err) { t.fail(err) })
+ dhtServer.listen(cb)
+ },
+
+ function (cb) {
+ client1 = new WebTorrent({
+ tracker: false,
+ dht: { bootstrap: '127.0.0.1:' + dhtServer.address().port }
+ })
+ client1.on('error', function (err) { t.fail(err) })
+ client1.on('warning', function (err) { t.fail(err) })
+
+ var torrent1 = client1.add(common.leaves.parsedTorrent)
+
+ torrent1.on('peer', function () {
+ t.fail('client1 should not find any peers')
+ })
+
+ torrent1.on('blockedPeer', function () {
+ t.fail('client1 should not block any peers')
+ })
+
+ torrent1.on('ready', function () {
+ t.pass('torrent1 ready')
+ torrentReady = true
+ maybeDone()
+ })
+
+ torrent1.on('dhtAnnounce', function () {
+ t.pass('client1 announced to dht')
+ announced = true
+ maybeDone()
+ })
+
+ var torrentReady = false
+ var announced = false
+ function maybeDone () {
+ if (torrentReady && announced) cb(null)
+ }
+ },
+
+ function (cb) {
+ client2 = new WebTorrent({
+ tracker: false,
+ dht: { bootstrap: '127.0.0.1:' + dhtServer.address().port },
+ blocklist: [ '127.0.0.1', networkAddress.ipv4() ]
+ })
+ client2.on('error', function (err) { t.fail(err) })
+ client2.on('warning', function (err) { t.fail(err) })
+
+ var torrent2 = client2.add(common.leaves.parsedTorrent)
+
+ torrent2.on('blockedPeer', function () {
+ t.pass('client2 blocked connection to client1')
+ })
+
+ torrent2.on('dhtAnnounce', function () {
+ t.pass('client2 announced to dht')
+ cb(null)
+ })
+
+ torrent2.on('peer', function (addr) {
+ t.fail('client2 should not find any peers')
+ })
+ }
+
+ ], function (err) {
+ t.error(err)
+ dhtServer.destroy(function (err) {
+ t.error(err, 'dht server destroyed')
+ })
+ client1.destroy(function (err) {
+ t.error(err, 'client1 destroyed')
+ })
+ client2.destroy(function (err) {
+ t.error(err, 'client2 destroyed')
+ })
+ })
+})