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

swarm-basic.js « node « test - github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cdc54efaf8335e27f8d920771c1a2a08342b213c (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
// var Buffer = require('safe-buffer').Buffer
// var hat = require('hat')
// var Swarm = require('../../lib/swarm')
// var test = require('tape')

// var infoHash = 'd2474e86c95b19b8bcfdb92bc12c9d44667cfa36'
// var infoHash2 = 'd2474e86c95b19b8bcfdb92bc12c9d44667cfa37'
// var peerId = Buffer.from('-WW0001-' + hat(48), 'utf8').toString('hex')
// var peerId2 = Buffer.from('-WW0001-' + hat(48), 'utf8').toString('hex')

// test('two swarms listen on same port', function (t) {
//   t.plan(2)

//   var swarm1 = new Swarm(infoHash, peerId)
//   swarm1.listen(0, function () {
//     var port = swarm1.address().port
//     t.ok(typeof port === 'number' && port !== 0)

//     var swarm2 = new Swarm(infoHash2, peerId)
//     swarm2.listen(port, function () {
//       t.equal(swarm2.address().port, port, 'listened on requested port')
//       swarm1.destroy()
//       swarm2.destroy()
//     })
//   })
// })

// test('swarm join', function (t) {
//   t.plan(10)

//   var swarm1 = new Swarm(infoHash, peerId)
//   swarm1.listen(0, function () {
//     var swarm2 = new Swarm(infoHash, peerId2)

//     t.equal(swarm1.wires.length, 0)
//     t.equal(swarm2.wires.length, 0)

//     swarm2.addPeer('127.0.0.1:' + swarm1.address().port)

//     swarm1.on('wire', function (wire, addr) {
//       t.ok(wire, 'Peer join our swarm via listening port')

//       t.equal(swarm1.wires.length, 1)
//       t.ok(/127\.0\.0\.1:\d{1,5}/.test(addr))
//       t.equal(wire.peerId.toString('hex'), peerId2)
//     })

//     swarm2.on('wire', function (wire, addr) {
//       t.ok(wire, 'Joined swarm, got wire')

//       t.equal(swarm2.wires.length, 1)
//       t.ok(/127\.0\.0\.1:\d{1,5}/.test(addr))
//       t.equal(wire.peerId.toString('hex'), peerId)
//     })

//     t.on('end', function () {
//       swarm1.destroy()
//       swarm2.destroy()
//     })
//   })
// })