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

publish-access-unscoped.js « tap « test - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 023bfba5f2dd825df518bc53d6f3cfbfc3b9e618 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
var fs = require("fs")
var path = require("path")

var test = require("tap").test
var mkdirp = require("mkdirp")
var rimraf = require("rimraf")
var nock = require("nock")

var npm = require("../../")
var common = require("../common-tap.js")

var pkg = path.join(__dirname, "publish-access-unscoped")

// TODO: nock uses setImmediate, breaks 0.8: replace with mockRegistry
if (!global.setImmediate) {
  global.setImmediate = function () {
    var args = [arguments[0], 0].concat([].slice.call(arguments, 1))
    setTimeout.apply(this, args)
  }
}

test("setup", function (t) {
  mkdirp(path.join(pkg, "cache"), function () {
    var configuration = {
      cache    : path.join(pkg, "cache"),
      loglevel : "silent",
      registry : common.registry
    }

    npm.load(configuration, next)
  })

  function next (er) {
    t.ifError(er, "npm loaded successfully")

    process.chdir(pkg)
    fs.writeFile(
      path.join(pkg, "package.json"),
      JSON.stringify({
        name: "publish-access",
        version: "1.2.5"
      }),
      "ascii",
      function (er) {
        t.ifError(er)

        t.pass("setup done")
        t.end()
      }
    )
  }
})

test("unscoped packages can be explicitly set as public", function (t) {
  var put = nock(common.registry)
              .put("/publish-access")
              .reply(201, verify)

  npm.config.set("access", "public")
  npm.commands.publish([], false, function (er) {
    t.ifError(er, "published without error")

    put.done()
    t.end()
  })

  function verify (_, body) {
    t.doesNotThrow(function () {
      var parsed = JSON.parse(body)
      t.equal(parsed.access, "public", "access level is correct")
    }, "converted body back into object")

    return {ok: true}
  }
})

test("cleanup", function (t) {
  process.chdir(__dirname)
  rimraf(pkg, function (er) {
    t.ifError(er)

    t.end()
  })
})