Browse Source

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>
v6
Gibson Fahnestock 8 years ago
parent
commit
a99b441c2c
  1. 7
      test/parallel/test-http-header-obstext.js

7
test/parallel/test-http-header-obstext.js

@ -1,6 +1,9 @@
'use strict'; 'use strict';
const common = require('../common'); 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 http = require('http');
const assert = require('assert'); const assert = require('assert');
@ -12,7 +15,7 @@ server.listen(0, () => {
port: server.address().port, port: server.address().port,
headers: {'Test': 'Düsseldorf'} headers: {'Test': 'Düsseldorf'}
}, common.mustCall((res) => { }, common.mustCall((res) => {
assert.equal(res.statusCode, 200); assert.strictEqual(res.statusCode, 200);
server.close(); server.close();
})); }));
}); });

Loading…
Cancel
Save