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

stream.js « test - github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c50b51fe1fdcd8157da172f9e6c912aea0181eed (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
/* global Blob */

var test = require('tape')
var Readable = require('readable-stream').Readable
var WebTorrent = require('../')
var concat = require('concat-stream')
var Tracker = require('bittorrent-tracker/server')

test('client.seed: stream', function (t) {
  t.plan(4)

  var announce = []
  var tracker = new Tracker()
  var seeder, client
  tracker.listen(function () {
    announce.push('http://localhost:'+tracker.http.address().port)
    seeder = new WebTorrent({ dht: false })
    client = new WebTorrent({ dht: false })

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

    seed()
  })
  tracker.on('start', function () {
    console.log('START', argument)
  })

  t.once('end', function () {
    seeder.destroy(function (err) { if (err) t.error(err, 'seeder destroyed') })
    client.destroy(function (err) { if (err) t.error(err, 'client destroyed') })
    tracker.close()
  })

  var stream = new Readable
  stream._read = function () {}
  stream.push('HELLO WORLD\n')
  stream.push(null)

  function seed () {
    var sopts = {
      name: 'hello.txt',
      pieceLength: 5,
      announce: announce
    }
    var copts = { announce: announce }
    seeder.seed([stream], sopts, function (torrent) {
      console.log(torrent.magnetURI)
      // this works: client.add(torrent, copts, function (dl) {
      client.add(torrent.magnetURI, copts, function (dl) {
        t.equal(dl.files.length, 1)
        t.equal(dl.files[0].name, 'hello.txt')
        t.equal(dl.files[0].length, 12)
        dl.files[0].createReadStream()
          .pipe(concat({ encoding: 'string' }, function (body) {
            t.equal(body, 'HELLO WORLD\n', 'content')
          }))
      })
    })
  }
})