0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/parallel/test-http-header-obstext.js
Gibson Fahnestock a99b441c2c test: update http-header-obstext
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>
2016-11-05 13:02:07 +00:00

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