node/test/parallel/test-http-blank-header.js
Rich Trott a7335bd1f0 test,benchmark: use deepStrictEqual()
In preparation for a lint rule that will enforce
assert.deepStrictEqual() over assert.deepEqual(), change tests and
benchmarks accordingly. For tests and benchmarks that are testing or
benchmarking assert.deepEqual() itself, apply a comment to ignore the
upcoming rule.

PR-URL: https://github.com/nodejs/node/pull/6213
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2016-04-22 14:38:09 -07:00

46 lines
963 B
JavaScript

'use strict';
var common = require('../common');
var assert = require('assert');
var http = require('http');
var net = require('net');
var gotReq = false;
var server = http.createServer(function(req, res) {
gotReq = true;
assert.equal('GET', req.method);
assert.equal('/blah', req.url);
assert.deepStrictEqual({
host: 'mapdevel.trolologames.ru:443',
origin: 'http://mapdevel.trolologames.ru',
cookie: ''
}, req.headers);
});
server.listen(common.PORT, function() {
var c = net.createConnection(common.PORT);
c.on('connect', function() {
c.write('GET /blah HTTP/1.1\r\n' +
'Host: mapdevel.trolologames.ru:443\r\n' +
'Cookie:\r\n' +
'Origin: http://mapdevel.trolologames.ru\r\n' +
'\r\n\r\nhello world'
);
});
c.on('end', function() {
c.end();
});
c.on('close', function() {
server.close();
});
});
process.on('exit', function() {
assert.ok(gotReq);
});