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

blocklist-dht.js « node « test - github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 24bed1cade0a7ed6ded11b0b4d907d077f7165f8 (plain)
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
const DHT = require('bittorrent-dht/server')
const fixtures = require('webtorrent-fixtures')
const series = require('run-series')
const test = require('tape')
const WebTorrent = require('../../index.js')
const common = require('../common.js')

test('blocklist blocks peers discovered via DHT', t => {
  t.plan(8)

  let dhtServer, client1, client2

  series([
    cb => {
      dhtServer = new DHT({ bootstrap: false })
      dhtServer.on('error', err => { t.fail(err) })
      dhtServer.on('warning', err => { t.fail(err) })
      dhtServer.listen(cb)
    },

    cb => {
      let torrentReady = false
      let announced = false

      client1 = new WebTorrent({
        tracker: false,
        lsd: false,
        dht: { bootstrap: `127.0.0.1:${dhtServer.address().port}` }
      })
      client1.on('error', err => { t.fail(err) })
      client1.on('warning', err => { t.fail(err) })

      const torrent1 = client1.add(fixtures.leaves.parsedTorrent, {
        path: common.getDownloadPath('client_1', fixtures.leaves.parsedTorrent.infoHash)
      })

      torrent1.on('peer', () => {
        t.fail('client1 should not find any peers')
      })

      torrent1.on('blockedPeer', () => {
        t.fail('client1 should not block any peers')
      })

      torrent1.on('ready', () => {
        t.pass('torrent1 ready')
        torrentReady = true
        maybeDone()
      })

      torrent1.on('dhtAnnounce', () => {
        t.pass('client1 announced to dht')
        announced = true
        maybeDone()
      })

      function maybeDone () {
        if (torrentReady && announced) cb(null)
      }
    },

    cb => {
      client2 = new WebTorrent({
        tracker: false,
        lsd: false,
        dht: { bootstrap: `127.0.0.1:${dhtServer.address().port}` },
        blocklist: ['127.0.0.1']
      })
      client2.on('error', err => { t.fail(err) })
      client2.on('warning', err => { t.fail(err) })

      const torrent2 = client2.add(fixtures.leaves.parsedTorrent, {
        path: common.getDownloadPath('client_2', fixtures.leaves.parsedTorrent.infoHash)
      })

      torrent2.on('blockedPeer', addr => {
        t.pass(`client2 blocked connection to client1: ${addr}`)
        blockedPeer = true
        maybeDone()
      })

      torrent2.on('dhtAnnounce', () => {
        t.pass('client2 announced to dht')
        announced = true
        maybeDone()
      })

      torrent2.on('peer', addr => {
        t.fail('client2 should not find any peers')
      })

      let blockedPeer, announced
      function maybeDone () {
        if (blockedPeer && announced) cb(null)
      }
    }

  ], err => {
    t.error(err)
    dhtServer.destroy(err => {
      t.error(err, 'dht server destroyed')
    })
    client1.destroy(err => {
      t.error(err, 'client1 destroyed')
    })
    client2.destroy(err => {
      t.error(err, 'client2 destroyed')
    })
  })
})