diff options
author | 2022-07-22 15:22:31 -0400 | |
---|---|---|
committer | 2022-07-22 15:22:31 -0400 | |
commit | 3b104fb8a5c184d253d847998323e6b9c2573bcd (patch) | |
tree | bb1d1a737e0ac9ae397df60be378174a24632777 /packages/integrations/node/test/api-route.test.js | |
parent | 9970dde63062e0e9618f58ca58b61eb42a222d1f (diff) | |
download | astro-3b104fb8a5c184d253d847998323e6b9c2573bcd.tar.gz astro-3b104fb8a5c184d253d847998323e6b9c2573bcd.tar.zst astro-3b104fb8a5c184d253d847998323e6b9c2573bcd.zip |
Fixes Node adapter receiving a request body (#4023)
* Fixes Node adapter receiving a request body
* Updated lockfile
Diffstat (limited to 'packages/integrations/node/test/api-route.test.js')
-rw-r--r-- | packages/integrations/node/test/api-route.test.js | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/packages/integrations/node/test/api-route.test.js b/packages/integrations/node/test/api-route.test.js new file mode 100644 index 000000000..963e0463a --- /dev/null +++ b/packages/integrations/node/test/api-route.test.js @@ -0,0 +1,37 @@ +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/', + experimental: { + ssr: true, + }, + 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', + url: '/recipes' + }); + + handler(req, res); + req.send(JSON.stringify({ id: 2 })); + + let [ buffer ] = await done; + let json = JSON.parse(buffer.toString('utf-8')); + expect(json.length).to.equal(1); + expect(json[0].name).to.equal('Broccoli Soup'); + }); +}); |