Merge remote-tracking branch 'origin/main' into next
This commit is contained in:
commit
2d50d50b6a
10 changed files with 99 additions and 16 deletions
5
.changeset/brown-numbers-prove.md
Normal file
5
.changeset/brown-numbers-prove.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
'astro': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
Displays a new config error if `outDir` is placed within `publicDir`.
|
5
.changeset/rich-tigers-march.md
Normal file
5
.changeset/rich-tigers-march.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
'@astrojs/node': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
Fix an issue where `express` couldn't use the `handler` in `middleware` mode.
|
5
.changeset/unlucky-cougars-heal.md
Normal file
5
.changeset/unlucky-cougars-heal.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
'astro': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
Make typing of `defineCollection` more permissive to support advanced union and intersection types
|
7
packages/astro/content-types.template.d.ts
vendored
7
packages/astro/content-types.template.d.ts
vendored
|
@ -34,12 +34,9 @@ declare module 'astro:content' {
|
||||||
|
|
||||||
type BaseSchemaWithoutEffects =
|
type BaseSchemaWithoutEffects =
|
||||||
| import('astro/zod').AnyZodObject
|
| import('astro/zod').AnyZodObject
|
||||||
| import('astro/zod').ZodUnion<import('astro/zod').AnyZodObject[]>
|
| import('astro/zod').ZodUnion<[BaseSchemaWithoutEffects, ...BaseSchemaWithoutEffects[]]>
|
||||||
| import('astro/zod').ZodDiscriminatedUnion<string, import('astro/zod').AnyZodObject[]>
|
| import('astro/zod').ZodDiscriminatedUnion<string, import('astro/zod').AnyZodObject[]>
|
||||||
| import('astro/zod').ZodIntersection<
|
| import('astro/zod').ZodIntersection<BaseSchemaWithoutEffects, BaseSchemaWithoutEffects>;
|
||||||
import('astro/zod').AnyZodObject,
|
|
||||||
import('astro/zod').AnyZodObject
|
|
||||||
>;
|
|
||||||
|
|
||||||
type BaseSchema =
|
type BaseSchema =
|
||||||
| BaseSchemaWithoutEffects
|
| BaseSchemaWithoutEffects
|
||||||
|
|
|
@ -406,6 +406,10 @@ export function createRelativeSchema(cmd: string, fileProtocolRoot: string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
return config;
|
return config;
|
||||||
|
})
|
||||||
|
.refine((obj) => !obj.outDir.toString().startsWith(obj.publicDir.toString()), {
|
||||||
|
message:
|
||||||
|
'`outDir` must not be placed inside `publicDir` to prevent an infinite loop. Please adjust the directory configuration and try again',
|
||||||
});
|
});
|
||||||
|
|
||||||
return AstroConfigRelativeSchema;
|
return AstroConfigRelativeSchema;
|
||||||
|
|
|
@ -68,4 +68,14 @@ describe('Config Validation', () => {
|
||||||
).catch((err) => err);
|
).catch((err) => err);
|
||||||
expect(configError).to.be.not.instanceOf(Error);
|
expect(configError).to.be.not.instanceOf(Error);
|
||||||
});
|
});
|
||||||
|
it('Error when outDir is placed within publicDir', async () => {
|
||||||
|
const configError = await validateConfig({ outDir: './public/dist' }, process.cwd()).catch(
|
||||||
|
(err) => err
|
||||||
|
);
|
||||||
|
expect(configError instanceof z.ZodError).to.equal(true);
|
||||||
|
expect(configError.errors[0].message).to.equal(
|
||||||
|
'`outDir` must not be placed inside `publicDir` to prevent an infinite loop. \
|
||||||
|
Please adjust the directory configuration and try again'
|
||||||
|
);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -49,6 +49,7 @@
|
||||||
"cheerio": "1.0.0-rc.12",
|
"cheerio": "1.0.0-rc.12",
|
||||||
"mocha": "^9.2.2",
|
"mocha": "^9.2.2",
|
||||||
"node-mocks-http": "^1.13.0",
|
"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';
|
import type { ErrorHandlerParams, Options, RequestHandlerParams } from './types';
|
||||||
|
|
||||||
// Disable no-unused-vars to avoid breaking signature change
|
// 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) {
|
return async function (...args: RequestHandlerParams | ErrorHandlerParams) {
|
||||||
let error = null;
|
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) {
|
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 (error) {
|
||||||
if (next) {
|
if (next) {
|
||||||
return next(error);
|
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 { loadFixture } from './test-utils.js';
|
||||||
import { expect } from 'chai';
|
import { expect } from 'chai';
|
||||||
import * as cheerio from 'cheerio';
|
import * as cheerio from 'cheerio';
|
||||||
|
import express from 'express';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @typedef {import('../../../astro/test/test-utils').Fixture} Fixture
|
* @typedef {import('../../../astro/test/test-utils').Fixture} Fixture
|
||||||
|
@ -14,7 +15,7 @@ async function load() {
|
||||||
return mod;
|
return mod;
|
||||||
}
|
}
|
||||||
|
|
||||||
describe('behavior from middleware', () => {
|
describe('behavior from middleware, standalone', () => {
|
||||||
/** @type {import('./test-utils').Fixture} */
|
/** @type {import('./test-utils').Fixture} */
|
||||||
let fixture;
|
let fixture;
|
||||||
let server;
|
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…
Reference in a new issue