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

download-webseed-torrent.js « node « test - github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 39bec56cdfde0257faa10dee16d31a3cc706ab4f (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
111
112
113
114
115
116
117
118
119
120
121
var extend = require('xtend')
var finalhandler = require('finalhandler')
var fixtures = require('webtorrent-fixtures')
var http = require('http')
var MemoryChunkStore = require('memory-chunk-store')
var path = require('path')
var series = require('run-series')
var serveStatic = require('serve-static')
var test = require('tape')
var WebTorrent = require('../../')

// it should be fast to download a small torrent over local HTTP
var WEB_SEED_TIMEOUT_MS = 500

test('Download using webseed (via .torrent file)', function (t) {
  t.plan(6)
  t.timeoutAfter(WEB_SEED_TIMEOUT_MS)

  var parsedTorrent = extend(fixtures.leaves.parsedTorrent)

  var httpServer = http.createServer(function (req, res) {
    var done = finalhandler(req, res)
    serveStatic(path.dirname(fixtures.leaves.contentPath))(req, res, done)
  })
  var client

  httpServer.on('error', function (err) { t.fail(err) })

  series([
    function (cb) {
      httpServer.listen(cb)
    },

    function (cb) {
      parsedTorrent.urlList = [
        'http://localhost:' + httpServer.address().port + '/' + fixtures.leaves.parsedTorrent.name
      ]

      client = new WebTorrent({ dht: false, tracker: false })

      client.on('error', function (err) { t.fail(err) })
      client.on('warning', function (err) { t.fail(err) })

      client.on('torrent', function (torrent) {
        torrent.files.forEach(function (file) {
          file.getBuffer(function (err, buf) {
            t.error(err)
            t.deepEqual(buf, fixtures.leaves.content, 'downloaded correct content')
            gotBuffer = true
            maybeDone()
          })
        })

        torrent.once('done', function () {
          t.pass('client downloaded torrent from webseed')
          torrentDone = true
          maybeDone()
        })

        var gotBuffer = false
        var torrentDone = false
        function maybeDone () {
          if (gotBuffer && torrentDone) cb(null)
        }
      })

      client.add(parsedTorrent, {store: MemoryChunkStore})
    }
  ], function (err) {
    t.error(err)
    client.destroy(function (err) {
      t.error(err, 'client destroyed')
    })
    httpServer.close(function () {
      t.pass('http server closed')
    })
  })
})

test('Disable webseeds', function (t) {
  var parsedTorrent = extend(fixtures.leaves.parsedTorrent)

  var httpServer = http.createServer(function (req, res) {
    t.fail('webseed http server should not get any requests')
  })
  var client

  httpServer.on('error', function (err) { t.fail(err) })

  series([
    function (cb) {
      httpServer.listen(cb)
    },

    function (cb) {
      parsedTorrent.urlList = [
        'http://localhost:' + httpServer.address().port + '/' + fixtures.leaves.parsedTorrent.name
      ]

      client = new WebTorrent({ dht: false, tracker: false, webSeeds: false })

      client.on('error', function (err) { t.fail(err) })
      client.on('warning', function (err) { t.fail(err) })

      client.add(parsedTorrent, {store: MemoryChunkStore})

      // The test above ensures that we can download the whole torrent over webseeds within a
      // short time. Here, we wait the same amount of time and make sure no HTTP requests happen.
      setTimeout(cb, WEB_SEED_TIMEOUT_MS)
    }
  ], function (err) {
    t.error(err)
    client.destroy(function (err) {
      t.error(err, 'client destroyed')
    })
    httpServer.close(function () {
      t.pass('http server closed')
      t.end()
    })
  })
})