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

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

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

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

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

  client.add(fixtures.leaves.torrent, torrent => {
    t.pass('got "torrent" event')
    const server = torrent.createServer()

    server.listen(0, () => {
      const port = server.address().port
      t.pass(`server is listening on ${port}`)

      let open = 2
      const close = () => {
        if (--open === 0) {
          server.close(() => {
            t.pass('server closed')
          })
          client.destroy(err => {
            t.error(err, 'client destroyed')
          })
        }
      }

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

      const host = `http://localhost:${port}`

      // Index page should list files in the torrent
      get.concat(`${host}/`, (err, res, data) => {
        t.error(err, 'got http response for /')
        data = data.toString()
        t.ok(data.includes('Leaves of Grass by Walt Whitman.epub'))

        // Verify file content for first (and only) file
        get.concat(`${host}/0`, (err, res, data) => {
          t.error(err, 'got http response for /0')
          t.deepEqual(data, fixtures.leaves.content)

          close()
        })
      })
    })
  })
})