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

limit-methods.js « node « test - github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fccaaf1125acde9ed595f467b6cbb1e960628b3d (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
const fixtures = require('webtorrent-fixtures')
const test = require('tape')
const MemoryChunkStore = require('memory-chunk-store')
const WebTorrent = require('../../index.js')

const DOWNLOAD_SPEED_LIMIT = 200 * 1000 // 200 KB/s
const UPLOAD_SPEED_LIMIT = 200 * 1000 // 200 KB/s

function testSpeed (t, downloaderOpts, uploaderOpts, cb) {
  const { downloadLimit, ...restDownloaderOpts } = downloaderOpts
  const { uploadLimit, ...restUploaderOpts } = uploaderOpts

  const client1 = new WebTorrent({ dht: false, tracker: false, ...restDownloaderOpts })
  const client2 = new WebTorrent({ dht: false, tracker: false, ...restUploaderOpts })

  if (downloadLimit) client1.throttleDownload(downloadLimit)
  if (uploadLimit) client2.throttleUpload(uploadLimit)

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

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

  const downloadSpeeds = []
  const uploadSpeeds = []

  // Start seeding
  client2.seed(fixtures.leaves.content, {
    name: 'Leaves of Grass by Walt Whitman.epub',
    announce: []
  }, torrent => {
    torrent.on('upload', () => {
      uploadSpeeds.push(torrent.uploadSpeed)
    })
  })

  client2.on('listening', () => {
    // Start downloading
    const torrent = client1.add(fixtures.leaves.parsedTorrent.infoHash, { store: MemoryChunkStore })

    // Manually connect peers
    torrent.addPeer(`127.0.0.1:${client2.address().port}`)

    torrent.on('download', () => {
      downloadSpeeds.push(torrent.downloadSpeed)
    })

    torrent.on('done', () => {
      cb(downloadSpeeds, uploadSpeeds)

      client1.destroy(err => { t.error(err, 'client 1 destroyed') })
      client2.destroy(err => { t.error(err, 'client 2 destroyed') })
    })
  })
}

test('Limit download speed by methods when tcp connection', t => {
  t.plan(3)

  testSpeed(t, { downloadLimit: DOWNLOAD_SPEED_LIMIT }, {}, downloadSpeeds => {
    t.ok(downloadSpeeds.every(downloadSpeed => downloadSpeed <= DOWNLOAD_SPEED_LIMIT))
  })
})

test('Limit upload speed by methods when tcp connection', t => {
  t.plan(3)

  testSpeed(t, {}, { uploadLimit: UPLOAD_SPEED_LIMIT }, (_, uploadSpeeds) => {
    t.ok(uploadSpeeds.every(uploadSpeed => uploadSpeed <= UPLOAD_SPEED_LIMIT))
  })
})

test('Limit download speed by methods when utp connection', t => {
  t.plan(3)

  testSpeed(t, { utp: true, downloadLimit: DOWNLOAD_SPEED_LIMIT }, { utp: true }, downloadSpeeds => {
    t.ok(downloadSpeeds.every(downloadSpeed => downloadSpeed <= DOWNLOAD_SPEED_LIMIT))
  })
})

test('Limit upload speed by methods when utp connection', t => {
  t.plan(3)

  testSpeed(t, { utp: true }, { utp: true, uploadLimit: UPLOAD_SPEED_LIMIT }, (_, uploadSpeeds) => {
    t.ok(uploadSpeeds.every(uploadSpeed => uploadSpeed <= UPLOAD_SPEED_LIMIT))
  })
})