Sha256: 020010b6a846d82f87cd6ebc02aa14b1a8b104b3dd0345dd3ab1444cde02cd02

Contents?: true

Size: 1.55 KB

Versions: 5

Compression:

Stored size: 1.55 KB

Contents

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()
})

Version data entries

5 entries across 4 versions & 1 rubygems

Version Path
node-compiler-0.9.1 vendor/node/deps/npm/node_modules/npm-registry-client/test/logout.js
node-compiler-0.9.0 vendor/node-v7.2.1/deps/npm/node_modules/npm-registry-client/test/logout.js
node-compiler-0.8.0 vendor/node-v7.2.0/deps/npm/node_modules/npm-registry-client/test/logout.js
node-compiler-0.7.0 vendor/node-v6.9.1/deps/npm/node_modules/npm-registry-client/test/logout.js
node-compiler-0.7.0 vendor/node-v7.1.0/deps/npm/node_modules/npm-registry-client/test/logout.js