mirror of https://github.com/lukechilds/node.git
Browse Source
This test adds coverage for all the characters which are considered invalid in a http path. PR-URL: https://github.com/nodejs/node/pull/11964 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>v6
Luca Maraschi
8 years ago
committed by
James M Snell
1 changed files with 20 additions and 0 deletions
@ -0,0 +1,20 @@ |
|||
'use strict'; |
|||
const common = require('../common'); |
|||
const assert = require('assert'); |
|||
const http = require('http'); |
|||
|
|||
const expectedError = /^TypeError: Request path contains unescaped characters$/; |
|||
const theExperimentallyDeterminedNumber = 39; |
|||
|
|||
function fail(path) { |
|||
assert.throws(() => { |
|||
http.request({ path }, common.fail); |
|||
}, expectedError); |
|||
} |
|||
|
|||
for (let i = 0; i <= theExperimentallyDeterminedNumber; i++) { |
|||
const prefix = 'a'.repeat(i); |
|||
for (let i = 0; i <= 32; i++) { |
|||
fail(prefix + String.fromCodePoint(i)); |
|||
} |
|||
} |
Loading…
Reference in new issue