-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtest.js
109 lines (88 loc) · 3.5 KB
/
test.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
var cp = require('child_process')
var extend = require('xtend')
var fixtures = require('webtorrent-fixtures')
var parseTorrent = require('parse-torrent')
var path = require('path')
var spawn = require('cross-spawn-async')
var test = require('tape')
var CMD_PATH = path.resolve(__dirname, 'bin', 'cmd.js')
var CMD = 'node ' + CMD_PATH
test('Command line: webtorrent help', function (t) {
t.plan(6)
cp.exec(CMD + ' help', function (err, data) {
t.error(err) // no error, exit code 0
t.ok(data.toLowerCase().indexOf('usage') !== -1)
})
cp.exec(CMD + ' --help', function (err, data) {
t.error(err) // no error, exit code 0
t.ok(data.toLowerCase().indexOf('usage') !== -1)
})
cp.exec(CMD, function (err, data) {
t.error(err) // no error, exit code 0
t.ok(data.toLowerCase().indexOf('usage') !== -1)
})
})
test('Command line: webtorrent version', function (t) {
t.plan(6)
var expectedVersion = require('./package.json').version + '\n'
cp.exec(CMD + ' version', function (err, data) {
t.error(err)
t.ok(data.indexOf(expectedVersion))
})
cp.exec(CMD + ' --version', function (err, data) {
t.error(err)
t.ok(data.indexOf(expectedVersion))
})
cp.exec(CMD + ' -v', function (err, data) {
t.error(err)
t.ok(data.indexOf(expectedVersion))
})
})
test('Command line: webtorrent info /path/to/file.torrent', function (t) {
t.plan(3)
cp.exec(CMD + ' info ' + fixtures.leaves.torrentPath, function (err, data) {
t.error(err)
data = JSON.parse(data)
var parsedTorrent = extend(fixtures.leaves.parsedTorrent)
delete parsedTorrent.info
delete parsedTorrent.infoBuffer
delete parsedTorrent.infoHashBuffer
t.deepEqual(data, JSON.parse(JSON.stringify(parsedTorrent, undefined, 2)))
})
cp.exec(CMD + ' info /bad/path', function (err) {
t.ok(err instanceof Error)
})
})
test('Command line: webtorrent info magnet_uri', function (t) {
t.plan(2)
var leavesMagnetURI = 'magnet:?xt=urn:btih:d2474e86c95b19b8bcfdb92bc12c9d44667cfa36&dn=Leaves+of+Grass+by+Walt+Whitman.epub&tr=http%3A%2F%2Ftracker.example.com%2Fannounce&tr=http%3A%2F%2Ftracker.example2.com%2Fannounce&tr=udp%3A%2F%2Ftracker.example3.com%3A3310%2Fannounce&tr=udp%3A%2F%2Ftracker.example4.com%3A80&tr=udp%3A%2F%2Ftracker.example5.com%3A80&tr=udp%3A%2F%2Ftracker.example6.com%3A80'
cp.exec(CMD + ' info "' + leavesMagnetURI + '"', function (err, data) {
t.error(err)
data = JSON.parse(data)
var parsedTorrent = parseTorrent(leavesMagnetURI)
delete parsedTorrent.infoHashBuffer
t.deepEqual(data, JSON.parse(JSON.stringify(parsedTorrent, undefined, 2)))
})
})
test('Command line: webtorrent create /path/to/file', function (t) {
t.plan(1)
var child = spawn('node', [ CMD_PATH, 'create', fixtures.leaves.contentPath ])
child.on('error', function (err) { t.fail(err) })
var chunks = []
child.stdout.on('data', function (chunk) {
chunks.push(chunk)
})
child.stdout.on('end', function () {
var buf = Buffer.concat(chunks)
var parsedTorrent = parseTorrent(new Buffer(buf, 'binary'))
t.deepEqual(parsedTorrent.infoHash, 'd2474e86c95b19b8bcfdb92bc12c9d44667cfa36')
})
})
test('Command line: webtorrent download <torrent file> (with local content)', function (t) {
t.plan(2)
var fixturesPath = path.join(path.dirname(require.resolve('webtorrent-fixtures')), 'fixtures')
cp.exec(CMD + ' download ' + fixtures.leaves.torrentPath + ' --out ' + fixturesPath, function (err, data) {
t.error(err)
t.ok(data.indexOf('successfully') !== -1)
})
})