forked from webtorrent/webtorrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
51 lines (41 loc) · 1.57 KB
/
server.js
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
var common = require('../common')
var fs = require('fs')
var get = require('simple-get')
var test = require('tape')
var WebTorrent = require('../../')
test('torrent.createServer: programmatic http server', function (t) {
t.plan(9)
var client = new WebTorrent({ tracker: false, dht: false })
client.on('error', function (err) { t.fail(err) })
client.on('warning', function (err) { t.fail(err) })
client.add(common.leaves.torrent, function (torrent) {
t.pass('got "torrent" event')
var server = torrent.createServer()
server.listen(0, function () {
var port = server.address().port
t.pass('server is listening on ' + port)
// Seeding after server is created should work
torrent.load(fs.createReadStream(common.leaves.contentPath), function (err) {
t.error(err, 'loaded seed content into torrent')
})
var host = 'http://localhost:' + port
// Index page should list files in the torrent
get.concat(host + '/', function (err, data) {
t.error(err, 'got http response for /')
data = data.toString()
t.ok(data.indexOf('Leaves of Grass by Walt Whitman.epub') !== -1)
// Verify file content for first (and only) file
get.concat(host + '/0', function (err, data) {
t.error(err, 'got http response for /0')
t.deepEqual(data, common.leaves.content)
server.close(function () {
t.pass('server closed')
})
client.destroy(function (err) {
t.error(err, 'client destroyed')
})
})
})
})
})
})