-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(dev): break implicit rerouting loop (#10737)
* fix(dev): infinite implicit rerouting * test adapter * changeset
- Loading branch information
Showing
4 changed files
with
54 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"astro": patch | ||
--- | ||
|
||
Fixes a regression where constructing and returning 404 responses from a middleware resulted in the dev server getting stuck in a loop. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
96 changes: 47 additions & 49 deletions
96
packages/astro/test/custom-404-implicit-rerouting.test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,69 +1,67 @@ | ||
import assert from 'node:assert/strict'; | ||
import { after, before, describe, it } from 'node:test'; | ||
import { loadFixture } from './test-utils.js'; | ||
import testAdapter from './test-adapter.js'; | ||
|
||
for (const caseNumber of [1, 2, 3, 4]) { | ||
for (const caseNumber of [1, 2, 3, 4, 5]) { | ||
describe(`Custom 404 with implicit rerouting - Case #${caseNumber}`, () => { | ||
/** @type Awaited<ReturnType<typeof loadFixture>> */ | ||
/** @type {import('./test-utils.js').Fixture} */ | ||
let fixture; | ||
/** @type Awaited<ReturnType<typeof fixture['startDevServer']>> */ | ||
let devServer; | ||
|
||
before(async () => { | ||
fixture = await loadFixture({ | ||
output: 'server', | ||
root: `./fixtures/custom-404-loop-case-${caseNumber}/`, | ||
site: 'http://example.com', | ||
adapter: testAdapter() | ||
}); | ||
|
||
devServer = await fixture.startDevServer(); | ||
}); | ||
|
||
// sanity check | ||
it.skip( | ||
'dev server handles normal requests', | ||
{ | ||
todo: 'To re-enabled after we understand why this fails when the test suite is run in parallel', | ||
}, | ||
async () => { | ||
const resPromise = fixture.fetch('/'); | ||
const result = await withTimeout(resPromise, 1000); | ||
assert.notEqual(result, timeout); | ||
assert.equal(result.status, 200); | ||
} | ||
); | ||
describe("dev server", () => { | ||
/** @type {import('./test-utils.js').DevServer} */ | ||
let devServer; | ||
|
||
it.skip( | ||
'dev server stays responsive', | ||
{ | ||
todo: 'To re-enabled after we understand why this fails when the test suite is run in parallel', | ||
}, | ||
async () => { | ||
const resPromise = fixture.fetch('/alvsibdlvjks'); | ||
const result = await withTimeout(resPromise, 1000); | ||
assert.notEqual(result, timeout); | ||
assert.equal(result.status, 404); | ||
} | ||
); | ||
before(async () => { | ||
await fixture.build() | ||
devServer = await fixture.startDevServer(); | ||
}); | ||
|
||
after(async () => { | ||
await devServer.stop(); | ||
// sanity check | ||
it('dev server handles normal requests', { timeout: 1000 }, async () => { | ||
const response = await fixture.fetch('/'); | ||
assert.equal(response.status, 200); | ||
}); | ||
|
||
// IMPORTANT: never skip | ||
it('dev server stays responsive', { timeout: 1000 }, async () => { | ||
const response = await fixture.fetch('/alvsibdlvjks'); | ||
assert.equal(response.status, 404); | ||
}); | ||
|
||
after(async () => { | ||
await devServer.stop(); | ||
}); | ||
}); | ||
}); | ||
} | ||
|
||
describe("prod server", () => { | ||
/** @type {import('./test-utils.js').App} */ | ||
let app; | ||
|
||
/***** UTILITY FUNCTIONS *****/ | ||
|
||
const timeout = Symbol('timeout'); | ||
|
||
/** @template Res */ | ||
function withTimeout( | ||
/** @type Promise<Res> */ | ||
responsePromise, | ||
/** @type number */ | ||
timeLimit | ||
) { | ||
/** @type Promise<typeof timeout> */ | ||
const timeoutPromise = new Promise((resolve) => setTimeout(() => resolve(timeout), timeLimit)); | ||
before(async () => { | ||
app = await fixture.loadTestAdapterApp(); | ||
}); | ||
|
||
return Promise.race([responsePromise, timeoutPromise]); | ||
// sanity check | ||
it('prod server handles normal requests', { timeout: 1000 }, async () => { | ||
const response = await app.render(new Request('https://example.com/')); | ||
assert.equal(response.status, 200); | ||
}); | ||
|
||
// IMPORTANT: never skip | ||
it('prod server stays responsive', { timeout: 1000 }, async () => { | ||
const response = await app.render(new Request('https://example.com/alvsibdlvjks')); | ||
assert.equal(response.status, 404); | ||
}); | ||
}); | ||
}); | ||
} |
1 change: 1 addition & 0 deletions
1
packages/astro/test/fixtures/custom-404-loop-case-5/src/pages/index.astro
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<p>all good here... or is it?</p> |