node/deps/npm/test/tap/install-report-just-installed.js
Forrest L Norvell 0928584444 deps: upgrade npm to 3.8.3
PR-URL: https://github.com/npm/node/pull/6
Reviewed-By: Evan Lucas <evanlucas@me.com>
2016-04-01 14:47:39 -07:00

77 lines
1.6 KiB
JavaScript

'use strict'
var path = require('path')
var test = require('tap').test
var Tacks = require('tacks')
var Dir = Tacks.Dir
var File = Tacks.File
var common = require('../common-tap.js')
var testdir = path.resolve(__dirname, path.basename(__filename, '.js'))
var fixture = new Tacks(Dir({
node_modules: Dir({
a: Dir({
'package.json': File({
name: 'a',
version: '1.0.0',
dependencies: {
b: '1.0.0'
}
}),
node_modules: Dir({
b: Dir({
'package.json': File({
name: 'b',
version: '1.0.0'
})
})
})
})
}),
'b-src': Dir({
'package.json': File({
name: 'b',
version: '1.0.0'
})
})
}))
function setup () {
cleanup()
fixture.create(testdir)
}
function cleanup () {
fixture.remove(testdir)
}
test('setup', function (t) {
setup()
t.end()
})
test('install-report', function (t) {
common.npm(['install', '--json', 'b-src'], {cwd: testdir}, function (err, code, stdout, stderr) {
if (err) throw err
t.is(code, 0, 'installed successfully')
t.is(stderr, '', 'no warnings')
try {
var report = JSON.parse(stdout)
t.pass('stdout was json')
} catch (ex) {
t.fail('stdout was json')
console.error(ex)
t.skip(2)
return t.end()
}
var depNames = Object.keys(report.dependencies)
t.is(depNames.length, 1, 'one dependency reported as installed')
t.ok(report.dependencies.b, 'that dependency was `b`')
t.end()
})
})
test('cleanup', function (t) {
cleanup()
t.end()
})