mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.3 KiB
59 lines
1.3 KiB
var tap = require("tap")
|
|
|
|
var server = require("./lib/server.js")
|
|
var common = require("./lib/common.js")
|
|
|
|
var nerfed = "//localhost:" + server.port + "/:"
|
|
|
|
var configuration = {}
|
|
configuration[nerfed + "_authToken"] = "of-glad-tidings"
|
|
|
|
var client = common.freshClient(configuration)
|
|
|
|
var cache = require("./fixtures/underscore/cache.json")
|
|
|
|
var REV = "/-rev/72-47f2986bfd8e8b55068b204588bbf484"
|
|
var VERSION = "1.3.2"
|
|
|
|
tap.test("unpublish 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" + REV, function (req, res) {
|
|
t.equal(req.method, "PUT")
|
|
|
|
var b = ""
|
|
req.setEncoding("utf-8")
|
|
req.on("data", function (d) {
|
|
b += d
|
|
})
|
|
|
|
req.on("end", function () {
|
|
var updated = JSON.parse(b)
|
|
t.notOk(updated.versions[VERSION])
|
|
})
|
|
|
|
res.json(cache)
|
|
})
|
|
|
|
server.expect("GET", "/underscore", function (req, res) {
|
|
t.equal(req.method, "GET")
|
|
|
|
res.json(cache)
|
|
})
|
|
|
|
server.expect("DELETE", "/underscore/-/underscore-1.3.2.tgz" + REV, function (req, res) {
|
|
t.equal(req.method, "DELETE")
|
|
|
|
res.json({unpublished:true})
|
|
})
|
|
|
|
client.unpublish("http://localhost:1337/underscore", VERSION, function (error) {
|
|
t.ifError(error, "no errors")
|
|
|
|
t.end()
|
|
})
|
|
})
|
|
|