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:
authorDiego Rodríguez Baquero <github@diegorbaquero.com>2021-07-11 04:27:48 +0300
committerGitHub <noreply@github.com>2021-07-11 04:27:48 +0300
commit46033ae52eca6e22301bb8ed9566c498d3494711 (patch)
tree93cf4583fc9471dbe8e0b050c55b643638768f40 /test/node/download-dht-magnet.js
parentfeb719d5426df7ad45d00ffadecb931780763134 (diff)
fix: modernize code (#2134)
* fix: modernize code * standard fix
Diffstat (limited to 'test/node/download-dht-magnet.js')
-rw-r--r--test/node/download-dht-magnet.js48
1 files changed, 24 insertions, 24 deletions
diff --git a/test/node/download-dht-magnet.js b/test/node/download-dht-magnet.js
index 199d5bc..874b68a 100644
--- a/test/node/download-dht-magnet.js
+++ b/test/node/download-dht-magnet.js
@@ -7,55 +7,55 @@ const series = require('run-series')
const test = require('tape')
const WebTorrent = require('../../')
-test('Download using DHT (via magnet uri)', function (t) {
+test('Download using DHT (via magnet uri)', t => {
t.plan(12)
const dhtServer = new DHT({ bootstrap: false })
- dhtServer.on('error', function (err) { t.fail(err) })
- dhtServer.on('warning', function (err) { t.fail(err) })
+ dhtServer.on('error', err => { t.fail(err) })
+ dhtServer.on('warning', err => { t.fail(err) })
let client1, client2
series([
- function (cb) {
+ cb => {
dhtServer.listen(cb)
},
- function (cb) {
+ cb => {
let announced = false
let loaded = false
client1 = new WebTorrent({
tracker: false,
lsd: false,
- dht: { bootstrap: '127.0.0.1:' + dhtServer.address().port, host: networkAddress.ipv4() }
+ dht: { bootstrap: `127.0.0.1:${dhtServer.address().port}`, host: networkAddress.ipv4() }
})
- client1.dht.on('listening', function () {
+ client1.dht.on('listening', () => {
t.equal(client1.dhtPort, client1.dht.address().port)
})
- client1.on('error', function (err) { t.fail(err) })
- client1.on('warning', function (err) { t.fail(err) })
+ client1.on('error', err => { t.fail(err) })
+ client1.on('warning', err => { t.fail(err) })
const torrent = client1.add(fixtures.leaves.parsedTorrent, { store: MemoryChunkStore })
- torrent.on('dhtAnnounce', function () {
+ torrent.on('dhtAnnounce', () => {
t.pass('finished dht announce')
announced = true
maybeDone()
})
- torrent.on('ready', function () {
+ torrent.on('ready', () => {
// torrent metadata has been fetched -- sanity check it
t.equal(torrent.name, 'Leaves of Grass by Walt Whitman.epub')
const names = ['Leaves of Grass by Walt Whitman.epub']
- t.deepEqual(torrent.files.map(function (file) { return file.name }), names)
+ t.deepEqual(torrent.files.map(file => file.name), names)
})
- torrent.load(fs.createReadStream(fixtures.leaves.contentPath), function (err) {
+ torrent.load(fs.createReadStream(fixtures.leaves.contentPath), err => {
t.error(err)
loaded = true
maybeDone()
@@ -66,21 +66,21 @@ test('Download using DHT (via magnet uri)', function (t) {
}
},
- function (cb) {
+ cb => {
let gotBuffer = false
let gotDone = false
client2 = new WebTorrent({
tracker: false,
lsd: false,
- dht: { bootstrap: '127.0.0.1:' + dhtServer.address().port, host: networkAddress.ipv4() }
+ dht: { bootstrap: `127.0.0.1:${dhtServer.address().port}`, host: networkAddress.ipv4() }
})
- client2.on('error', function (err) { t.fail(err) })
- client2.on('warning', function (err) { t.fail(err) })
+ client2.on('error', err => { t.fail(err) })
+ client2.on('warning', err => { t.fail(err) })
- client2.on('torrent', function (torrent) {
- torrent.files[0].getBuffer(function (err, buf) {
+ client2.on('torrent', torrent => {
+ torrent.files[0].getBuffer((err, buf) => {
t.error(err)
t.deepEqual(buf, fixtures.leaves.content, 'downloaded correct content')
@@ -88,7 +88,7 @@ test('Download using DHT (via magnet uri)', function (t) {
maybeDone()
})
- torrent.once('done', function () {
+ torrent.once('done', () => {
t.pass('client2 downloaded torrent from client1')
gotDone = true
@@ -102,16 +102,16 @@ test('Download using DHT (via magnet uri)', function (t) {
if (gotBuffer && gotDone) cb(null)
}
}
- ], function (err) {
+ ], err => {
t.error(err)
- client1.destroy(function (err) {
+ client1.destroy(err => {
t.error(err, 'client1 destroyed')
})
- client2.destroy(function (err) {
+ client2.destroy(err => {
t.error(err, 'client2 destroyed')
})
- dhtServer.destroy(function (err) {
+ dhtServer.destroy(err => {
t.error(err, 'dht server destroyed')
})
})