diff options
author | Yasser A.Idrissi <spookyframework@gmail.com> | 2020-11-22 15:34:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-22 15:34:31 +0100 |
commit | 2c00f6c5482e024745378b61b654d9b524ab6f08 (patch) | |
tree | 25c866c4a8300d1e00b2b2b4f73c51660b133625 /std/http/cookie_test.ts | |
parent | 14877f7fe21573e1ed0ce696a107543bbba995b2 (diff) |
feat(std/http): Validate cookie path value (#8457)
Diffstat (limited to 'std/http/cookie_test.ts')
-rw-r--r-- | std/http/cookie_test.ts | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/std/http/cookie_test.ts b/std/http/cookie_test.ts index 0f42a9381..bc45b2996 100644 --- a/std/http/cookie_test.ts +++ b/std/http/cookie_test.ts @@ -66,6 +66,29 @@ Deno.test({ }); Deno.test({ + name: "Cookie Path Validation", + fn(): void { + const res: Response = {}; + const path = "/;domain=sub.domain.com"; + res.headers = new Headers(); + assertThrows( + (): void => { + setCookie(res, { + name: "Space", + value: "Cat", + httpOnly: true, + secure: true, + path, + maxAge: 3, + }); + }, + Error, + path + ": Invalid cookie path char ';'", + ); + }, +}); + +Deno.test({ name: "Cookie Delete", fn(): void { const res: Response = {}; |