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

whoami.js « test « npm-registry-client « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ccb173a09c00b26a2f75faed86b22fc974ba7b23 (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
var test = require("tap").test

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

function nop () {}

var WHOIAM = "wombat"
var TOKEN  = "not-bad-meaning-bad-but-bad-meaning-wombat"
var AUTH   = { token : TOKEN }
var PARAMS = { auth : AUTH }

test("whoami call contract", function (t) {
  t.throws(function () {
    client.whoami(undefined, AUTH, nop)
  }, "requires a URI")

  t.throws(function () {
    client.whoami([], AUTH, nop)
  }, "requires URI to be a string")

  t.throws(function () {
    client.whoami(common.registry, undefined, nop)
  }, "requires params object")

  t.throws(function () {
    client.whoami(common.registry, "", nop)
  }, "params must be object")

  t.throws(function () {
    client.whoami(common.registry, AUTH, undefined)
  }, "requires callback")

  t.throws(function () {
    client.whoami(common.registry, AUTH, "callback")
  }, "callback must be function")

  t.throws(
    function () {
      var params = {}
      client.whoami(common.registry, params, nop)
    },
    { name : "AssertionError", message : "must pass auth to whoami" },
    "must pass auth to whoami"
  )

  t.end()
})

test("whoami", function (t) {
  server.expect("GET", "/whoami", function (req, res) {
    t.equal(req.method, "GET")
    // only available for token-based auth for now
    t.equal(req.headers.authorization, "Bearer not-bad-meaning-bad-but-bad-meaning-wombat")

    res.json({username : WHOIAM})
  })

  client.whoami(common.registry, PARAMS, function (error, wombat) {
    t.ifError(error, "no errors")
    t.equal(wombat, WHOIAM, "im a wombat")

    t.end()
  })
})