mirror of
https://github.com/nodejs/node.git
synced 2025-05-04 18:29:54 +00:00

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>
21 lines
534 B
JavaScript
21 lines
534 B
JavaScript
'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));
|
|
}
|
|
}
|