Skip to content

Commit 80b5ea9

Browse files
authored
fix: fix patching the fs by doing a shallow clone of fs/promises module to avoid infinite loop (#73)
1 parent f56c28c commit 80b5ea9

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

src/run/handlers/next.cts

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import * as fs from 'fs/promises'
21
import { join, relative } from 'path'
2+
import fs from 'fs/promises'
33

44
import type { getRequestHandlers } from 'next/dist/server/lib/start-server.js'
55

@@ -10,13 +10,14 @@ type FS = typeof import('fs')
1010

1111
export async function getMockedRequestHandlers(...args: Parameters<typeof getRequestHandlers>) {
1212
const { blobStore } = await import('./cache.cjs')
13+
const ofs = { ...fs }
1314

1415
async function readFileFallbackBlobStore(...args: Parameters<FS['promises']['readFile']>) {
1516
const [path, options] = args
1617
try {
1718
// Attempt to read from the disk
1819
// important to use the `import * as fs from 'fs'` here to not end up in a endless loop
19-
return await fs.readFile(path, options)
20+
return await ofs.readFile(path, options)
2021
} catch (error) {
2122
// only try to get .html files from the blob store
2223
if (typeof path === 'string' && path.endsWith('.html')) {

src/run/handlers/server.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ export default async (request: Request) => {
1414
nextConfig = await getRunConfig()
1515
setRunConfig(nextConfig)
1616

17-
const { getRequestHandlers } = await import('next/dist/server/lib/start-server.js')
17+
const { getMockedRequestHandlers } = await import('./next.cjs')
1818

19-
;[nextHandler] = await getRequestHandlers({
19+
;[nextHandler] = await getMockedRequestHandlers({
2020
port: 3000,
2121
hostname: 'localhost',
2222
dir: RUN_DIR,

src/run/headers.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ interface NetlifyVaryValues {
77
}
88

99
const generateNetlifyVaryValues = ({ headers, languages, cookies }: NetlifyVaryValues): string => {
10-
const values = []
10+
const values: string[] = []
1111
if (headers.length !== 0) {
1212
values.push(`header=${headers.join(`|`)}`)
1313
}

tests/integration/static.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ beforeEach<FixtureTestContext>(async (ctx) => {
2424
await startMockBlobStore(ctx)
2525
})
2626

27-
test.skip<FixtureTestContext>('requesting a non existing page route that needs to be fetched from the CDN', async (ctx) => {
27+
test<FixtureTestContext>('requesting a non existing page route that needs to be fetched from the CDN', async (ctx) => {
2828
await createFixture('page-router', ctx)
2929
await runPlugin(ctx)
3030

0 commit comments

Comments
 (0)