mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
a99b441c2c
PR-URL: https://github.com/nodejs/node/pull/9415 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
22 lines
514 B
JavaScript
22 lines
514 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
// This test ensures that the http-parser can handle UTF-8 characters
|
|
// in the http header.
|
|
|
|
const http = require('http');
|
|
const assert = require('assert');
|
|
|
|
const server = http.createServer(common.mustCall((req, res) => {
|
|
res.end('ok');
|
|
}));
|
|
server.listen(0, () => {
|
|
http.get({
|
|
port: server.address().port,
|
|
headers: {'Test': 'Düsseldorf'}
|
|
}, common.mustCall((res) => {
|
|
assert.strictEqual(res.statusCode, 200);
|
|
server.close();
|
|
}));
|
|
});
|