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>2014-12-17 02:27:00 +0300
committerFeross Aboukhadijeh <feross@feross.org>2014-12-17 02:43:06 +0300
commit9e55cc7eec04e07060f32d1695b44f30a7c25187 (patch)
tree02eb370c356f97733c81649de7edba888839745f /test/basic-node.js
parent8e6503ab5dcbc698c02de88b5e0f65e015269591 (diff)
add client.seed tests (buffer, blob, path to file)
Diffstat (limited to 'test/basic-node.js')
-rw-r--r--test/basic-node.js30
1 files changed, 19 insertions, 11 deletions
diff --git a/test/basic-node.js b/test/basic-node.js
index 9d18928..950ba84 100644
--- a/test/basic-node.js
+++ b/test/basic-node.js
@@ -8,11 +8,7 @@ var test = require('tape')
var leavesPath = __dirname + '/torrents/leaves.torrent'
var leaves = fs.readFileSync(leavesPath)
var leavesTorrent = parseTorrent(leaves)
-
-function verify (t, client, torrent) {
- t.equal(torrent.infoHash, leavesTorrent.infoHash)
- client.destroy()
-}
+var leavesBookPath = __dirname + '/content/Leaves of Grass by Walt Whitman.epub'
test('client.add (http url to a torrent file (string))', function (t) {
t.plan(1)
@@ -25,9 +21,10 @@ test('client.add (http url to a torrent file (string))', function (t) {
if (err) throw err
server.listen(port, function () {
var url = 'http://127.0.0.1:' + port
- var client1 = new WebTorrent({ dht: false, trackers: false })
- client1.add(url, function (torrent) {
- verify(t, client1, torrent)
+ var client = new WebTorrent({ dht: false, trackers: false })
+ client.add(url, function (torrent) {
+ t.equal(torrent.infoHash, leavesTorrent.infoHash)
+ client.destroy()
server.close()
})
})
@@ -37,8 +34,19 @@ test('client.add (http url to a torrent file (string))', function (t) {
test('client.add (filesystem path to a torrent file (string))', function (t) {
t.plan(1)
- var client1 = new WebTorrent({ dht: false, trackers: false })
- client1.add(leavesPath, function (torrent) {
- verify(t, client1, torrent)
+ var client = new WebTorrent({ dht: false, trackers: false })
+ client.add(leavesPath, function (torrent) {
+ t.equal(torrent.infoHash, leavesTorrent.infoHash)
+ client.destroy()
+ })
+})
+
+test('client.seed (filesystem path to file (string))', function (t) {
+ t.plan(1)
+
+ var client = new WebTorrent({ dht: false, trackers: false })
+ client.seed(leavesBookPath, function (torrent) {
+ t.equal(torrent.infoHash, leavesTorrent.infoHash)
+ client.destroy()
})
})