mirror of https://github.com/lukechilds/node.git
Browse Source
* use common.mustCall to validate functions executions * use common.fail to check test fail * improve error validations * remove unnecessary assertions * use arrow functions PR-URL: https://github.com/nodejs/node/pull/10813 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>v6
committed by
Italo A. Casas
1 changed files with 18 additions and 30 deletions
@ -1,71 +1,59 @@ |
|||||
'use strict'; |
'use strict'; |
||||
require('../common'); |
const common = require('../common'); |
||||
const assert = require('assert'); |
const assert = require('assert'); |
||||
const Stream = require('stream'); |
const Stream = require('stream'); |
||||
const Console = require('console').Console; |
const Console = require('console').Console; |
||||
let called = false; |
|
||||
|
|
||||
const out = new Stream(); |
const out = new Stream(); |
||||
const err = new Stream(); |
const err = new Stream(); |
||||
|
|
||||
// ensure the Console instance doesn't write to the
|
// ensure the Console instance doesn't write to the
|
||||
// process' "stdout" or "stderr" streams
|
// process' "stdout" or "stderr" streams
|
||||
process.stdout.write = process.stderr.write = function() { |
process.stdout.write = process.stderr.write = common.fail; |
||||
throw new Error('write() should not be called!'); |
|
||||
}; |
|
||||
|
|
||||
// make sure that the "Console" function exists
|
// make sure that the "Console" function exists
|
||||
assert.strictEqual('function', typeof Console); |
assert.strictEqual('function', typeof Console); |
||||
|
|
||||
// make sure that the Console constructor throws
|
// make sure that the Console constructor throws
|
||||
// when not given a writable stream instance
|
// when not given a writable stream instance
|
||||
assert.throws(function() { |
assert.throws(() => { |
||||
new Console(); |
new Console(); |
||||
}, /Console expects a writable stream/); |
}, /^TypeError: Console expects a writable stream instance$/); |
||||
|
|
||||
// Console constructor should throw if stderr exists but is not writable
|
// Console constructor should throw if stderr exists but is not writable
|
||||
assert.throws(function() { |
assert.throws(() => { |
||||
out.write = function() {}; |
out.write = () => {}; |
||||
err.write = undefined; |
err.write = undefined; |
||||
new Console(out, err); |
new Console(out, err); |
||||
}, /Console expects writable stream instances/); |
}, /^TypeError: Console expects writable stream instances$/); |
||||
|
|
||||
out.write = err.write = function(d) {}; |
out.write = err.write = (d) => {}; |
||||
|
|
||||
const c = new Console(out, err); |
const c = new Console(out, err); |
||||
|
|
||||
out.write = err.write = function(d) { |
out.write = err.write = common.mustCall((d) => { |
||||
assert.strictEqual(d, 'test\n'); |
assert.strictEqual(d, 'test\n'); |
||||
called = true; |
}, 2); |
||||
}; |
|
||||
|
|
||||
assert(!called); |
|
||||
c.log('test'); |
c.log('test'); |
||||
assert(called); |
|
||||
|
|
||||
called = false; |
|
||||
c.error('test'); |
c.error('test'); |
||||
assert(called); |
|
||||
|
|
||||
out.write = function(d) { |
out.write = common.mustCall((d) => { |
||||
assert.strictEqual('{ foo: 1 }\n', d); |
assert.strictEqual('{ foo: 1 }\n', d); |
||||
called = true; |
}); |
||||
}; |
|
||||
|
|
||||
called = false; |
|
||||
c.dir({ foo: 1 }); |
c.dir({ foo: 1 }); |
||||
assert(called); |
|
||||
|
|
||||
// ensure that the console functions are bound to the console instance
|
// ensure that the console functions are bound to the console instance
|
||||
called = 0; |
let called = 0; |
||||
out.write = function(d) { |
out.write = common.mustCall((d) => { |
||||
called++; |
called++; |
||||
assert.strictEqual(d, called + ' ' + (called - 1) + ' [ 1, 2, 3 ]\n'); |
assert.strictEqual(d, `${called} ${called - 1} [ 1, 2, 3 ]\n`); |
||||
}; |
}, 3); |
||||
|
|
||||
[1, 2, 3].forEach(c.log); |
[1, 2, 3].forEach(c.log); |
||||
assert.strictEqual(3, called); |
|
||||
|
|
||||
// Console() detects if it is called without `new` keyword
|
// Console() detects if it is called without `new` keyword
|
||||
assert.doesNotThrow(function() { |
assert.doesNotThrow(() => { |
||||
Console(out, err); |
Console(out, err); |
||||
}); |
}); |
||||
|
Loading…
Reference in new issue