Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cmd.js « test - github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 59f0f56f8deecbc5c8d726fe7e4596410aaf8eb7 (plain)
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
110
111
112
113
var cp = require('child_process')
var fs = require('fs')
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(path.resolve(__dirname, '..', 'package.json')).version + '\n'

  cp.exec(CMD + ' version', function (err, data) {
    t.error(err)
    t.equal(data, expectedVersion)
  })

  cp.exec(CMD + ' --version', function (err, data) {
    t.error(err)
    t.equal(data, expectedVersion)
  })

  cp.exec(CMD + ' -v', function (err, data) {
    t.error(err)
    t.equal(data, expectedVersion)
  })
})

test('Command line: webtorrent info /path/to/file.torrent', function (t) {
  t.plan(3)

  var leavesPath = path.resolve(__dirname, 'torrents', 'leaves.torrent')
  var leaves = fs.readFileSync(leavesPath)

  cp.exec(CMD + ' info ' + leavesPath, function (err, data) {
    t.error(err)
    data = JSON.parse(data)
    var parsedTorrent = parseTorrent(leaves)
    delete parsedTorrent.info
    delete parsedTorrent.infoBuffer
    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:6a9759bffd5c0af65319979fb7832189f4f3c35d&dn=Leaves+of+Grass+by+Walt+Whitman.epub&tr=http%3A%2F%2Ftracker.bittorrent.am%2Fannounce&tr=http%3A%2F%2Ftracker.thepiratebay.org%2Fannounce&tr=udp%3A%2F%2Ffr33domtracker.h33t.com%3A3310%2Fannounce&tr=udp%3A%2F%2Ftracker.ccc.de%3A80&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&tr=udp%3A%2F%2Ftracker.publicbt.com%3A80'

  cp.exec(CMD + ' info "' + leavesMagnetURI + '"', function (err, data) {
    t.error(err)
    data = JSON.parse(data)
    var parsedTorrent = parseTorrent(leavesMagnetURI)
    t.deepEqual(data, JSON.parse(JSON.stringify(parsedTorrent, undefined, 2)))
  })
})

test('Command line: webtorrent create /path/to/file', function (t) {
  t.plan(1)

  var leavesPath = path.resolve(__dirname, 'content', 'Leaves of Grass by Walt Whitman.epub')

  var child = spawn('node', [ CMD_PATH, 'create', leavesPath ])
  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, '6a9759bffd5c0af65319979fb7832189f4f3c35d')
  })
})

test('Command line: webtorrent download --port 80', function (t) {
  t.plan(2)

  cp.exec(CMD + ' --port 80 --out test/content download test/torrents/leaves.torrent', function (err, data) {
    t.error(err)
    t.ok(data.indexOf('successfully') !== -1)
  })
})

// TODO: test 'webtorrent download /path/to/torrent'
// TODO: test 'webtorrent download magnet_uri'
// TODO: test 'webtorrent seed /path/to/file'