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

basic.js « test - github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2211593ce8adb03cebf71e036f445a6329279a04 (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 WebTorrent = require('../')
var fs = require('fs')
var parseTorrent = require('parse-torrent')
var test = require('tape')

var leaves = fs.readFileSync(__dirname + '/torrents/leaves.torrent')
var leavesTorrent = parseTorrent(leaves)
var leavesBook = fs.readFileSync(__dirname + '/content/Leaves of Grass by Walt Whitman.epub')

function verify (t, client, torrent) {
  t.equal(torrent.infoHash, leavesTorrent.infoHash)
  client.destroy()
}

test('client.add (magnet uri, torrent file, info hash, and parsed torrent)', function (t) {
  t.plan(5)

  // magnet uri (utf8 string)
  var client1 = new WebTorrent({ dht: false, trackers: false })
  verify(t, client1, client1.add('magnet:?xt=urn:btih:' + leavesTorrent.infoHash))

  // torrent file (buffer)
  var client2 = new WebTorrent({ dht: false, trackers: false })
  verify(t, client2, client2.add(leaves))

  // info hash (hex string)
  var client3 = new WebTorrent({ dht: false, trackers: false })
  verify(t, client3, client3.add(leavesTorrent.infoHash))

  // info hash (buffer)
  var client4 = new WebTorrent({ dht: false, trackers: false })
  verify(t, client4, client4.add(new Buffer(leavesTorrent.infoHash, 'hex')))

  // parsed torrent (from parse-torrent)
  var client5 = new WebTorrent({ dht: false, trackers: false })
  verify(t, client5, client5.add(leavesTorrent))
})

test('client.seed (Buffer, Blob)', function (t) {
  t.plan(2)

  var opts = {
    name: 'Leaves of Grass by Walt Whitman.epub'
  }

  // torrent file (Buffer)
  var client1 = new WebTorrent({ dht: false, trackers: false })
  client1.seed(leavesBook, opts, function (torrent) {
    verify(t, client1, torrent)
  })

  // Blob
  if (typeof Blob !== 'undefined') {
    var client2 = new WebTorrent({ dht: false, trackers: false })
    client2.seed(new Blob([ leavesBook ]), opts, function (torrent) {
      verify(t, client2, torrent)
    })
  } else {
    t.pass('Skipping Blob test because missing `Blob` constructor')
  }
})