From aadcb1c16585772adc3969e3a96823eeafe1dc05 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Sun, 21 Feb 2016 18:31:18 -0800 Subject: test: add successive sync client.add, client.remove, client.add, client.remove --- test/node/duplicates.js | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'test/node') diff --git a/test/node/duplicates.js b/test/node/duplicates.js index d54abdd..0421546 100644 --- a/test/node/duplicates.js +++ b/test/node/duplicates.js @@ -54,3 +54,27 @@ test('client.seed followed by two duplicate client.add calls', function (t) { }) }) }) + +test('successive sync client.add, client.remove, client.add, client.remove', function (t) { + t.plan(3) + + var client = new WebTorrent({ dht: false, tracker: false }) + client.on('error', function (err) { t.fail(err) }) + client.on('warning', function (err) { t.fail(err) }) + + client.seed(common.leaves.content, { + name: 'Leaves of Grass by Walt Whitman.epub' + }, function (torrent1) { + t.equal(client.torrents.length, 1) + + client.add(torrent1.infoHash) + client.remove(torrent1.infoHash) + client.add(torrent1.infoHash) + client.remove(torrent1.infoHash, function () { + client.destroy(function (err) { + t.error(err, 'destroyed client') + t.equal(client.torrents.length, 0) + }) + }) + }) +}) -- cgit v1.2.3