Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/tap/cache-add-localdir-fallback.js')
-rw-r--r--test/tap/cache-add-localdir-fallback.js88
1 files changed, 44 insertions, 44 deletions
diff --git a/test/tap/cache-add-localdir-fallback.js b/test/tap/cache-add-localdir-fallback.js
index facd95c3a..ca8696d22 100644
--- a/test/tap/cache-add-localdir-fallback.js
+++ b/test/tap/cache-add-localdir-fallback.js
@@ -1,84 +1,84 @@
-var path = require("path")
-var test = require("tap").test
-var npm = require("../../lib/npm.js")
-var requireInject = require("require-inject")
+var path = require('path')
+var test = require('tap').test
+var npm = require('../../lib/npm.js')
+var requireInject = require('require-inject')
-var realizePackageSpecifier = requireInject("realize-package-specifier", {
- "fs": {
+var realizePackageSpecifier = requireInject('realize-package-specifier', {
+ 'fs': {
stat: function (file, cb) {
process.nextTick(function () {
switch (file) {
- case path.resolve("named"):
- cb(new Error("ENOENT"))
+ case path.resolve('named'):
+ cb(new Error('ENOENT'))
break
- case path.resolve("file.tgz"):
+ case path.resolve('file.tgz'):
cb(null, { isDirectory: function () { return false } })
break
- case path.resolve("dir-no-package"):
+ case path.resolve('dir-no-package'):
cb(null, { isDirectory: function () { return true } })
break
- case path.resolve("dir-no-package/package.json"):
- cb(new Error("ENOENT"))
+ case path.resolve('dir-no-package/package.json'):
+ cb(new Error('ENOENT'))
break
- case path.resolve("dir-with-package"):
+ case path.resolve('dir-with-package'):
cb(null, { isDirectory: function () { return true } })
break
- case path.resolve("dir-with-package/package.json"):
+ case path.resolve('dir-with-package/package.json'):
cb(null, {})
break
- case path.resolve(__dirname, "dir-with-package"):
+ case path.resolve(__dirname, 'dir-with-package'):
cb(null, { isDirectory: function () { return true } })
break
- case path.join(__dirname, "dir-with-package", "package.json"):
+ case path.join(__dirname, 'dir-with-package', 'package.json'):
cb(null, {})
break
- case path.resolve(__dirname, "file.tgz"):
+ case path.resolve(__dirname, 'file.tgz'):
cb(null, { isDirectory: function () { return false } })
break
default:
- throw new Error("Unknown test file passed to stat: " + file)
+ throw new Error('Unknown test file passed to stat: ' + file)
}
})
}
}
})
-npm.load({loglevel : "silent"}, function () {
- var cache = requireInject("../../lib/cache.js", {
- "realize-package-specifier": realizePackageSpecifier,
- "../../lib/cache/add-named.js": function addNamed (name, version, data, cb) {
- cb(null, "addNamed")
+npm.load({ loglevel: 'silent' }, function () {
+ var cache = requireInject('../../lib/cache.js', {
+ 'realize-package-specifier': realizePackageSpecifier,
+ '../../lib/cache/add-named.js': function addNamed (name, version, data, cb) {
+ cb(null, 'addNamed')
},
- "../../lib/cache/add-local.js": function addLocal (name, data, cb) {
- cb(null, "addLocal")
+ '../../lib/cache/add-local.js': function addLocal (name, data, cb) {
+ cb(null, 'addLocal')
}
})
- test("npm install localdir fallback", function (t) {
+ test('npm install localdir fallback', function (t) {
t.plan(12)
- cache.add("named", null, null, false, function (er, which) {
- t.ifError(er, "named was cached")
- t.is(which, "addNamed", "registry package name")
+ cache.add('named', null, null, false, function (er, which) {
+ t.ifError(er, 'named was cached')
+ t.is(which, 'addNamed', 'registry package name')
})
- cache.add("file.tgz", null, null, false, function (er, which) {
- t.ifError(er, "file.tgz was cached")
- t.is(which, "addLocal", "local file")
+ cache.add('file.tgz', null, null, false, function (er, which) {
+ t.ifError(er, 'file.tgz was cached')
+ t.is(which, 'addLocal', 'local file')
})
- cache.add("dir-no-package", null, null, false, function (er, which) {
- t.ifError(er, "local directory was cached")
- t.is(which, "addNamed", "local directory w/o package.json")
+ cache.add('dir-no-package', null, null, false, function (er, which) {
+ t.ifError(er, 'local directory was cached')
+ t.is(which, 'addNamed', 'local directory w/o package.json')
})
- cache.add("dir-with-package", null, null, false, function (er, which) {
- t.ifError(er, "local directory with package was cached")
- t.is(which,"addLocal", "local directory with package.json")
+ cache.add('dir-with-package', null, null, false, function (er, which) {
+ t.ifError(er, 'local directory with package was cached')
+ t.is(which, 'addLocal', 'local directory with package.json')
})
- cache.add("file:./dir-with-package", null, __dirname, false, function (er, which) {
- t.ifError(er, "local directory (as URI) with package was cached")
- t.is(which, "addLocal", "file: URI to local directory with package.json")
+ cache.add('file:./dir-with-package', null, __dirname, false, function (er, which) {
+ t.ifError(er, 'local directory (as URI) with package was cached')
+ t.is(which, 'addLocal', 'file: URI to local directory with package.json')
})
- cache.add("file:./file.tgz", null, __dirname, false, function (er, which) {
- t.ifError(er, "local file (as URI) with package was cached")
- t.is(which, "addLocal", "file: URI to local file with package.json")
+ cache.add('file:./file.tgz', null, __dirname, false, function (er, which) {
+ t.ifError(er, 'local file (as URI) with package was cached')
+ t.is(which, 'addLocal', 'file: URI to local file with package.json')
})
})
})