mirror of
https://github.com/withastro/astro.git
synced 2025-03-10 23:01:26 -05:00
fix(@astrojs/node): handler should work with express
(#8176)
This commit is contained in:
parent
07faa9a779
commit
6f84e2af0e
4 changed files with 64 additions and 7 deletions
|
@ -50,6 +50,7 @@
|
|||
"cheerio": "1.0.0-rc.12",
|
||||
"mocha": "^9.2.2",
|
||||
"node-mocks-http": "^1.13.0",
|
||||
"undici": "^5.22.1"
|
||||
"undici": "^5.22.1",
|
||||
"express": "^4.18.2"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,15 +6,22 @@ import { responseIterator } from './response-iterator';
|
|||
import type { ErrorHandlerParams, Options, RequestHandlerParams } from './types';
|
||||
|
||||
// Disable no-unused-vars to avoid breaking signature change
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
export default function (app: NodeApp, _mode: Options['mode']) {
|
||||
export default function (app: NodeApp, mode: Options['mode']) {
|
||||
return async function (...args: RequestHandlerParams | ErrorHandlerParams) {
|
||||
let error = null;
|
||||
let [req, res, next, locals] = args as RequestHandlerParams;
|
||||
let locals;
|
||||
let [req, res, next] = args as RequestHandlerParams;
|
||||
if (mode === 'middleware') {
|
||||
let { [3]: _locals } = args;
|
||||
locals = _locals;
|
||||
}
|
||||
|
||||
if (args[0] instanceof Error) {
|
||||
[error, req, res, next, locals] = args as ErrorHandlerParams;
|
||||
|
||||
[error, req, res, next] = args as ErrorHandlerParams;
|
||||
if (mode === 'middleware') {
|
||||
let { [4]: _locals } = args as ErrorHandlerParams;
|
||||
locals = _locals;
|
||||
}
|
||||
if (error) {
|
||||
if (next) {
|
||||
return next(error);
|
||||
|
|
9
packages/integrations/node/test/fixtures/node-middleware/src/pages/ssr.ts
vendored
Normal file
9
packages/integrations/node/test/fixtures/node-middleware/src/pages/ssr.ts
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
export async function get() {
|
||||
let number = Math.random();
|
||||
return {
|
||||
body: JSON.stringify({
|
||||
number,
|
||||
message: `Here's a random number: ${number}`,
|
||||
}),
|
||||
};
|
||||
}
|
|
@ -2,6 +2,7 @@ import nodejs from '../dist/index.js';
|
|||
import { loadFixture } from './test-utils.js';
|
||||
import { expect } from 'chai';
|
||||
import * as cheerio from 'cheerio';
|
||||
import express from 'express';
|
||||
|
||||
/**
|
||||
* @typedef {import('../../../astro/test/test-utils').Fixture} Fixture
|
||||
|
@ -14,7 +15,7 @@ async function load() {
|
|||
return mod;
|
||||
}
|
||||
|
||||
describe('behavior from middleware', () => {
|
||||
describe('behavior from middleware, standalone', () => {
|
||||
/** @type {import('./test-utils').Fixture} */
|
||||
let fixture;
|
||||
let server;
|
||||
|
@ -53,3 +54,42 @@ describe('behavior from middleware', () => {
|
|||
});
|
||||
});
|
||||
});
|
||||
|
||||
describe('behavior from middleware, middleware', () => {
|
||||
/** @type {import('./test-utils').Fixture} */
|
||||
let fixture;
|
||||
let server;
|
||||
|
||||
before(async () => {
|
||||
process.env.ASTRO_NODE_AUTOSTART = 'disabled';
|
||||
process.env.PRERENDER = false;
|
||||
fixture = await loadFixture({
|
||||
root: './fixtures/node-middleware/',
|
||||
output: 'server',
|
||||
adapter: nodejs({ mode: 'middleware' }),
|
||||
});
|
||||
await fixture.build();
|
||||
const { handler } = await load();
|
||||
const app = express();
|
||||
app.use(handler);
|
||||
server = app.listen(8888);
|
||||
});
|
||||
|
||||
after(async () => {
|
||||
server.close();
|
||||
await fixture.clean();
|
||||
delete process.env.PRERENDER;
|
||||
});
|
||||
|
||||
it('when mode is standalone', async () => {
|
||||
const res = await fetch(`http://localhost:8888/ssr`);
|
||||
|
||||
expect(res.status).to.equal(200);
|
||||
|
||||
const html = await res.text();
|
||||
const $ = cheerio.load(html);
|
||||
|
||||
const body = $('body');
|
||||
expect(body.text()).to.contain("Here's a random number");
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue