|
1 | 1 | 'use strict'
|
2 | 2 |
|
3 | 3 | const t = require('tap')
|
| 4 | +const fs = require('fs') |
| 5 | +const path = require('path') |
4 | 6 | const pack = require('../lib/index.js')
|
5 | 7 | const tnock = require('./fixtures/tnock.js')
|
6 | 8 |
|
@@ -29,6 +31,43 @@ t.test('packs from local directory', async t => {
|
29 | 31 | })
|
30 | 32 | })
|
31 | 33 |
|
| 34 | +t.test('writes tarball to file when dryRun === false', async t => { |
| 35 | + const testDir = t.testdir({ |
| 36 | + 'package.json': JSON.stringify({ |
| 37 | + name: 'my-cool-pkg', |
| 38 | + version: '1.0.0', |
| 39 | + scripts: { |
| 40 | + prepack: 'touch prepack', |
| 41 | + postpack: 'touch postpack', |
| 42 | + }, |
| 43 | + }, null, 2), |
| 44 | + }) |
| 45 | + |
| 46 | + const cwd = process.cwd() |
| 47 | + process.chdir(testDir) |
| 48 | + |
| 49 | + const tarball = await pack('file:.', { |
| 50 | + dryRun: false, |
| 51 | + packDestination: testDir, |
| 52 | + log: { level: 'silent' }, // so the test doesn't try to log |
| 53 | + }) |
| 54 | + t.ok(tarball) |
| 55 | + const expectedTarball = path.join(testDir, 'my-cool-pkg-1.0.0.tgz') |
| 56 | + t.ok(fs.existsSync(expectedTarball), 'file was written') |
| 57 | + t.same(fs.readFileSync(expectedTarball), tarball, 'wrote same data that was returned') |
| 58 | + |
| 59 | + const prepackTimestamp = (await fs.promises.stat(path.join(testDir, 'prepack'))).mtime |
| 60 | + const tarballTimestamp = (await fs.promises.stat(expectedTarball)).mtime |
| 61 | + const postpackTimestamp = (await fs.promises.stat(path.join(testDir, 'postpack'))).mtime |
| 62 | + |
| 63 | + t.ok(prepackTimestamp < tarballTimestamp, 'prepack ran before tarball was written') |
| 64 | + t.ok(tarballTimestamp < postpackTimestamp, 'postpack ran after tarball was written') |
| 65 | + |
| 66 | + t.teardown(async () => { |
| 67 | + process.chdir(cwd) |
| 68 | + }) |
| 69 | +}) |
| 70 | + |
32 | 71 | t.test('packs from local directory with silent loglevel', async t => {
|
33 | 72 | const testDir = t.testdir({
|
34 | 73 | 'package.json': JSON.stringify({
|
|
0 commit comments