node/test/parallel/test-fs-error-messages.js
Kanika Shah 932499ec10
test: use fixtures module
PR-URL: https://github.com/nodejs/node/pull/15959
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
2017-10-19 01:52:49 -02:00

233 lines
5.3 KiB
JavaScript

// Copyright Joyent, Inc. and other Node contributors.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to permit
// persons to whom the Software is furnished to do so, subject to the
// following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
'use strict';
require('../common');
const fixtures = require('../common/fixtures');
const assert = require('assert');
const fs = require('fs');
const fn = fixtures.path('non-existent');
const existingFile = fixtures.path('exit.js');
const existingFile2 = fixtures.path('create-file.js');
const existingDir = fixtures.path('empty');
const existingDir2 = fixtures.path('keys');
// ASYNC_CALL
fs.stat(fn, function(err) {
assert.strictEqual(fn, err.path);
assert.ok(err.message.includes(fn));
});
fs.lstat(fn, function(err) {
assert.ok(err.message.includes(fn));
});
fs.readlink(fn, function(err) {
assert.ok(err.message.includes(fn));
});
fs.link(fn, 'foo', function(err) {
assert.ok(err.message.includes(fn));
});
fs.link(existingFile, existingFile2, function(err) {
assert.ok(err.message.includes(existingFile));
assert.ok(err.message.includes(existingFile2));
});
fs.symlink(existingFile, existingFile2, function(err) {
assert.ok(err.message.includes(existingFile));
assert.ok(err.message.includes(existingFile2));
});
fs.unlink(fn, function(err) {
assert.ok(err.message.includes(fn));
});
fs.rename(fn, 'foo', function(err) {
assert.ok(err.message.includes(fn));
});
fs.rename(existingDir, existingDir2, function(err) {
assert.ok(err.message.includes(existingDir));
assert.ok(err.message.includes(existingDir2));
});
fs.rmdir(fn, function(err) {
assert.ok(err.message.includes(fn));
});
fs.mkdir(existingFile, 0o666, function(err) {
assert.ok(err.message.includes(existingFile));
});
fs.rmdir(existingFile, function(err) {
assert.ok(err.message.includes(existingFile));
});
fs.chmod(fn, 0o666, function(err) {
assert.ok(err.message.includes(fn));
});
fs.open(fn, 'r', 0o666, function(err) {
assert.ok(err.message.includes(fn));
});
fs.readFile(fn, function(err) {
assert.ok(err.message.includes(fn));
});
// Sync
const errors = [];
let expected = 0;
try {
++expected;
fs.statSync(fn);
} catch (err) {
errors.push('stat');
assert.ok(err.message.includes(fn));
}
try {
++expected;
fs.mkdirSync(existingFile, 0o666);
} catch (err) {
errors.push('mkdir');
assert.ok(err.message.includes(existingFile));
}
try {
++expected;
fs.chmodSync(fn, 0o666);
} catch (err) {
errors.push('chmod');
assert.ok(err.message.includes(fn));
}
try {
++expected;
fs.lstatSync(fn);
} catch (err) {
errors.push('lstat');
assert.ok(err.message.includes(fn));
}
try {
++expected;
fs.readlinkSync(fn);
} catch (err) {
errors.push('readlink');
assert.ok(err.message.includes(fn));
}
try {
++expected;
fs.linkSync(fn, 'foo');
} catch (err) {
errors.push('link');
assert.ok(err.message.includes(fn));
}
try {
++expected;
fs.linkSync(existingFile, existingFile2);
} catch (err) {
errors.push('link');
assert.ok(err.message.includes(existingFile));
assert.ok(err.message.includes(existingFile2));
}
try {
++expected;
fs.symlinkSync(existingFile, existingFile2);
} catch (err) {
errors.push('symlink');
assert.ok(err.message.includes(existingFile));
assert.ok(err.message.includes(existingFile2));
}
try {
++expected;
fs.unlinkSync(fn);
} catch (err) {
errors.push('unlink');
assert.ok(err.message.includes(fn));
}
try {
++expected;
fs.rmdirSync(fn);
} catch (err) {
errors.push('rmdir');
assert.ok(err.message.includes(fn));
}
try {
++expected;
fs.rmdirSync(existingFile);
} catch (err) {
errors.push('rmdir');
assert.ok(err.message.includes(existingFile));
}
try {
++expected;
fs.openSync(fn, 'r');
} catch (err) {
errors.push('opens');
assert.ok(err.message.includes(fn));
}
try {
++expected;
fs.renameSync(fn, 'foo');
} catch (err) {
errors.push('rename');
assert.ok(err.message.includes(fn));
}
try {
++expected;
fs.renameSync(existingDir, existingDir2);
} catch (err) {
errors.push('rename');
assert.ok(err.message.includes(existingDir));
assert.ok(err.message.includes(existingDir2));
}
try {
++expected;
fs.readdirSync(fn);
} catch (err) {
errors.push('readdir');
assert.ok(err.message.includes(fn));
}
process.on('exit', function() {
assert.strictEqual(
expected, errors.length,
`Test fs sync exceptions raised, got ${errors.length} expected ${expected}`
);
});