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

http/cookie: fixing equal character split (denoland/deno_std#368)

Original: 8503efc8f7
This commit is contained in:
Vincent LE GOFF 2019-04-29 16:49:50 +02:00 committed by Ryan Dahl
parent ce101a0f86
commit a814cfc3e1
2 changed files with 9 additions and 1 deletions

View file

@ -79,7 +79,7 @@ export function getCookies(req: ServerRequest): Cookies {
for (const kv of c) {
const cookieVal = kv.split("=");
const key = cookieVal.shift().trim();
out[key] = cookieVal.join("");
out[key] = cookieVal.join("=");
}
return out;
}

View file

@ -21,6 +21,14 @@ test({
req.headers = new Headers();
req.headers.set("Cookie", "igot=99; problems=but...");
assertEquals(getCookies(req), { igot: "99", problems: "but..." });
req.headers = new Headers();
req.headers.set("Cookie", "PREF=al=en-GB&f1=123; wide=1; SID=123");
assertEquals(getCookies(req), {
PREF: "al=en-GB&f1=123",
wide: "1",
SID: "123"
});
}
});