0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/parallel/test-fs-assert-encoding-error.js

79 lines
1.7 KiB
JavaScript
Raw Normal View History

'use strict';
const common = require('../common');
const assert = require('assert');
const fs = require('fs');
const options = 'test';
const expectedError = common.expectsError({
code: 'ERR_INVALID_OPT_VALUE_ENCODING',
type: TypeError,
}, 17);
assert.throws(() => {
fs.readFile('path', options, common.mustNotCall());
}, expectedError);
assert.throws(() => {
fs.readFileSync('path', options);
}, expectedError);
assert.throws(() => {
fs.readdir('path', options, common.mustNotCall());
}, expectedError);
assert.throws(() => {
fs.readdirSync('path', options);
}, expectedError);
assert.throws(() => {
fs.readlink('path', options, common.mustNotCall());
}, expectedError);
assert.throws(() => {
fs.readlinkSync('path', options);
}, expectedError);
assert.throws(() => {
fs.writeFile('path', 'data', options, common.mustNotCall());
}, expectedError);
assert.throws(() => {
fs.writeFileSync('path', 'data', options);
}, expectedError);
assert.throws(() => {
fs.appendFile('path', 'data', options, common.mustNotCall());
}, expectedError);
assert.throws(() => {
fs.appendFileSync('path', 'data', options);
}, expectedError);
assert.throws(() => {
fs.watch('path', options, common.mustNotCall());
}, expectedError);
assert.throws(() => {
fs.realpath('path', options, common.mustNotCall());
}, expectedError);
assert.throws(() => {
fs.realpathSync('path', options);
}, expectedError);
assert.throws(() => {
fs.mkdtemp('path', options, common.mustNotCall());
}, expectedError);
assert.throws(() => {
fs.mkdtempSync('path', options);
}, expectedError);
assert.throws(() => {
fs.ReadStream('path', options);
}, expectedError);
assert.throws(() => {
fs.WriteStream('path', options);
}, expectedError);