mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.1 KiB
81 lines
2.1 KiB
var common = require('../common-tap')
|
|
var path = require('path')
|
|
var test = require('tap').test
|
|
var rimraf = require('rimraf')
|
|
var npm = require('../../')
|
|
var mr = require('npm-registry-mock')
|
|
var pkg = path.resolve(__dirname, 'outdated-depth-deep')
|
|
var cache = path.resolve(pkg, 'cache')
|
|
|
|
var osenv = require('osenv')
|
|
var mkdirp = require('mkdirp')
|
|
var fs = require('fs')
|
|
|
|
var pj = JSON.stringify({
|
|
'name': 'whatever',
|
|
'description': 'yeah idk',
|
|
'version': '1.2.3',
|
|
'main': 'index.js',
|
|
'dependencies': {
|
|
'underscore': '1.3.1',
|
|
'npm-test-peer-deps': '0.0.0'
|
|
},
|
|
'repository': 'git://github.com/luk-/whatever'
|
|
}, null, 2)
|
|
|
|
function cleanup () {
|
|
process.chdir(osenv.tmpdir())
|
|
rimraf.sync(pkg)
|
|
}
|
|
|
|
function setup () {
|
|
mkdirp.sync(pkg)
|
|
process.chdir(pkg)
|
|
fs.writeFileSync(path.resolve(pkg, 'package.json'), pj)
|
|
}
|
|
|
|
test('setup', function (t) {
|
|
cleanup()
|
|
setup()
|
|
t.end()
|
|
})
|
|
|
|
test('outdated depth deep (9999)', function (t) {
|
|
var underscoreOutdated = ['underscore', '1.3.1', '1.3.1', '1.5.1', '1.3.1']
|
|
var childPkg = path.resolve(pkg, 'node_modules', 'npm-test-peer-deps')
|
|
|
|
var expected = [ [childPkg].concat(underscoreOutdated).concat([null]),
|
|
[pkg].concat(underscoreOutdated).concat([null]) ]
|
|
|
|
process.chdir(pkg)
|
|
|
|
mr({ port: common.port }, function (er, s) {
|
|
npm.load({
|
|
cache: cache,
|
|
loglevel: 'silent',
|
|
registry: common.registry,
|
|
depth: 9999
|
|
},
|
|
function () {
|
|
npm.install('.', function (er) {
|
|
if (er) throw new Error(er)
|
|
var nodepath = process.env.npm_node_execpath || process.env.NODE || process.execPath
|
|
var clibin = path.resolve(__dirname, '../../bin/npm-cli.js')
|
|
npm.explore('npm-test-peer-deps', nodepath, clibin, 'install', 'underscore', function (er) {
|
|
if (er) throw new Error(er)
|
|
npm.outdated(function (err, d) {
|
|
if (err) throw new Error(err)
|
|
t.deepEqual(d, expected)
|
|
s.close()
|
|
t.end()
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|
|
|
|
test('cleanup', function (t) {
|
|
cleanup()
|
|
t.end()
|
|
})
|
|
|