Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico authored and astrobot-houston committed Aug 17, 2023
1 parent dff0f0f commit 2145960
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 31 deletions.
28 changes: 16 additions & 12 deletions packages/astro/src/core/app/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -286,14 +286,17 @@ export class App {
const errorRouteData = matchRoute('/' + status, this.#manifestData);
const url = new URL(request.url);
if (errorRouteData) {
if (errorRouteData.prerender){
const maybeDotHtml = errorRouteData.route.endsWith(`/${status}`) ? '.html' : ''
const statusURL = new URL(`${this.#baseWithoutTrailingSlash}/${status}${maybeDotHtml}`, url);
if (errorRouteData.prerender) {
const maybeDotHtml = errorRouteData.route.endsWith(`/${status}`) ? '.html' : '';
const statusURL = new URL(
`${this.#baseWithoutTrailingSlash}/${status}${maybeDotHtml}`,
url
);
const response = await fetch(statusURL.toString());

// response for /404.html and 500.html is 200, which is not meaningful
// so we create an override
const override = { status }
const override = { status };

return this.#mergeResponses(response, originalResponse, override);
}
Expand Down Expand Up @@ -322,27 +325,28 @@ export class App {
return response;
}

#mergeResponses(newResponse: Response, oldResponse?: Response, override?: { status : 404 | 500 }) {
#mergeResponses(newResponse: Response, oldResponse?: Response, override?: { status: 404 | 500 }) {
if (!oldResponse) {
if (override !== undefined) {
return new Response(newResponse.body, {
status: override.status,
statusText: newResponse.statusText,
headers: newResponse.headers
})
headers: newResponse.headers,
});
}
return newResponse;
}

const { statusText, headers } = oldResponse;

// If the the new response did not have a meaningful status, an override may have been provided
// If the original status was 200 (default), override it with the new status (probably 404 or 500)
// Otherwise, the user set a specific status while rendering and we should respect that one
const status =
override?.status ? override.status :
oldResponse.status === 200 ? newResponse.status :
oldResponse.status
const status = override?.status
? override.status
: oldResponse.status === 200
? newResponse.status
: oldResponse.status;

return new Response(newResponse.body, {
status,
Expand Down
2 changes: 1 addition & 1 deletion packages/astro/src/core/build/static-build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ async function cleanStaticOutput(opts: StaticBuildOptions, internals: BuildInter
// Replace exports (only prerendered pages) with a noop
let value = 'const noop = () => {};';
for (const e of exports) {
if (e.n === 'default') value += `\n export default noop;`
if (e.n === 'default') value += `\n export default noop;`;
else value += `\nexport const ${e.n} = noop;`;
}
await fs.promises.writeFile(url, value, { encoding: 'utf8' });
Expand Down
35 changes: 17 additions & 18 deletions packages/integrations/node/test/prerender-404-500.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,18 +61,18 @@ describe('Prerender 404', () => {
const res1 = await fetch(url);
const res2 = await fetch(url);
const res3 = await fetch(url);

expect(res1.status).to.equal(404);
expect(res2.status).to.equal(404);
expect(res3.status).to.equal(404);

const html1 = await res1.text();
const html2 = await res2.text();
const html3 = await res3.text();

expect(html1).to.equal(html2);
expect(html2).to.equal(html3);

const $ = cheerio.load(html1);

expect($('body').text()).to.equal('Page does not exist');
Expand All @@ -90,7 +90,7 @@ describe('Prerender 404', () => {
const html2 = await response2.text();
const html3 = await response3.text();

expect(html1).to.contain("Something went wrong");
expect(html1).to.contain('Something went wrong');

expect(html1).to.equal(html2);
expect(html2).to.equal(html3);
Expand All @@ -100,11 +100,10 @@ describe('Prerender 404', () => {
const response = await fetch(`http://${server.host}:${server.port}/some-base/fivehundred`);
const html = await response.text();
const $ = cheerio.load(html);

// length will be 0 if the stylesheet does not get included
expect($('link[rel=stylesheet]')).to.have.a.lengthOf(1);
});

});

describe('Without base', async () => {
Expand Down Expand Up @@ -143,22 +142,22 @@ describe('Prerender 404', () => {
});

it('Can handle prerendered 404', async () => {
const url = `http://${server.host}:${server.port}/some-base/missing`
const url = `http://${server.host}:${server.port}/some-base/missing`;
const res1 = await fetch(url);
const res2 = await fetch(url);
const res3 = await fetch(url);

expect(res1.status).to.equal(404);
expect(res2.status).to.equal(404);
expect(res3.status).to.equal(404);

const html1 = await res1.text();
const html2 = await res2.text();
const html3 = await res3.text();

expect(html1).to.equal(html2);
expect(html2).to.equal(html3);

const $ = cheerio.load(html1);

expect($('body').text()).to.equal('Page does not exist');
Expand Down Expand Up @@ -207,22 +206,22 @@ describe('Hybrid 404', () => {
});

it('Can handle prerendered 404', async () => {
const url = `http://${server.host}:${server.port}/some-base/missing`
const url = `http://${server.host}:${server.port}/some-base/missing`;
const res1 = await fetch(url);
const res2 = await fetch(url);
const res3 = await fetch(url);

expect(res1.status).to.equal(404);
expect(res2.status).to.equal(404);
expect(res3.status).to.equal(404);

const html1 = await res1.text();
const html2 = await res2.text();
const html3 = await res3.text();

expect(html1).to.equal(html2);
expect(html2).to.equal(html3);

const $ = cheerio.load(html1);

expect($('body').text()).to.equal('Page does not exist');
Expand Down Expand Up @@ -264,22 +263,22 @@ describe('Hybrid 404', () => {
});

it('Can handle prerendered 404', async () => {
const url = `http://${server.host}:${server.port}/missing`
const url = `http://${server.host}:${server.port}/missing`;
const res1 = await fetch(url);
const res2 = await fetch(url);
const res3 = await fetch(url);

expect(res1.status).to.equal(404);
expect(res2.status).to.equal(404);
expect(res3.status).to.equal(404);

const html1 = await res1.text();
const html2 = await res2.text();
const html3 = await res3.text();

expect(html1).to.equal(html2);
expect(html2).to.equal(html3);

const $ = cheerio.load(html1);

expect($('body').text()).to.equal('Page does not exist');
Expand Down

0 comments on commit 2145960

Please sign in to comment.