node/test/parallel/test-http-remove-header-stays-removed.js
Gibson Fahnestock 3d2aef3979 test: s/assert.equal/assert.strictEqual/
Use assert.strictEqual instead of assert.equal in tests, manually
convert types where necessary.

PR-URL: https://github.com/nodejs/node/pull/10698
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
2017-01-11 14:19:26 +00:00

41 lines
1.0 KiB
JavaScript

'use strict';
require('../common');
const assert = require('assert');
const http = require('http');
const 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();
});
let response = '';
process.on('exit', function() {
assert.strictEqual('beep boop\n', response);
console.log('ok');
});
server.listen(0, function() {
http.get({ port: this.address().port }, function(res) {
assert.strictEqual(200, res.statusCode);
assert.deepStrictEqual(res.headers, { date: 'coffee o clock' });
res.setEncoding('ascii');
res.on('data', function(chunk) {
response += chunk;
});
});
});