node/deps/npm/node_modules/npm-registry-client/test/star.js

61 lines
1.5 KiB
JavaScript
Raw Normal View History

2014-08-01 00:05:30 +08:00
var tap = require("tap")
var server = require("./lib/server.js")
var common = require("./lib/common.js")
var client = common.freshClient({
username : "othiym23",
password : "password",
email : "ogd@aoaioxxysz.net",
_auth : new Buffer("username : password").toString("base64"),
"always-auth" : true
})
var cache = require("./fixtures/underscore/cache.json")
var DEP_USER = "othiym23"
tap.test("star a package", function (t) {
server.expect("GET", "/underscore?write=true", function (req, res) {
t.equal(req.method, "GET")
res.json(cache)
})
server.expect("PUT", "/underscore", function (req, res) {
t.equal(req.method, "PUT")
var b = ""
req.setEncoding("utf8")
req.on("data", function (d) {
b += d
})
req.on("end", function () {
var updated = JSON.parse(b)
var already = [
"vesln", "mvolkmann", "lancehunt", "mikl", "linus", "vasc", "bat",
"dmalam", "mbrevoort", "danielr", "rsimoes", "thlorenz"
]
for (var i = 0; i < already.length; i++) {
var current = already[i]
t.ok(
updated.users[current],
current + " still likes this package"
)
}
t.ok(updated.users[DEP_USER], "user is in the starred list")
res.statusCode = 201
res.json({starred:true})
})
})
client.star("http://localhost:1337/underscore", true, function (error, data) {
t.notOk(error, "no errors")
t.ok(data.starred, "was starred")
t.end()
})
})