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

pack.js « commands « lib « test - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f0349823a677bf55fef4ec026b6708216cc40bd1 (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
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
const t = require('tap')
const { fake: mockNpm } = require('../../fixtures/mock-npm')
const pacote = require('pacote')
const path = require('path')

const OUTPUT = []
const output = (...msg) => OUTPUT.push(msg)

const libnpmpack = async (spec, opts) => {
  if (!opts) {
    throw new Error('expected options object')
  }

  return ''
}
const mockPacote = {
  manifest: spec => {
    if (spec.type === 'directory') {
      return pacote.manifest(spec)
    }
    const m = {
      name: spec.name || 'test-package',
      version: spec.version || '1.0.0-test',
    }
    m._id = `${m.name}@${m.version}`
    return m
  },
}

t.afterEach(() => (OUTPUT.length = 0))

t.test('should pack current directory with no arguments', async t => {
  let tarballFileName
  const Pack = t.mock('../../../lib/commands/pack.js', {
    libnpmpack,
    npmlog: {
      notice: () => {},
      showProgress: () => {},
      clearProgress: () => {},
    },
    fs: {
      writeFile: (file, data, cb) => {
        tarballFileName = file
        cb()
      },
    },
  })
  const npm = mockNpm({
    output,
  })
  const pack = new Pack(npm)

  await pack.exec([])
  const filename = `npm-${require('../../../package.json').version}.tgz`
  t.strictSame(OUTPUT, [[filename]])
  t.strictSame(tarballFileName, path.resolve(filename))
})

t.test('follows pack-destination config', async t => {
  let tarballFileName
  const Pack = t.mock('../../../lib/commands/pack.js', {
    libnpmpack,
    npmlog: {
      notice: () => {},
      showProgress: () => {},
      clearProgress: () => {},
    },
    fs: {
      writeFile: (file, data, cb) => {
        tarballFileName = file
        cb()
      },
    },
  })
  const npm = mockNpm({
    config: {
      'pack-destination': '/tmp/test',
    },
    output,
  })
  const pack = new Pack(npm)

  await pack.exec([])

  const filename = `npm-${require('../../../package.json').version}.tgz`
  t.strictSame(OUTPUT, [[filename]])
  t.strictSame(tarballFileName, path.resolve('/tmp/test', filename))
})

t.test('should pack given directory', async t => {
  const testDir = t.testdir({
    'package.json': JSON.stringify(
      {
        name: 'my-cool-pkg',
        version: '1.0.0',
      },
      null,
      2
    ),
  })

  const Pack = t.mock('../../../lib/commands/pack.js', {
    libnpmpack,
    npmlog: {
      notice: () => {},
      showProgress: () => {},
      clearProgress: () => {},
    },
    fs: {
      writeFile: (file, data, cb) => cb(),
    },
  })
  const npm = mockNpm({
    config: {
      unicode: true,
      json: false,
      'dry-run': true,
    },
    output,
  })
  const pack = new Pack(npm)

  await pack.exec([testDir])

  const filename = 'my-cool-pkg-1.0.0.tgz'
  t.strictSame(OUTPUT, [[filename]])
})

t.test('should pack given directory for scoped package', async t => {
  const testDir = t.testdir({
    'package.json': JSON.stringify(
      {
        name: '@cool/my-pkg',
        version: '1.0.0',
      },
      null,
      2
    ),
  })

  const Pack = t.mock('../../../lib/commands/pack.js', {
    libnpmpack,
    npmlog: {
      notice: () => {},
      showProgress: () => {},
      clearProgress: () => {},
    },
    fs: {
      writeFile: (file, data, cb) => cb(),
    },
  })
  const npm = mockNpm({
    config: {
      unicode: true,
      json: false,
      'dry-run': true,
    },
    output,
  })
  const pack = new Pack(npm)

  await pack.exec([testDir])

  const filename = 'cool-my-pkg-1.0.0.tgz'
  t.strictSame(OUTPUT, [[filename]])
})

t.test('should log pack contents', async t => {
  const Pack = t.mock('../../../lib/commands/pack.js', {
    '../../../lib/utils/tar.js': {
      ...require('../../../lib/utils/tar.js'),
      logTar: () => {
        t.ok(true, 'logTar is called')
      },
    },
    libnpmpack,
    npmlog: {
      notice: () => {},
      showProgress: () => {},
      clearProgress: () => {},
    },
    fs: {
      writeFile: (file, data, cb) => cb(),
    },
  })
  const npm = mockNpm({
    config: {
      unicode: false,
      json: false,
      'dry-run': false,
    },
    output,
  })
  const pack = new Pack(npm)

  await pack.exec([])

  const filename = `npm-${require('../../../package.json').version}.tgz`
  t.strictSame(OUTPUT, [[filename]])
})

t.test('should log output as valid json', async t => {
  const testDir = t.testdir({
    'package.json': JSON.stringify(
      {
        name: 'my-cool-pkg',
        version: '1.0.0',
        main: './index.js',
      },
      null,
      2
    ),
    'README.md': 'text',
    'index.js': 'void',
  })

  const Pack = t.mock('../../../lib/commands/pack.js', {
    libnpmpack,
    '../../../lib/utils/tar.js': {
      getContents: async () => ({
        id: '@ruyadorno/redact@1.0.0',
        name: '@ruyadorno/redact',
        version: '1.0.0',
        size: 2450,
        unpackedSize: 4911,
        shasum: '044c7574639b923076069d6e801e2d1866430f17',
        // mocks exactly how ssri Integrity works:
        integrity: {
          sha512: [
            {
              /* eslint-disable-next-line max-len */
              source: 'sha512-JSdyskeR2qonBUaQ4vdlU/vQGSfgCxSq5O+vH+d2yVWRqzso4O3gUzd6QX/V7OWV//zU7kA5o63Zf433jUnOtQ==',
              /* eslint-disable-next-line max-len */
              digest: 'JSdyskeR2qonBUaQ4vdlU/vQGSfgCxSq5O+vH+d2yVWRqzso4O3gUzd6QX/V7OWV//zU7kA5o63Zf433jUnOtQ==',
              algorithm: 'sha512',
              options: [],
            },
          ],
          toJSON () {
            /* eslint-disable-next-line max-len */
            return 'sha512-JSdyskeR2qonBUaQ4vdlU/vQGSfgCxSq5O+vH+d2yVWRqzso4O3gUzd6QX/V7OWV//zU7kA5o63Zf433jUnOtQ=='
          },
        },
        filename: '@ruyadorno/redact-1.0.0.tgz',
        files: [
          { path: 'LICENSE', size: 1113, mode: 420 },
          { path: 'README.md', size: 2639, mode: 420 },
          { path: 'index.js', size: 719, mode: 493 },
          { path: 'package.json', size: 440, mode: 420 },
        ],
        entryCount: 4,
        bundled: [],
      }),
    },
    npmlog: {
      notice: () => {},
      showProgress: () => {},
      clearProgress: () => {},
    },
    fs: {
      writeFile: (file, data, cb) => cb(),
    },
  })
  const npm = mockNpm({
    config: {
      unicode: true,
      json: true,
      'dry-run': true,
    },
    output,
  })
  const pack = new Pack(npm)

  await pack.exec([testDir])

  t.match(
    JSON.parse(OUTPUT),
    [
      {
        id: '@ruyadorno/redact@1.0.0',
        name: '@ruyadorno/redact',
        version: '1.0.0',
        size: 2450,
        unpackedSize: 4911,
        shasum: '044c7574639b923076069d6e801e2d1866430f17',
        /* eslint-disable-next-line max-len */
        integrity: 'sha512-JSdyskeR2qonBUaQ4vdlU/vQGSfgCxSq5O+vH+d2yVWRqzso4O3gUzd6QX/V7OWV//zU7kA5o63Zf433jUnOtQ==',
        filename: '@ruyadorno/redact-1.0.0.tgz',
        files: [
          { path: 'LICENSE' },
          { path: 'README.md' },
          { path: 'index.js' },
          { path: 'package.json' },
        ],
        entryCount: 4,
      },
    ],
    'pack details output as valid json'
  )
})

t.test('invalid packument', async t => {
  const mockPacote = {
    manifest: () => {
      return {}
    },
  }
  const Pack = t.mock('../../../lib/commands/pack.js', {
    libnpmpack,
    pacote: mockPacote,
    npmlog: {
      notice: () => {},
      showProgress: () => {},
      clearProgress: () => {},
    },
    fs: {
      writeFile: (file, data, cb) => cb(),
    },
  })
  const npm = mockNpm({
    config: {
      unicode: true,
      json: false,
      'dry-run': true,
    },
    output,
  })
  const pack = new Pack(npm)
  await t.rejects(pack.exec([]), 'Invalid package, must have name and version')
  t.strictSame(OUTPUT, [])
})

t.test('workspaces', t => {
  const testDir = t.testdir({
    'package.json': JSON.stringify(
      {
        name: 'workspaces-test',
        version: '1.0.0',
        workspaces: ['workspace-a', 'workspace-b'],
      },
      null,
      2
    ),
    'workspace-a': {
      'package.json': JSON.stringify({
        name: 'workspace-a',
        version: '1.0.0',
      }),
    },
    'workspace-b': {
      'package.json': JSON.stringify({
        name: 'workspace-b',
        version: '1.0.0',
      }),
    },
  })
  const Pack = t.mock('../../../lib/commands/pack.js', {
    libnpmpack,
    pacote: mockPacote,
    npmlog: {
      notice: () => {},
      showProgress: () => {},
      clearProgress: () => {},
    },
    fs: {
      writeFile: (file, data, cb) => cb(),
    },
  })
  const npm = mockNpm({
    localPrefix: testDir,
    config: {
      unicode: false,
      json: false,
      'dry-run': false,
    },
    output,
  })
  const pack = new Pack(npm)

  t.test('all workspaces', async t => {
    await pack.execWorkspaces([], [])

    t.strictSame(OUTPUT, [['workspace-a-1.0.0.tgz'], ['workspace-b-1.0.0.tgz']])
  })

  t.test('all workspaces, `.` first arg', async t => {
    await pack.execWorkspaces(['.'], [])

    t.strictSame(OUTPUT, [['workspace-a-1.0.0.tgz'], ['workspace-b-1.0.0.tgz']])
  })

  t.test('one workspace', async t => {
    await pack.execWorkspaces([], ['workspace-a'])

    t.strictSame(OUTPUT, [['workspace-a-1.0.0.tgz']])
  })

  t.test('specific package', async t => {
    await pack.execWorkspaces(['abbrev'], [])

    t.strictSame(OUTPUT, [['abbrev-1.0.0-test.tgz']])
  })
  t.end()
})