-
Notifications
You must be signed in to change notification settings - Fork 580
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cookies: improve validateCookieValue
- Loading branch information
Showing
4 changed files
with
117 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { bench, group, run } from 'mitata' | ||
import { validateCookieValue } from '../../lib/web/cookies/util.js' | ||
|
||
const valid = 'Cat' | ||
const wrappedValid = `"${valid}"` | ||
|
||
group('validateCookieValue', () => { | ||
bench(`valid: ${valid}`, () => { | ||
return validateCookieValue(valid) | ||
}) | ||
bench(`valid: ${wrappedValid}`, () => { | ||
return validateCookieValue(wrappedValid) | ||
}) | ||
}) | ||
|
||
await run() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
'use strict' | ||
|
||
const { test, describe } = require('node:test') | ||
const { throws, strictEqual } = require('node:assert') | ||
|
||
const { | ||
validateCookieValue | ||
} = require('../../lib/web/cookies/util') | ||
|
||
describe('validateCookieValue', () => { | ||
test('should throw for CTLs', () => { | ||
throws(() => validateCookieValue('\x00'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x01'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x02'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x03'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x04'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x05'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x06'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x07'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x08'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x09'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x0A'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x0B'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x0C'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x0D'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x0E'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x0F'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x10'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x11'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x12'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x13'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x14'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x15'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x16'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x17'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x18'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x19'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x1A'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x1B'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x1C'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x1D'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x1E'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x1F'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('\x7F'), new Error('Invalid cookie value')) | ||
}) | ||
|
||
test('should throw for ; character', () => { | ||
throws(() => validateCookieValue(';'), new Error('Invalid cookie value')) | ||
}) | ||
|
||
test('should throw for " character', () => { | ||
throws(() => validateCookieValue('"'), new Error('Invalid cookie value')) | ||
}) | ||
|
||
test('should throw for " character', () => { | ||
throws(() => validateCookieValue(','), new Error('Invalid cookie value')) | ||
}) | ||
|
||
test('should throw for \\ character', () => { | ||
throws(() => validateCookieValue('\\'), new Error('Invalid cookie value')) | ||
}) | ||
|
||
test('should pass for a printable character', t => { | ||
strictEqual(validateCookieValue('A'), undefined) | ||
strictEqual(validateCookieValue('Z'), undefined) | ||
strictEqual(validateCookieValue('a'), undefined) | ||
strictEqual(validateCookieValue('z'), undefined) | ||
strictEqual(validateCookieValue('!'), undefined) | ||
strictEqual(validateCookieValue('='), undefined) | ||
}) | ||
|
||
test('should handle strings wrapped in DQUOTE', t => { | ||
strictEqual(validateCookieValue('""'), undefined) | ||
strictEqual(validateCookieValue('"helloworld"'), undefined) | ||
throws(() => validateCookieValue('"'), new Error('Invalid cookie value')) | ||
throws(() => validateCookieValue('"""'), new Error('Invalid cookie value')) | ||
}) | ||
}) |