|
| 1 | +import { vol, fs } from 'memfs' |
| 2 | +import { expect, test, vi, afterEach } from 'vitest' |
| 3 | +import { join } from 'node:path' |
| 4 | +import { BUILD_DIR } from '../constants.js' |
| 5 | +import { copyStaticContent } from './static.js' |
| 6 | +import { mockFileSystem, fsCpHelper } from '../../../tests/index.js' |
| 7 | + |
| 8 | +vi.mock('node:fs', () => fs) |
| 9 | +vi.mock('node:fs/promises', () => { |
| 10 | + return { |
| 11 | + ...fs.promises, |
| 12 | + cp: (src, dest, options) => fsCpHelper(src, dest, options), |
| 13 | + } |
| 14 | +}) |
| 15 | + |
| 16 | +afterEach(() => { |
| 17 | + vol.reset() |
| 18 | + vi.restoreAllMocks() |
| 19 | +}) |
| 20 | + |
| 21 | +test('should copy the static assets from the build to the publish directory', async () => { |
| 22 | + const cwd = mockFileSystem({ |
| 23 | + [`${BUILD_DIR}/.next/static/test.js`]: '', |
| 24 | + [`${BUILD_DIR}/.next/static/sub-dir/test2.js`]: '', |
| 25 | + }) |
| 26 | + |
| 27 | + const PUBLISH_DIR = join(cwd, 'publish') |
| 28 | + await copyStaticContent({ PUBLISH_DIR }) |
| 29 | + |
| 30 | + const filenamesInVolume = Object.keys(vol.toJSON()) |
| 31 | + expect(filenamesInVolume).toEqual( |
| 32 | + expect.arrayContaining([ |
| 33 | + `${PUBLISH_DIR}/_next/static/test.js`, |
| 34 | + `${PUBLISH_DIR}/_next/static/sub-dir/test2.js`, |
| 35 | + ]), |
| 36 | + ) |
| 37 | +}) |
| 38 | + |
| 39 | +test('should throw expected error if no static assets directory exists', async () => { |
| 40 | + const cwd = mockFileSystem({}) |
| 41 | + |
| 42 | + const PUBLISH_DIR = join(cwd, 'publish') |
| 43 | + const staticDirectory = join(cwd, '.netlify/.next/static') |
| 44 | + |
| 45 | + await expect(copyStaticContent({ PUBLISH_DIR })).rejects.toThrowError( |
| 46 | + `Failed to copy static assets: Error: ENOENT: no such file or directory, readdir '${staticDirectory}'`, |
| 47 | + ) |
| 48 | +}) |
| 49 | + |
| 50 | +test('should copy files from the public directory to the publish directory', async () => { |
| 51 | + const cwd = mockFileSystem({ |
| 52 | + [`${BUILD_DIR}/.next/static/test.js`]: '', |
| 53 | + 'public/fake-image.svg': '', |
| 54 | + 'public/another-asset.json': '', |
| 55 | + }) |
| 56 | + |
| 57 | + const PUBLISH_DIR = join(cwd, 'publish') |
| 58 | + await copyStaticContent({ PUBLISH_DIR }) |
| 59 | + |
| 60 | + const filenamesInVolume = Object.keys(vol.toJSON()) |
| 61 | + expect(filenamesInVolume).toEqual( |
| 62 | + expect.arrayContaining([ |
| 63 | + `${PUBLISH_DIR}/public/fake-image.svg`, |
| 64 | + `${PUBLISH_DIR}/public/another-asset.json`, |
| 65 | + ]), |
| 66 | + ) |
| 67 | +}) |
| 68 | + |
| 69 | +test('should not copy files if the public directory does not exist', async () => { |
| 70 | + const cwd = mockFileSystem({ |
| 71 | + [`${BUILD_DIR}/.next/static/test.js`]: '', |
| 72 | + }) |
| 73 | + |
| 74 | + const PUBLISH_DIR = join(cwd, 'publish') |
| 75 | + await expect(copyStaticContent({ PUBLISH_DIR })).resolves.toBeUndefined() |
| 76 | + |
| 77 | + expect(vol.toJSON()).toEqual({ |
| 78 | + [join(cwd, `${BUILD_DIR}/.next/static/test.js`)]: '', |
| 79 | + [`${PUBLISH_DIR}/_next/static/test.js`]: '', |
| 80 | + }) |
| 81 | +}) |
0 commit comments