2022-07-22 19:22:31 +00:00
|
|
|
import nodejs from '../dist/index.js';
|
|
|
|
import { loadFixture, createRequestAndResponse, toPromise } from './test-utils.js';
|
|
|
|
import { expect } from 'chai';
|
|
|
|
|
|
|
|
describe('API routes', () => {
|
|
|
|
/** @type {import('./test-utils').Fixture} */
|
|
|
|
let fixture;
|
|
|
|
|
|
|
|
before(async () => {
|
|
|
|
fixture = await loadFixture({
|
|
|
|
root: './fixtures/api-route/',
|
2022-07-25 04:18:02 +00:00
|
|
|
output: 'server',
|
2022-07-22 19:22:31 +00:00
|
|
|
adapter: nodejs(),
|
|
|
|
});
|
|
|
|
await fixture.build();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Can get the request body', async () => {
|
|
|
|
const { handler } = await import('./fixtures/api-route/dist/server/entry.mjs');
|
|
|
|
|
|
|
|
let { req, res, done } = createRequestAndResponse({
|
|
|
|
method: 'POST',
|
2022-07-22 19:24:58 +00:00
|
|
|
url: '/recipes',
|
2022-07-22 19:22:31 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
handler(req, res);
|
|
|
|
req.send(JSON.stringify({ id: 2 }));
|
|
|
|
|
2022-07-22 19:24:58 +00:00
|
|
|
let [buffer] = await done;
|
2022-07-22 19:22:31 +00:00
|
|
|
let json = JSON.parse(buffer.toString('utf-8'));
|
|
|
|
expect(json.length).to.equal(1);
|
|
|
|
expect(json[0].name).to.equal('Broccoli Soup');
|
|
|
|
});
|
|
|
|
});
|