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

http: add rfc7230 handling (denoland/deno_std#451)

Original: 1db594d5b0
This commit is contained in:
Vincent LE GOFF 2019-05-29 19:44:14 +02:00 committed by Bert Belder
parent b95f79d74c
commit c8ac9a0f58
2 changed files with 14 additions and 4 deletions

View file

@ -215,6 +215,14 @@ function fixLength(req: ServerRequest): void {
if (req.method === "HEAD" && c && c !== "0") { if (req.method === "HEAD" && c && c !== "0") {
throw Error("http: method cannot contain a Content-Length"); throw Error("http: method cannot contain a Content-Length");
} }
if (c && req.headers.has("transfer-encoding")) {
// A sender MUST NOT send a Content-Length header field in any message
// that contains a Transfer-Encoding header field.
// rfc: https://tools.ietf.org/html/rfc7230#section-3.3.2
throw new Error(
"http: Transfer-Encoding and Content-Length cannot be send together"
);
}
} }
} }
@ -288,10 +296,6 @@ export async function readRequest(
[req.protoMinor, req.protoMajor] = parseHTTPVersion(req.proto); [req.protoMinor, req.protoMajor] = parseHTTPVersion(req.proto);
req.headers = headers; req.headers = headers;
fixLength(req); fixLength(req);
// TODO(zekth) : add parsing of headers eg:
// rfc: https://tools.ietf.org/html/rfc7230#section-3.3.2
// A sender MUST NOT send a Content-Length header field in any message
// that contains a Transfer-Encoding header field.
return req; return req;
} }

View file

@ -385,6 +385,12 @@ test(async function testReadRequestError(): Promise<void> {
10: { 10: {
in: "HEAD / HTTP/1.1\r\nContent-Length:0\r\nContent-Length: 0\r\n\r\n", in: "HEAD / HTTP/1.1\r\nContent-Length:0\r\nContent-Length: 0\r\n\r\n",
headers: [{ key: "Content-Length", value: "0" }] headers: [{ key: "Content-Length", value: "0" }]
},
11: {
in:
"POST / HTTP/1.1\r\nContent-Length:0\r\ntransfer-encoding: chunked\r\n\r\n",
headers: [],
err: "http: Transfer-Encoding and Content-Length cannot be send together"
} }
}; };
for (const p in testCases) { for (const p in testCases) {