mirror of
https://github.com/nodejs/node.git
synced 2025-05-10 03:12:57 +00:00

Enable linting for the test directory. A number of changes was made so all tests conform the current rules used by lib and src directories. The only exception for tests is that unreachable (dead) code is allowed. test-fs-non-number-arguments-throw had to be excluded from the changes because of a weird issue on Windows CI. PR-URL: https://github.com/nodejs/io.js/pull/1721 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
41 lines
1017 B
JavaScript
41 lines
1017 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.deepEqual(res.headers, { date : 'coffee o clock' });
|
|
|
|
res.setEncoding('ascii');
|
|
res.on('data', function(chunk) {
|
|
response += chunk;
|
|
});
|
|
});
|
|
});
|