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

unpublish-scoped.js « test « npm-registry-client « node_modules « npm « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 88ee13f3771f67f75ae527d8e84f05eb934419a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
var tap = require("tap")

var server = require("./lib/server.js")
var common = require("./lib/common.js")
var client = common.freshClient()

var cache = require("./fixtures/@npm/npm-registry-client/cache.json")

var REV     = "/-rev/213-0a1049cf56172b7d9a1184742c6477b9"
var PACKAGE = "/@npm%2fnpm-registry-client"
var URI     = common.registry + PACKAGE
var TOKEN   = "of-glad-tidings"
var VERSION = "3.0.6"
var AUTH    = {
  token : TOKEN
}
var PARAMS  = {
  version : VERSION,
  auth    : AUTH
}

tap.test("unpublish a package", function (t) {
  server.expect("GET", "/@npm%2fnpm-registry-client?write=true", function (req, res) {
    t.equal(req.method, "GET")

    res.json(cache)
  })

  server.expect("PUT", "/@npm%2fnpm-registry-client" + 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", PACKAGE, function (req, res) {
    t.equal(req.method, "GET")

    res.json(cache)
  })

  server.expect("DELETE", PACKAGE+"/-"+PACKAGE+"-"+VERSION+".tgz"+REV, function (req, res) {
    t.equal(req.method, "DELETE")

    res.json({unpublished:true})
  })

  client.unpublish(URI, PARAMS, function (er) {
    t.ifError(er, "no errors")

    t.end()
  })
})