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

dist-tags-update.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: 4a829c85d185568e6b9ad4ee98b106b3ce636e51 (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
var test = require('tap').test

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

function nop () {}

var BASE_URL = 'http://localhost:1337/'
var URI = '/-/package/underscore/dist-tags'
var TOKEN = 'foo'
var AUTH = {
  token: TOKEN
}
var PACKAGE = 'underscore'
var DIST_TAGS = {
  'a': '8.0.8',
  'b': '3.0.3'
}
var PARAMS = {
  'package': PACKAGE,
  distTags: DIST_TAGS,
  auth: AUTH
}

test('distTags.update call contract', function (t) {
  t.throws(function () {
    client.distTags.update(undefined, AUTH, nop)
  }, 'requires a URI')

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

  t.throws(function () {
    client.distTags.update(BASE_URL, undefined, nop)
  }, 'requires params object')

  t.throws(function () {
    client.distTags.update(BASE_URL, '', nop)
  }, 'params must be object')

  t.throws(function () {
    client.distTags.update(BASE_URL, PARAMS, undefined)
  }, 'requires callback')

  t.throws(function () {
    client.distTags.update(BASE_URL, PARAMS, 'callback')
  }, 'callback must be function')

  t.throws(
    function () {
      var params = { distTags: DIST_TAGS, auth: AUTH }
      client.distTags.update(BASE_URL, params, nop)
    },
    {
      name: 'AssertionError',
      message: 'must pass package name to distTags.update'
    },
    'distTags.update must include package name'
  )

  t.throws(
    function () {
      var params = { 'package': PACKAGE, auth: AUTH }
      client.distTags.update(BASE_URL, params, nop)
    },
    {
      name: 'AssertionError',
      message: 'must pass distTags map to distTags.update'
    },
    'distTags.update must include dist-tags'
  )

  t.throws(
    function () {
      var params = { 'package': PACKAGE, distTags: DIST_TAGS }
      client.distTags.update(BASE_URL, params, nop)
    },
    { name: 'AssertionError', message: 'must pass auth to distTags.update' },
    'distTags.update must include auth'
  )

  t.end()
})

test('update dist-tags for a package', function (t) {
  server.expect('POST', URI, function (req, res) {
    t.equal(req.method, 'POST')

    var b = ''
    req.setEncoding('utf8')
    req.on('data', function (d) {
      b += d
    })

    req.on('end', function () {
      var d = JSON.parse(b)
      t.deepEqual(d, DIST_TAGS, 'got back tags')

      res.statusCode = 200
      res.json(DIST_TAGS)
    })
  })

  client.distTags.update(BASE_URL, PARAMS, function (error, data) {
    t.ifError(error, 'no errors')
    t.ok(data.a && data.b, 'dist-tags set')

    t.end()
  })
})