1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

fix(unstable): finish HTTP response for 205 and 304 responses (#15584)

This commit fixes "Deno.serve()" API by making sure that
205 and 304 responses end with "\r\n\r\n".
This commit is contained in:
Bartek Iwańczuk 2022-08-24 21:26:57 +02:00 committed by GitHub
parent 348291f5ec
commit fb1c7b7dea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 2 deletions

View file

@ -1844,6 +1844,7 @@ Deno.test(
const msg = decoder.decode(buf.subarray(0, readResult));
assert(msg.startsWith("HTTP/1.1 304 Not Modified"));
assert(msg.endsWith("\r\n\r\n"));
conn.close();

View file

@ -714,7 +714,12 @@ Deno.test(function spawnSyncStdinPipedFails() {
});
Deno.test(
{ permissions: { write: true, run: true, read: true } },
// TODO(bartlomieju): this test became flaky on Windows CI
// raising "PermissionDenied" instead of "NotFound".
{
ignore: Deno.build.os === "windows",
permissions: { write: true, run: true, read: true },
},
async function spawnChildUnref() {
const enc = new TextEncoder();
const cwd = await Deno.makeTempDir({ prefix: "deno_command_test" });

View file

@ -140,7 +140,7 @@
// MUST NOT generate a payload in a 205 response.
// indicate a zero-length body for the response by
// including a Content-Length header field with a value of 0.
str += "Content-Length: 0\r\n";
str += "Content-Length: 0\r\n\r\n";
return str;
}