forked from webtorrent/webtorrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.js
47 lines (36 loc) · 1.42 KB
/
metadata.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
var fixtures = require('webtorrent-fixtures')
var test = require('tape')
var WebTorrent = require('../../')
test('ut_metadata transfer', function (t) {
t.plan(6)
var client1 = new WebTorrent({ dht: false, tracker: false })
var client2 = new WebTorrent({ dht: false, tracker: false })
client1.on('error', function (err) { t.fail(err) })
client1.on('warning', function (err) { t.fail(err) })
client2.on('error', function (err) { t.fail(err) })
client2.on('warning', function (err) { t.fail(err) })
client1.on('torrent', function (torrent) {
t.pass('client1 emits torrent event') // even though it started with metadata
t.ok(torrent.metadata, 'metadata exists')
})
// client1 starts with metadata from torrent file
client1.add(fixtures.leaves.torrent)
client1.on('torrent', function (torrent1) {
t.deepEqual(torrent1.info, fixtures.leaves.parsedTorrent.info)
// client2 starts with infohash
var torrent2 = client2.add(fixtures.leaves.parsedTorrent.infoHash)
torrent2.on('infoHash', function () {
// manually add the peer
torrent2.addPeer('127.0.0.1:' + client1.address().port)
client2.on('torrent', function () {
t.deepEqual(torrent1.info, torrent2.info)
client1.destroy(function (err) {
t.error(err, 'client1 destroyed')
})
client2.destroy(function (err) {
t.error(err, 'client2 destroyed')
})
})
})
})
})