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

server.js « test - github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8aae2681bd48e5d5997c8aafd9bc2158e2e9f59b (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
var common = require('./common')
var fs = require('fs')
var get = require('simple-get')
var test = require('tape')
var WebTorrent = require('../')

test('torrent.createServer(): programmatic http server', function (t) {
  t.plan(9)

  var client = new WebTorrent({ tracker: false, dht: false })
  client.on('error', function (err) { t.fail(err) })
  client.on('warning', function (err) { t.fail(err) })

  client.add(common.leaves.torrent, function (torrent) {
    t.pass('got "torrent" event')
    var server = torrent.createServer()

    server.listen(0, function () {
      var port = server.address().port
      t.pass('server is listening on ' + port)

      // Seeding after server is created should work
      torrent.load(fs.createReadStream(common.leaves.contentPath), function (err) {
        t.error(err, 'loaded seed content into torrent')
      })

      var host = 'http://localhost:' + port

      // Index page should list files in the torrent
      get.concat(host + '/', function (err, data) {
        t.error(err)
        data = data.toString()
        t.ok(data.indexOf('Leaves of Grass by Walt Whitman.epub') !== -1)

        // Verify file content for first (and only) file
        get.concat(host + '/0', function (err, data) {
          t.error(err)
          t.deepEqual(data, common.leaves.content)

          server.close(function () { t.pass('server closed') })
          client.destroy(function () { t.pass('client destroyed') })
        })
      })
    })
  })
})