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

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/npm-registry-client/test/fetch-basic.js')
-rw-r--r--deps/npm/node_modules/npm-registry-client/test/fetch-basic.js78
1 files changed, 39 insertions, 39 deletions
diff --git a/deps/npm/node_modules/npm-registry-client/test/fetch-basic.js b/deps/npm/node_modules/npm-registry-client/test/fetch-basic.js
index 68e67f023dd..7bf4d1bd1a3 100644
--- a/deps/npm/node_modules/npm-registry-client/test/fetch-basic.js
+++ b/deps/npm/node_modules/npm-registry-client/test/fetch-basic.js
@@ -1,70 +1,70 @@
-var resolve = require("path").resolve
-var createReadStream = require("graceful-fs").createReadStream
-var readFileSync = require("graceful-fs").readFileSync
+var resolve = require('path').resolve
+var createReadStream = require('graceful-fs').createReadStream
+var readFileSync = require('graceful-fs').readFileSync
-var test = require("tap").test
-var concat = require("concat-stream")
+var test = require('tap').test
+var concat = require('concat-stream')
-var server = require("./lib/server.js")
-var common = require("./lib/common.js")
+var server = require('./lib/server.js')
+var common = require('./lib/common.js')
var client = common.freshClient()
-var tgz = resolve(__dirname, "./fixtures/underscore/1.3.3/package.tgz")
+var tgz = resolve(__dirname, './fixtures/underscore/1.3.3/package.tgz')
function nop () {}
-var URI = "https://npm.registry:8043/rewrite"
-var USERNAME = "username"
-var PASSWORD = "hi"
-var EMAIL = "n@p.m"
-var HEADERS = {
- "npm-custom" : "lolbutts"
+var URI = 'https://npm.registry:8043/rewrite'
+var USERNAME = 'username'
+var PASSWORD = 'hi'
+var EMAIL = 'n@p.m'
+var HEADERS = {
+ 'npm-custom': 'lolbutts'
}
-var AUTH = {
- username : USERNAME,
- password : PASSWORD,
- email : EMAIL
+var AUTH = {
+ username: USERNAME,
+ password: PASSWORD,
+ email: EMAIL
}
-var PARAMS = {
- headers : HEADERS,
- auth : AUTH
+var PARAMS = {
+ headers: HEADERS,
+ auth: AUTH
}
-test("fetch call contract", function (t) {
+test('fetch call contract', function (t) {
t.throws(function () {
client.get(undefined, PARAMS, nop)
- }, "requires a URI")
+ }, 'requires a URI')
t.throws(function () {
client.get([], PARAMS, nop)
- }, "requires URI to be a string")
+ }, 'requires URI to be a string')
t.throws(function () {
client.get(URI, undefined, nop)
- }, "requires params object")
+ }, 'requires params object')
t.throws(function () {
- client.get(URI, "", nop)
- }, "params must be object")
+ client.get(URI, '', nop)
+ }, 'params must be object')
t.throws(function () {
client.get(URI, PARAMS, undefined)
- }, "requires callback")
+ }, 'requires callback')
t.throws(function () {
- client.get(URI, PARAMS, "callback")
- }, "callback must be function")
+ client.get(URI, PARAMS, 'callback')
+ }, 'callback must be function')
t.end()
})
-test("basic fetch", function (t) {
- server.expect("/underscore/-/underscore-1.3.3.tgz", function (req, res) {
- t.equal(req.method, "GET", "got expected method")
+test('basic fetch', function (t) {
+ server.expect('/underscore/-/underscore-1.3.3.tgz', function (req, res) {
+ t.equal(req.method, 'GET', 'got expected method')
res.writeHead(200, {
- "content-type" : "application/x-tar",
- "content-encoding" : "gzip"
+ 'content-type': 'application/x-tar',
+ 'content-encoding': 'gzip'
})
createReadStream(tgz).pipe(res)
@@ -72,18 +72,18 @@ test("basic fetch", function (t) {
var defaulted = {}
client.fetch(
- "http://localhost:1337/underscore/-/underscore-1.3.3.tgz",
+ 'http://localhost:1337/underscore/-/underscore-1.3.3.tgz',
defaulted,
function (er, res) {
- t.ifError(er, "loaded successfully")
+ t.ifError(er, 'loaded successfully')
var sink = concat(function (data) {
t.deepEqual(data, readFileSync(tgz))
t.end()
})
- res.on("error", function (error) {
- t.ifError(error, "no errors on stream")
+ res.on('error', function (error) {
+ t.ifError(error, 'no errors on stream')
})
res.pipe(sink)