node/test/parallel/test-http-header-obstext.js
James M Snell 91e96d8f08 lib,src: fix consistent spacing inside braces
PR-URL: #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>
2017-09-20 12:32:17 -07:00

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();
}));
});