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
|
'use strict'
var path = require('path')
var fs = require('graceful-fs')
var mkdirp = require('mkdirp')
var rimraf = require('rimraf')
var test = require('tap').test
var requireInject = require('require-inject')
require('../common-tap.js')
var base = path.join(__dirname, path.basename(__filename, '.js'))
var baseJSON = {
name: 'base',
version: '1.0.0',
repository: {
type: 'git',
url: 'http://example.com'
},
scripts: {
prepublish: 'false'
}
}
var lastOpened
var npm = requireInject.installGlobally('../../lib/npm.js', {
'../../lib/utils/lifecycle.js': function (pkg, stage, wd, moreOpts, cb) {
if (typeof moreOpts === 'function') {
cb = moreOpts
}
cb(new Error("Shouldn't be calling lifecycle scripts"))
},
opener: function (url, options, cb) {
lastOpened = {url: url, options: options}
cb()
}
})
test('setup', function (t) {
cleanup()
setup()
t.end()
})
test('repo', function (t) {
process.chdir(base)
npm.load({browser: 'echo'}, function () {
npm.commands.repo([], function (err) {
t.ifError(err, 'no errors')
t.match(lastOpened.url, baseJSON.repository.url, 'opened the right url')
t.is(lastOpened.options.command, 'echo', 'opened with a specified browser')
t.end()
})
})
})
test('cleanup', function (t) {
cleanup()
t.end()
})
function saveJson (pkgPath, json) {
mkdirp.sync(pkgPath)
fs.writeFileSync(path.join(pkgPath, 'package.json'), JSON.stringify(json, null, 2))
}
function setup () {
saveJson(base, baseJSON)
}
function cleanup () {
rimraf.sync(base)
}
|