test: refactor test-fs-assert-encoding-error

Check that callbacks are not executed when errors are expected to be
thrown.

PR-URL: https://github.com/nodejs/node/pull/13226
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
This commit is contained in:
Rich Trott 2017-05-25 14:47:52 -07:00
parent 758a17f1d5
commit f00475d9d6

View file

@ -7,7 +7,7 @@ const options = 'test';
const unknownEncodingMessage = /^Error: Unknown encoding: test$/;
assert.throws(() => {
fs.readFile('path', options, common.noop);
fs.readFile('path', options, common.mustNotCall());
}, unknownEncodingMessage);
assert.throws(() => {
@ -15,7 +15,7 @@ assert.throws(() => {
}, unknownEncodingMessage);
assert.throws(() => {
fs.readdir('path', options, common.noop);
fs.readdir('path', options, common.mustNotCall());
}, unknownEncodingMessage);
assert.throws(() => {
@ -23,7 +23,7 @@ assert.throws(() => {
}, unknownEncodingMessage);
assert.throws(() => {
fs.readlink('path', options, common.noop);
fs.readlink('path', options, common.mustNotCall());
}, unknownEncodingMessage);
assert.throws(() => {
@ -31,7 +31,7 @@ assert.throws(() => {
}, unknownEncodingMessage);
assert.throws(() => {
fs.writeFile('path', 'data', options, common.noop);
fs.writeFile('path', 'data', options, common.mustNotCall());
}, unknownEncodingMessage);
assert.throws(() => {
@ -39,7 +39,7 @@ assert.throws(() => {
}, unknownEncodingMessage);
assert.throws(() => {
fs.appendFile('path', 'data', options, common.noop);
fs.appendFile('path', 'data', options, common.mustNotCall());
}, unknownEncodingMessage);
assert.throws(() => {
@ -47,11 +47,11 @@ assert.throws(() => {
}, unknownEncodingMessage);
assert.throws(() => {
fs.watch('path', options, common.noop);
fs.watch('path', options, common.mustNotCall());
}, unknownEncodingMessage);
assert.throws(() => {
fs.realpath('path', options, common.noop);
fs.realpath('path', options, common.mustNotCall());
}, unknownEncodingMessage);
assert.throws(() => {
@ -59,7 +59,7 @@ assert.throws(() => {
}, unknownEncodingMessage);
assert.throws(() => {
fs.mkdtemp('path', options, common.noop);
fs.mkdtemp('path', options, common.mustNotCall());
}, unknownEncodingMessage);
assert.throws(() => {