Skip to content

Commit

Permalink
Fixes API route compat with Node 14 (#2936)
Browse files Browse the repository at this point in the history
* Fixes API route compat with Node 14

* Changeset
  • Loading branch information
matthewp authored Mar 29, 2022
1 parent 23b8ee2 commit f048cdf
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .changeset/odd-swans-walk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'astro': patch
---

Fixes non-GET API routes in dev with Node 14
20 changes: 13 additions & 7 deletions packages/astro/src/vite-plugin-astro-server/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import serverErrorTemplate from '../template/5xx.js';
import { RouteCache } from '../core/render/route-cache.js';
import { fixViteErrorMessage } from '../core/errors.js';
import { createRequest } from '../core/request.js';
import { Readable } from 'stream';

interface AstroPluginOptions {
config: AstroConfig;
Expand Down Expand Up @@ -44,12 +45,17 @@ async function writeWebResponse(res: http.ServerResponse, webResponse: Response)
const { status, headers, body } = webResponse;
res.writeHead(status, Object.fromEntries(headers.entries()));
if (body) {
const reader = body.getReader();
while (true) {
const { done, value } = await reader.read();
if (done) break;
if (value) {
res.write(value);
if(body instanceof Readable) {
body.pipe(res);
return;
} else {
const reader = body.getReader();
while (true) {
const { done, value } = await reader.read();
if (done) break;
if (value) {
res.write(value);
}
}
}
}
Expand Down Expand Up @@ -134,7 +140,7 @@ async function handleRequest(
await new Promise((resolve) => {
req.setEncoding('utf-8');
req.on('data', (bts) => bytes.push(bts));
req.on('close', resolve);
req.on('end', resolve);
});
body = new TextEncoder().encode(bytes.join('')).buffer;
}
Expand Down
10 changes: 10 additions & 0 deletions packages/astro/test/fixtures/ssr-api-route/src/pages/food.json.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,13 @@ export function get() {
])
};
}

export async function post(params, request) {
const body = await request.text();
return new Response(body === `some data` ? `ok` : `not ok`, {
status: 200,
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
});
}
21 changes: 21 additions & 0 deletions packages/astro/test/ssr-api-route.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,25 @@ describe('API routes in SSR', () => {
const body = await response.json();
expect(body.length).to.equal(3);
});

describe('Dev', () => {
let devServer;
before(async () => {
devServer = await fixture.startDevServer();
});

after(async () => {
await devServer.stop();
});

it('Can POST to API routes', async () => {
const response = await fixture.fetch('/food.json', {
method: 'POST',
body: `some data`
})
expect(response.status).to.equal(200);
const text = await response.text();
expect(text).to.equal(`ok`);
});
});
});

0 comments on commit f048cdf

Please sign in to comment.