summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/npm-registry-client/test/logout.js
blob: 7836d805aee4ea46cbb12ae414044e7d84b08581 (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
var test = require('tap').test

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

function nop () {}

var URI = 'http://localhost:1337/rewrite'
var TOKEN = 'b00b00feed'
var PARAMS = {
  auth: {
    token: TOKEN
  }
}

test('logout call contract', function (t) {
  t.throws(function () {
    client.logout(undefined, PARAMS, nop)
  }, 'requires a URI')

  t.throws(function () {
    client.logout([], PARAMS, nop)
  }, 'requires URI to be a string')

  t.throws(function () {
    client.logout(URI, undefined, nop)
  }, 'requires params object')

  t.throws(function () {
    client.logout(URI, '', nop)
  }, 'params must be object')

  t.throws(function () {
    client.logout(URI, PARAMS, undefined)
  }, 'requires callback')

  t.throws(function () {
    client.logout(URI, PARAMS, 'callback')
  }, 'callback must be function')

  t.throws(
    function () {
      var params = {
        auth: {}
      }
      client.logout(URI, params, nop)
    },
    { name: 'AssertionError', message: 'can only log out for token auth' },
    'auth must include token'
  )

  t.end()
})

test('log out from a token-based registry', function (t) {
  server.expect('DELETE', '/-/user/token/' + TOKEN, function (req, res) {
    t.equal(req.method, 'DELETE')
    t.equal(req.headers.authorization, 'Bearer ' + TOKEN, 'request is authed')

    res.json({message: 'ok'})
  })

  client.logout(URI, PARAMS, function (er) {
    t.ifError(er, 'no errors')

    t.end()
  })
})

test('cleanup', function (t) {
  server.close()
  t.end()
})