This repository has been archived by the owner on Oct 16, 2021. It is now read-only.
forked from nodejs/node-v0.x-archive
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: check that --insecure-http-parser works
Backport ab1fcb8 Original commit message: Test that using --insecure-http-parser will disable validation of invalid characters in HTTP headers. See: - nodejs/node#30567 PR-URL: nodejs/node#31253 Backport-PR-URL: nodejs/node#30473 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
- Loading branch information
Showing
2 changed files
with
70 additions
and
0 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,35 @@ | ||
// Flags: --insecure-http-parser --http-parser=legacy | ||
|
||
'use strict'; | ||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const http = require('http'); | ||
const net = require('net'); | ||
|
||
const server = http.createServer(function(req, res) { | ||
assert.strictEqual(req.headers['content-type'], 'text/te\bt'); | ||
req.pipe(res); | ||
}); | ||
|
||
server.listen(0, common.mustCall(function() { | ||
const bufs = []; | ||
const client = net.connect( | ||
this.address().port, | ||
function() { | ||
client.write( | ||
'GET / HTTP/1.1\r\n' + | ||
'Content-Type: text/te\x08t\r\n' + | ||
'Connection: close\r\n\r\n'); | ||
} | ||
); | ||
client.on('data', function(chunk) { | ||
bufs.push(chunk); | ||
}); | ||
client.on('end', common.mustCall(function() { | ||
const head = Buffer.concat(bufs) | ||
.toString('latin1') | ||
.split('\r\n')[0]; | ||
assert.strictEqual(head, 'HTTP/1.1 200 OK'); | ||
server.close(); | ||
})); | ||
})); |
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,35 @@ | ||
// Flags: --insecure-http-parser | ||
|
||
'use strict'; | ||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const http = require('http'); | ||
const net = require('net'); | ||
|
||
const server = http.createServer(function(req, res) { | ||
assert.strictEqual(req.headers['content-type'], 'text/te\bt'); | ||
req.pipe(res); | ||
}); | ||
|
||
server.listen(0, common.mustCall(function() { | ||
const bufs = []; | ||
const client = net.connect( | ||
this.address().port, | ||
function() { | ||
client.write( | ||
'GET / HTTP/1.1\r\n' + | ||
'Content-Type: text/te\x08t\r\n' + | ||
'Connection: close\r\n\r\n'); | ||
} | ||
); | ||
client.on('data', function(chunk) { | ||
bufs.push(chunk); | ||
}); | ||
client.on('end', common.mustCall(function() { | ||
const head = Buffer.concat(bufs) | ||
.toString('latin1') | ||
.split('\r\n')[0]; | ||
assert.strictEqual(head, 'HTTP/1.1 200 OK'); | ||
server.close(); | ||
})); | ||
})); |