mirror of https://github.com/nodejs/node.git
53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
var test = require("tap").test
|
|
, fs = require("fs")
|
|
, path = require("path")
|
|
, existsSync = fs.existsSync || path.existsSync
|
|
, npm = require("../../")
|
|
, rimraf = require("rimraf")
|
|
, osenv = require("osenv")
|
|
, mr = require("npm-registry-mock")
|
|
, common = require("../common-tap.js")
|
|
, server
|
|
|
|
var pkg = path.resolve(__dirname, "circular-dep")
|
|
|
|
test("installing a package that depends on the current package", function (t) {
|
|
t.plan(1)
|
|
|
|
setup(function () {
|
|
npm.install("optimist", function (err) {
|
|
if (err) return t.fail(err)
|
|
npm.dedupe(function(err) {
|
|
if (err) return t.fail(err)
|
|
t.ok(existsSync(path.resolve(pkg,
|
|
"minimist", "node_modules", "optimist",
|
|
"node_modules", "minimist"
|
|
)))
|
|
cleanup()
|
|
server.close()
|
|
})
|
|
})
|
|
})
|
|
})
|
|
|
|
function setup (cb) {
|
|
cleanup()
|
|
process.chdir(path.resolve(pkg, "minimist"))
|
|
|
|
fs.mkdirSync(path.resolve(pkg, "minimist/node_modules"))
|
|
mr(common.port, function (s) {
|
|
server = s
|
|
npm.load({
|
|
loglevel: "silent",
|
|
registry: common.registry,
|
|
cache: path.resolve(pkg, "cache")
|
|
}, cb)
|
|
})
|
|
}
|
|
|
|
function cleanup() {
|
|
process.chdir(osenv.tmpdir())
|
|
rimraf.sync(path.resolve(pkg, "minimist/node_modules"))
|
|
rimraf.sync(path.resolve(pkg, "cache"))
|
|
}
|