mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
bb29405904
PR-URL: https://github.com/nodejs/node/pull/14162 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
22 lines
516 B
JavaScript
22 lines
516 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();
|
|
}));
|
|
});
|