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/dist-tags-fetch.js')
-rw-r--r--deps/npm/node_modules/npm-registry-client/test/dist-tags-fetch.js76
1 files changed, 38 insertions, 38 deletions
diff --git a/deps/npm/node_modules/npm-registry-client/test/dist-tags-fetch.js b/deps/npm/node_modules/npm-registry-client/test/dist-tags-fetch.js
index c108b6b3929..ef0901ea7fc 100644
--- a/deps/npm/node_modules/npm-registry-client/test/dist-tags-fetch.js
+++ b/deps/npm/node_modules/npm-registry-client/test/dist-tags-fetch.js
@@ -1,97 +1,97 @@
-var test = require("tap").test
+var test = require('tap').test
-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()
-function nop() {}
+function nop () {}
-var BASE_URL = "http://localhost:1337/"
-var URI = "/-/package/underscore/dist-tags"
-var TOKEN = "foo"
+var BASE_URL = 'http://localhost:1337/'
+var URI = '/-/package/underscore/dist-tags'
+var TOKEN = 'foo'
var AUTH = {
- token : TOKEN
+ token: TOKEN
}
-var PACKAGE = "underscore"
+var PACKAGE = 'underscore'
var PARAMS = {
- package : PACKAGE,
- auth : AUTH
+ 'package': PACKAGE,
+ auth: AUTH
}
-test("distTags.fetch call contract", function (t) {
+test('distTags.fetch call contract', function (t) {
t.throws(function () {
client.distTags.fetch(undefined, AUTH, nop)
- }, "requires a URI")
+ }, 'requires a URI')
t.throws(function () {
client.distTags.fetch([], PARAMS, nop)
- }, "requires URI to be a string")
+ }, 'requires URI to be a string')
t.throws(function () {
client.distTags.fetch(BASE_URL, undefined, nop)
- }, "requires params object")
+ }, 'requires params object')
t.throws(function () {
- client.distTags.fetch(BASE_URL, "", nop)
- }, "params must be object")
+ client.distTags.fetch(BASE_URL, '', nop)
+ }, 'params must be object')
t.throws(function () {
client.distTags.fetch(BASE_URL, PARAMS, undefined)
- }, "requires callback")
+ }, 'requires callback')
t.throws(function () {
- client.distTags.fetch(BASE_URL, PARAMS, "callback")
- }, "callback must be function")
+ client.distTags.fetch(BASE_URL, PARAMS, 'callback')
+ }, 'callback must be function')
t.throws(
function () {
var params = {
- auth : AUTH
+ auth: AUTH
}
client.distTags.fetch(BASE_URL, params, nop)
},
{
- name : "AssertionError",
- message : "must pass package name to distTags.fetch"
+ name: 'AssertionError',
+ message: 'must pass package name to distTags.fetch'
},
- "distTags.fetch must include package name"
+ 'distTags.fetch must include package name'
)
t.throws(
function () {
var params = {
- package : PACKAGE
+ 'package': PACKAGE
}
client.distTags.fetch(BASE_URL, params, nop)
},
- { name : "AssertionError", message : "must pass auth to distTags.fetch" },
- "distTags.fetch must include auth"
+ { name: 'AssertionError', message: 'must pass auth to distTags.fetch' },
+ 'distTags.fetch must include auth'
)
t.end()
})
-test("fetch dist-tags for a package", function (t) {
- server.expect("GET", URI, function (req, res) {
- t.equal(req.method, "GET")
+test('fetch dist-tags for a package', function (t) {
+ server.expect('GET', URI, function (req, res) {
+ t.equal(req.method, 'GET')
- var b = ""
- req.setEncoding("utf8")
- req.on("data", function (d) {
+ var b = ''
+ req.setEncoding('utf8')
+ req.on('data', function (d) {
b += d
})
- req.on("end", function () {
- t.notOk(b, "no request body")
+ req.on('end', function () {
+ t.notOk(b, 'no request body')
res.statusCode = 200
- res.json({ a : "1.0.0", b : "2.0.0", _etag : "xxx" })
+ res.json({ a: '1.0.0', b: '2.0.0', _etag: 'xxx' })
})
})
client.distTags.fetch(BASE_URL, PARAMS, function (error, data) {
- t.ifError(error, "no errors")
- t.same(data, { a : "1.0.0", b : "2.0.0" }, "etag filtered from response")
+ t.ifError(error, 'no errors')
+ t.same(data, { a: '1.0.0', b: '2.0.0' }, 'etag filtered from response')
t.end()
})