2024-01-25 11:17:31 -05:00
|
|
|
import * as assert from 'node:assert/strict';
|
|
|
|
import { describe, it, before, after } from 'node:test';
|
2023-06-21 07:07:16 -05:00
|
|
|
import nodejs from '../dist/index.js';
|
|
|
|
import { loadFixture, createRequestAndResponse } from './test-utils.js';
|
|
|
|
|
|
|
|
describe('API routes', () => {
|
|
|
|
/** @type {import('./test-utils').Fixture} */
|
|
|
|
let fixture;
|
|
|
|
|
|
|
|
before(async () => {
|
|
|
|
fixture = await loadFixture({
|
|
|
|
root: './fixtures/locals/',
|
|
|
|
output: 'server',
|
|
|
|
adapter: nodejs({ mode: 'middleware' }),
|
|
|
|
});
|
|
|
|
await fixture.build();
|
|
|
|
});
|
|
|
|
|
2023-10-12 09:36:34 -05:00
|
|
|
it('Can use locals added by node middleware', async () => {
|
2023-06-21 07:07:16 -05:00
|
|
|
const { handler } = await import('./fixtures/locals/dist/server/entry.mjs');
|
|
|
|
let { req, res, text } = createRequestAndResponse({
|
2023-10-12 09:36:34 -05:00
|
|
|
url: '/from-node-middleware',
|
2023-06-21 07:07:16 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
let locals = { foo: 'bar' };
|
|
|
|
|
|
|
|
handler(req, res, () => {}, locals);
|
|
|
|
req.send();
|
|
|
|
|
|
|
|
let html = await text();
|
|
|
|
|
2024-01-25 11:17:31 -05:00
|
|
|
assert.equal(html.includes('<h1>bar</h1>'), true);
|
2023-06-21 07:07:16 -05:00
|
|
|
});
|
|
|
|
|
2023-10-12 09:36:34 -05:00
|
|
|
it('Throws an error when provided non-objects as locals', async () => {
|
|
|
|
const { handler } = await import('./fixtures/locals/dist/server/entry.mjs');
|
|
|
|
let { req, res, done } = createRequestAndResponse({
|
|
|
|
url: '/from-node-middleware',
|
|
|
|
});
|
|
|
|
|
2023-10-12 09:39:45 -05:00
|
|
|
handler(req, res, undefined, 'locals');
|
2023-10-12 09:36:34 -05:00
|
|
|
req.send();
|
|
|
|
|
|
|
|
await done;
|
2024-01-25 11:17:31 -05:00
|
|
|
assert.equal(res.statusCode, 500);
|
2023-10-12 09:36:34 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('Can use locals added by astro middleware', async () => {
|
|
|
|
const { handler } = await import('./fixtures/locals/dist/server/entry.mjs');
|
2023-10-12 09:39:45 -05:00
|
|
|
|
2023-10-12 09:36:34 -05:00
|
|
|
const { req, res, text } = createRequestAndResponse({
|
|
|
|
url: '/from-astro-middleware',
|
|
|
|
});
|
|
|
|
|
|
|
|
handler(req, res, () => {});
|
|
|
|
req.send();
|
|
|
|
|
|
|
|
const html = await text();
|
|
|
|
|
2024-01-25 11:17:31 -05:00
|
|
|
assert.equal(html.includes('<h1>baz</h1>'), true);
|
2023-10-12 09:36:34 -05:00
|
|
|
});
|
|
|
|
|
2023-06-21 07:07:16 -05:00
|
|
|
it('Can access locals in API', async () => {
|
|
|
|
const { handler } = await import('./fixtures/locals/dist/server/entry.mjs');
|
|
|
|
let { req, res, done } = createRequestAndResponse({
|
|
|
|
method: 'POST',
|
|
|
|
url: '/api',
|
|
|
|
});
|
|
|
|
|
|
|
|
let locals = { foo: 'bar' };
|
|
|
|
|
|
|
|
handler(req, res, () => {}, locals);
|
|
|
|
req.send();
|
|
|
|
|
|
|
|
let [buffer] = await done;
|
|
|
|
|
|
|
|
let json = JSON.parse(buffer.toString('utf-8'));
|
|
|
|
|
2024-01-25 11:17:31 -05:00
|
|
|
assert.equal(json.foo, 'bar');
|
2023-06-21 07:07:16 -05:00
|
|
|
});
|
|
|
|
});
|