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

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2016-02-28 06:10:08 +0300
committerFeross Aboukhadijeh <feross@feross.org>2016-02-28 06:10:08 +0300
commitff552814b86d11c171226c20efd9c9d1c3d968be (patch)
tree13721145118b68b20ca6eaa478ba259cab703252 /test/client-add-duplicate-trackers.js
parent0d2dc8c90900d1ea2103f6a457c76c7998eab3a6 (diff)
use webtorrent-fixtures
Diffstat (limited to 'test/client-add-duplicate-trackers.js')
-rw-r--r--test/client-add-duplicate-trackers.js24
1 files changed, 12 insertions, 12 deletions
diff --git a/test/client-add-duplicate-trackers.js b/test/client-add-duplicate-trackers.js
index 70cec07..6c58db7 100644
--- a/test/client-add-duplicate-trackers.js
+++ b/test/client-add-duplicate-trackers.js
@@ -1,5 +1,5 @@
-var common = require('./common')
var extend = require('xtend')
+var fixtures = require('webtorrent-fixtures')
var test = require('tape')
var WebTorrent = require('../')
@@ -11,13 +11,13 @@ test('client.add: duplicate trackers', function (t) {
client.on('error', function (err) { t.fail(err) })
client.on('warning', function (err) { t.fail(err) })
- var torrent = client.add(common.leaves.torrent, {
+ var torrent = client.add(fixtures.leaves.torrent, {
announce: [ 'wss://example.com', 'wss://example.com', 'wss://example.com' ]
})
torrent.on('ready', function () {
- t.equal(torrent.magnetURI, common.leaves.magnetURI + '&tr=' + encodeURIComponent('wss://example.com'))
- client.remove(common.leaves.magnetURI, function (err) { t.error(err, 'torrent destroyed') })
+ t.equal(torrent.magnetURI, fixtures.leaves.magnetURI + '&tr=' + encodeURIComponent('wss://example.com'))
+ client.remove(fixtures.leaves.magnetURI, function (err) { t.error(err, 'torrent destroyed') })
client.destroy(function (err) { t.error(err, 'client destroyed') })
})
})
@@ -35,15 +35,15 @@ test('client.add: duplicate trackers, with multiple torrents', function (t) {
client.on('error', function (err) { t.fail(err) })
client.on('warning', function (err) { t.fail(err) })
- var torrent1 = client.add(common.leaves.torrent, opts)
+ var torrent1 = client.add(fixtures.leaves.torrent, opts)
torrent1.on('ready', function () {
- t.equal(torrent1.magnetURI, common.leaves.magnetURI + '&tr=' + encodeURIComponent('wss://example.com'))
+ t.equal(torrent1.magnetURI, fixtures.leaves.magnetURI + '&tr=' + encodeURIComponent('wss://example.com'))
- var torrent2 = client.add(common.alice.torrent, opts)
+ var torrent2 = client.add(fixtures.alice.torrent, opts)
torrent2.on('ready', function () {
- t.equal(torrent2.magnetURI, common.alice.magnetURI + '&tr=' + encodeURIComponent('wss://example.com'))
+ t.equal(torrent2.magnetURI, fixtures.alice.magnetURI + '&tr=' + encodeURIComponent('wss://example.com'))
torrent1.destroy(function (err) { t.error(err, 'torrent1 destroyed') })
torrent2.destroy(function (err) { t.error(err, 'torrent2 destroyed') })
@@ -61,10 +61,10 @@ test('client.add: duplicate trackers (including in .torrent file), multiple torr
}
// Include the duplicate trackers in the .torrent files
- var parsedTorrentLeaves = extend(common.leaves.parsedTorrent)
+ var parsedTorrentLeaves = extend(fixtures.leaves.parsedTorrent)
parsedTorrentLeaves.announce = [ 'wss://example.com', 'wss://example.com', 'wss://example.com' ]
- var parsedTorrentAlice = extend(common.alice.parsedTorrent)
+ var parsedTorrentAlice = extend(fixtures.alice.parsedTorrent)
parsedTorrentAlice.announce = [ 'wss://example.com', 'wss://example.com', 'wss://example.com' ]
var client = new WebTorrent({ dht: false, tracker: false })
@@ -75,12 +75,12 @@ test('client.add: duplicate trackers (including in .torrent file), multiple torr
var torrent1 = client.add(parsedTorrentLeaves, opts)
torrent1.on('ready', function () {
- t.equal(torrent1.magnetURI, common.leaves.magnetURI + '&tr=' + encodeURIComponent('wss://example.com'))
+ t.equal(torrent1.magnetURI, fixtures.leaves.magnetURI + '&tr=' + encodeURIComponent('wss://example.com'))
var torrent2 = client.add(parsedTorrentAlice, opts)
torrent2.on('ready', function () {
- t.equal(torrent2.magnetURI, common.alice.magnetURI + '&tr=' + encodeURIComponent('wss://example.com'))
+ t.equal(torrent2.magnetURI, fixtures.alice.magnetURI + '&tr=' + encodeURIComponent('wss://example.com'))
torrent1.destroy(function (err) { t.error(err, 'torrent1 destroyed') })
torrent2.destroy(function (err) { t.error(err, 'torrent2 destroyed') })