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
|
var fs = require('fs')
var path = require('path')
var mkdirp = require('mkdirp')
var mr = require('npm-registry-mock')
var osenv = require('osenv')
var rimraf = require('rimraf')
var test = require('tap').test
var common = require('../common-tap.js')
var npm = npm = require('../../')
var pkg = path.resolve(__dirname, 'shrinkwrap-optional-dependency')
test('shrinkwrap adds optional property when optional dependency', function (t) {
t.plan(1)
mr({port: common.port}, function (er, s) {
function fail (err) {
s.close() // Close on failure to allow node to exit
t.fail(err)
}
setup(function (err) {
if (err) return fail(err)
// Install with the optional dependency
npm.install('.', function (err) {
if (err) return fail(err)
writePackage()
npm.commands.shrinkwrap([], true, function (err, results) {
if (err) return fail(err)
t.deepEqual(results.dependencies, desired.dependencies)
s.close()
t.end()
})
})
})
})
})
test('cleanup', function (t) {
cleanup()
t.end()
})
var desired = {
name: 'npm-test-shrinkwrap-optional-dependency',
version: '0.0.0',
dependencies: {
'test-package': {
version: '0.0.0',
resolved: common.registry + '/test-package/-/test-package-0.0.0.tgz',
integrity: 'sha1-sNMrbEXCWcV4uiADdisgUTG9+9E='
},
'underscore': {
version: '1.3.3',
resolved: 'http://localhost:1337/underscore/-/underscore-1.3.3.tgz',
optional: true,
integrity: 'sha1-R6xTaD2vgyv6lS4XdEF9pHgXrkI='
}
}
}
var json = {
author: 'Maximilian Antoni',
name: 'npm-test-shrinkwrap-optional-dependency',
version: '0.0.0',
dependencies: {
'test-package': '0.0.0'
},
optionalDependencies: {
'underscore': '1.3.3'
}
}
function writePackage () {
fs.writeFileSync(path.join(pkg, 'package.json'), JSON.stringify(json, null, 2))
}
function setup (cb) {
cleanup()
mkdirp.sync(pkg)
writePackage()
process.chdir(pkg)
var opts = {
cache: path.resolve(pkg, 'cache'),
registry: common.registry
}
npm.load(opts, cb)
}
function cleanup () {
process.chdir(osenv.tmpdir())
rimraf.sync(pkg)
}
|