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

index.js « test « libnpmaccess « workspaces - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 689788d5269f782fd25a84fbaa50a4f18adf1e2f (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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
'use strict'

const t = require('tap')
const tnock = require('./fixtures/tnock.js')

const access = require('../lib/index.js')

const REG = 'http://localhost:1337'
const OPTS = {
  registry: REG,
}

t.test('access public', async t => {
  tnock(t, REG).post(
    '/-/package/%40foo%2Fbar/access', { access: 'public' }
  ).reply(200)
  await t.resolves(access.public('@foo/bar', OPTS))
})

t.test('access public - failure', async t => {
  tnock(t, REG).post(
    '/-/package/%40foo%2Fbar/access', { access: 'public' }
  ).reply(418)
  await t.rejects(
    access.public('@foo/bar', OPTS),
    { statusCode: 418 },
    'fails with code from registry'
  )
})

t.test('access restricted', async t => {
  tnock(t, REG).post(
    '/-/package/%40foo%2Fbar/access', { access: 'restricted' }
  ).reply(200)
  await t.resolves(access.restricted('@foo/bar', OPTS))
})

t.test('access restricted - failure', async t => {
  tnock(t, REG).post(
    '/-/package/%40foo%2Fbar/access', { access: 'restricted' }
  ).reply(418)
  await t.rejects(
    access.restricted('@foo/bar', OPTS),
    { statusCode: 418 },
    'fails with code from registry')
})

t.test('access 2fa-required', async t => {
  tnock(t, REG).post('/-/package/%40foo%2Fbar/access', {
    publish_requires_tfa: true,
  }).reply(200, { ok: true })
  await t.resolves(access.tfaRequired('@foo/bar', OPTS))
})

t.test('access 2fa-not-required', async t => {
  tnock(t, REG).post('/-/package/%40foo%2Fbar/access', {
    publish_requires_tfa: false,
  }).reply(200, { ok: true })
  await t.resolves(access.tfaNotRequired('@foo/bar', OPTS))
})

t.test('access grant basic read-write', async t => {
  tnock(t, REG).put('/-/team/myorg/myteam/package', {
    package: '@foo/bar',
    permissions: 'read-write',
  }).reply(201)
  await t.resolves(access.grant('@foo/bar', 'myorg:myteam', 'read-write', OPTS))
})

t.test('access grant basic read-only', async t => {
  tnock(t, REG).put('/-/team/myorg/myteam/package', {
    package: '@foo/bar',
    permissions: 'read-only',
  }).reply(201)
  await t.resolves(access.grant('@foo/bar', 'myorg:myteam', 'read-only', OPTS))
})

t.test('access grant bad perm', async t => {
  await t.rejects(
    access.grant('@foo/bar', 'myorg:myteam', 'unknown', OPTS),
    { message: /must be.*read-write.*read-only/ },
    'only read-write and read-only are accepted'
  )
})

t.test('access grant no entity', async t => {
  await t.rejects(
    access.grant('@foo/bar', undefined, 'read-write', OPTS),
    { message: /Expected string/ },
    'passing undefined entity gives useful error'
  )
})

t.test('access grant basic unscoped', async t => {
  tnock(t, REG).put('/-/team/myorg/myteam/package', {
    package: 'bar',
    permissions: 'read-write',
  }).reply(201)
  await t.resolves(access.grant('bar', 'myorg:myteam', 'read-write', OPTS))
})

t.test('access grant no opts passed', async t => {
  // NOTE: mocking real url, because no opts variable means `registry` value
  // will be defauled to real registry url
  tnock(t, 'https://registry.npmjs.org')
    .put('/-/team/myorg/myteam/package', {
      package: 'bar',
      permissions: 'read-write',
    })
    .reply(201)
  await t.resolves(access.grant('bar', 'myorg:myteam', 'read-write'))
})

t.test('access revoke basic', async t => {
  tnock(t, REG).delete('/-/team/myorg/myteam/package', {
    package: '@foo/bar',
  }).reply(200)
  await t.resolves(access.revoke('@foo/bar', 'myorg:myteam', OPTS))
})

t.test('access revoke basic unscoped', async t => {
  tnock(t, REG).delete('/-/team/myorg/myteam/package', {
    package: 'bar',
  }).reply(200, { accessChanged: true })
  await t.resolves(access.revoke('bar', 'myorg:myteam', OPTS))
})

t.test('access revoke no opts passed', async t => {
  // NOTE: mocking real url, because no opts variable means `registry` value
  // will be defauled to real registry url
  tnock(t, 'https://registry.npmjs.org')
    .delete('/-/team/myorg/myteam/package', {
      package: 'bar',
    })
    .reply(201)
  await t.resolves(access.revoke('bar', 'myorg:myteam'))
})

t.test('ls-packages on team', async t => {
  const serverPackages = {
    '@foo/bar': 'write',
    '@foo/util': 'read',
    '@foo/other': 'shrödinger',
  }
  const clientPackages = {
    '@foo/bar': 'read-write',
    '@foo/util': 'read-only',
    '@foo/other': 'shrödinger',
  }
  tnock(t, REG).get(
    '/-/team/myorg/myteam/package?format=cli'
  ).reply(200, serverPackages)
  const data = await access.lsPackages('myorg:myteam', OPTS)
  t.same(data, clientPackages, 'got client package info')
})

t.test('ls-packages on org', async t => {
  const serverPackages = {
    '@foo/bar': 'write',
    '@foo/util': 'read',
    '@foo/other': 'shrödinger',
  }
  const clientPackages = {
    '@foo/bar': 'read-write',
    '@foo/util': 'read-only',
    '@foo/other': 'shrödinger',
  }
  tnock(t, REG).get(
    '/-/org/myorg/package?format=cli'
  ).reply(200, serverPackages)
  const data = await access.lsPackages('myorg', OPTS)
  t.same(data, clientPackages, 'got client package info')
})

t.test('ls-packages on user', async t => {
  const serverPackages = {
    '@foo/bar': 'write',
    '@foo/util': 'read',
    '@foo/other': 'shrödinger',
  }
  const clientPackages = {
    '@foo/bar': 'read-write',
    '@foo/util': 'read-only',
    '@foo/other': 'shrödinger',
  }
  const srv = tnock(t, REG)
  srv.get('/-/org/myuser/package?format=cli').reply(404, { error: 'not found' })
  srv.get('/-/user/myuser/package?format=cli').reply(200, serverPackages)
  const data = await access.lsPackages('myuser', OPTS)
  t.same(data, clientPackages, 'got client package info')
})

t.test('ls-packages error on team', async t => {
  tnock(t, REG).get('/-/team/myorg/myteam/package?format=cli').reply(404)
  await t.rejects(
    access.lsPackages('myorg:myteam', OPTS),
    { code: 'E404' },
    'spit out 404 directly if team provided'
  )
})

t.test('ls-packages error on user', async t => {
  const srv = tnock(t, REG)
  srv.get('/-/org/myuser/package?format=cli').reply(404, { error: 'not found' })
  srv.get('/-/user/myuser/package?format=cli').reply(404, { error: 'not found' })
  await t.rejects(
    access.lsPackages('myuser', OPTS),
    { code: 'E404' },
    'spit out 404 if both reqs fail'
  )
})

t.test('ls-packages bad response', async t => {
  tnock(t, REG).get(
    '/-/team/myorg/myteam/package?format=cli'
  ).reply(200, JSON.stringify(null))
  const data = await access.lsPackages('myorg:myteam', OPTS)
  t.same(data, null, 'succeeds with null')
})

t.test('ls-packages stream', async t => {
  const serverPackages = {
    '@foo/bar': 'write',
    '@foo/util': 'read',
    '@foo/other': 'shrödinger',
  }
  const clientPackages = [
    ['@foo/bar', 'read-write'],
    ['@foo/util', 'read-only'],
    ['@foo/other', 'shrödinger'],
  ]
  tnock(t, REG).get(
    '/-/team/myorg/myteam/package?format=cli'
  ).reply(200, serverPackages)
  const data = await access.lsPackages.stream('myorg:myteam', OPTS).collect()
  t.same(data, clientPackages, 'got streamed client package info')
})

t.test('ls-packages stream no opts', async t => {
  const serverPackages = {
    '@foo/bar': 'write',
    '@foo/util': 'read',
    '@foo/other': 'shrödinger',
  }
  const clientPackages = [
    ['@foo/bar', 'read-write'],
    ['@foo/util', 'read-only'],
    ['@foo/other', 'shrödinger'],
  ]
  // NOTE: mocking real url, because no opts variable means `registry` value
  // will be defauled to real registry url
  tnock(t, 'https://registry.npmjs.org')
    .get('/-/team/myorg/myteam/package?format=cli')
    .reply(200, serverPackages)
  const data = await access.lsPackages.stream('myorg:myteam').collect()
  t.same(data, clientPackages, 'got streamed client package info')
})

t.test('ls-collaborators', async t => {
  const serverCollaborators = {
    'myorg:myteam': 'write',
    'myorg:anotherteam': 'read',
    'myorg:thirdteam': 'special-case',
  }
  const clientCollaborators = {
    'myorg:myteam': 'read-write',
    'myorg:anotherteam': 'read-only',
    'myorg:thirdteam': 'special-case',
  }
  tnock(t, REG).get(
    '/-/package/%40foo%2Fbar/collaborators?format=cli'
  ).reply(200, serverCollaborators)
  const data = await access.lsCollaborators('@foo/bar', OPTS)
  t.same(data, clientCollaborators, 'got collaborators')
})

t.test('ls-collaborators stream', async t => {
  const serverCollaborators = {
    'myorg:myteam': 'write',
    'myorg:anotherteam': 'read',
    'myorg:thirdteam': 'special-case',
  }
  const clientCollaborators = [
    ['myorg:myteam', 'read-write'],
    ['myorg:anotherteam', 'read-only'],
    ['myorg:thirdteam', 'special-case'],
  ]
  tnock(t, REG).get(
    '/-/package/%40foo%2Fbar/collaborators?format=cli'
  ).reply(200, serverCollaborators)
  const data = await access.lsCollaborators.stream('@foo/bar', OPTS).collect()
  t.same(data, clientCollaborators, 'got collaborators')
})

t.test('ls-collaborators w/scope', async t => {
  const serverCollaborators = {
    'myorg:myteam': 'write',
    'myorg:anotherteam': 'read',
    'myorg:thirdteam': 'special-case',
  }
  const clientCollaborators = {
    'myorg:myteam': 'read-write',
    'myorg:anotherteam': 'read-only',
    'myorg:thirdteam': 'special-case',
  }
  tnock(t, REG).get(
    '/-/package/%40foo%2Fbar/collaborators?format=cli&user=zkat'
  ).reply(200, serverCollaborators)
  const data = await access.lsCollaborators('@foo/bar', 'zkat', OPTS)
  t.same(data, clientCollaborators, 'got collaborators')
})

t.test('ls-collaborators w/o scope', async t => {
  const serverCollaborators = {
    'myorg:myteam': 'write',
    'myorg:anotherteam': 'read',
    'myorg:thirdteam': 'special-case',
  }
  const clientCollaborators = {
    'myorg:myteam': 'read-write',
    'myorg:anotherteam': 'read-only',
    'myorg:thirdteam': 'special-case',
  }
  tnock(t, REG).get(
    '/-/package/bar/collaborators?format=cli&user=zkat'
  ).reply(200, serverCollaborators)
  const data = await access.lsCollaborators('bar', 'zkat', OPTS)
  t.same(data, clientCollaborators, 'got collaborators')
})

t.test('ls-collaborators bad response', async t => {
  tnock(t, REG).get(
    '/-/package/%40foo%2Fbar/collaborators?format=cli'
  ).reply(200, JSON.stringify(null))
  const data = await access.lsCollaborators('@foo/bar', null, OPTS)
  t.same(data, null, 'succeeds with null')
})

t.test('error on non-registry specs', async t => {
  await t.rejects(access.public('githubusername/reponame'),
    /spec.*must be a registry spec/, 'registry spec required')
  await t.rejects(access.restricted('foo/bar'),
    /spec.*must be a registry spec/, 'registry spec required')
  await t.rejects(access.grant('foo/bar', 'myorg', 'myteam', 'read-only'),
    /spec.*must be a registry spec/, 'registry spec required')
  await t.rejects(access.revoke('foo/bar', 'myorg', 'myteam'),
    /spec.*must be a registry spec/, 'registry spec required')
  await t.rejects(access.lsCollaborators('foo/bar'),
    /spec.*must be a registry spec/, 'registry spec required')
  await t.rejects(access.tfaRequired('foo/bar'),
    /spec.*must be a registry spec/, 'registry spec required')
  await t.rejects(access.tfaNotRequired('foo/bar'),
    /spec.*must be a registry spec/, 'registry spec required')
})

t.test('edit', t => {
  t.equal(typeof access.edit, 'function', 'access.edit exists')
  t.throws(() => {
    access.edit()
  }, /Not implemented/, 'directly throws NIY message')
  t.end()
})