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>
38 lines
1.3 KiB
JavaScript
38 lines
1.3 KiB
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var execFile = require('child_process').execFile;
|
|
var depmod = require.resolve('../fixtures/deprecated.js');
|
|
var node = process.execPath;
|
|
|
|
var normal = [depmod];
|
|
var noDep = ['--no-deprecation', depmod];
|
|
var traceDep = ['--trace-deprecation', depmod];
|
|
|
|
execFile(node, normal, function(er, stdout, stderr) {
|
|
console.error('normal: show deprecation warning');
|
|
assert.equal(er, null);
|
|
assert.equal(stdout, '');
|
|
assert.equal(stderr,
|
|
'util.p: Use console.error() instead\n\'This is deprecated\'\n');
|
|
console.log('normal ok');
|
|
});
|
|
|
|
execFile(node, noDep, function(er, stdout, stderr) {
|
|
console.error('--no-deprecation: silence deprecations');
|
|
assert.equal(er, null);
|
|
assert.equal(stdout, '');
|
|
assert.equal(stderr, '\'This is deprecated\'\n');
|
|
console.log('silent ok');
|
|
});
|
|
|
|
execFile(node, traceDep, function(er, stdout, stderr) {
|
|
console.error('--trace-deprecation: show stack');
|
|
assert.equal(er, null);
|
|
assert.equal(stdout, '');
|
|
var stack = stderr.trim().split('\n');
|
|
// just check the top and bottom.
|
|
assert.equal(stack[0], 'Trace: util.p: Use console.error() instead');
|
|
assert.equal(stack.pop(), '\'This is deprecated\'');
|
|
console.log('trace ok');
|
|
});
|