mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 22:50:18 +00:00

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>
41 lines
1023 B
JavaScript
41 lines
1023 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
var http = require('http');
|
|
|
|
var server = http.createServer(function(request, response) {
|
|
// removed headers should stay removed, even if node automatically adds them
|
|
// to the output:
|
|
response.removeHeader('connection');
|
|
response.removeHeader('transfer-encoding');
|
|
response.removeHeader('content-length');
|
|
|
|
// make sure that removing and then setting still works:
|
|
response.removeHeader('date');
|
|
response.setHeader('date', 'coffee o clock');
|
|
|
|
response.end('beep boop\n');
|
|
|
|
this.close();
|
|
});
|
|
|
|
var response = '';
|
|
|
|
process.on('exit', function() {
|
|
assert.equal('beep boop\n', response);
|
|
console.log('ok');
|
|
});
|
|
|
|
server.listen(common.PORT, function() {
|
|
http.get({ port: common.PORT }, function(res) {
|
|
assert.equal(200, res.statusCode);
|
|
assert.deepStrictEqual(res.headers, { date : 'coffee o clock' });
|
|
|
|
res.setEncoding('ascii');
|
|
res.on('data', function(chunk) {
|
|
response += chunk;
|
|
});
|
|
});
|
|
});
|