mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
619 B
25 lines
619 B
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const http = require('http');
|
|
|
|
const expectedError = common.expectsError({
|
|
code: 'ERR_UNESCAPED_CHARACTERS',
|
|
type: TypeError,
|
|
message: 'Request path contains unescaped characters'
|
|
}, 1320);
|
|
const theExperimentallyDeterminedNumber = 39;
|
|
|
|
function fail(path) {
|
|
assert.throws(() => {
|
|
http.request({ path }, assert.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));
|
|
}
|
|
}
|
|
|