This commit changes many test styles to change all references
from require('./common.js'); to require('./common');.
The latter is much more common, with the former only being used in 50
tests. It is just a stylistic change, and it seems that `common.js` was
introduced by a rogue test and copied and pasted into the rest.
Semver: patch
PR-URL: https://github.com/iojs/io.js/pull/917
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
45 lines
839 B
JavaScript
45 lines
839 B
JavaScript
var common = require('../common'),
|
|
assert = require('assert'),
|
|
fs = require('fs'),
|
|
path = require('path');
|
|
|
|
var dir = path.resolve(common.fixturesDir),
|
|
dirs = [];
|
|
|
|
// Make a long path.
|
|
for (var i = 0; i < 50; i++) {
|
|
dir = dir + '/123456790';
|
|
try {
|
|
fs.mkdirSync(dir, '0777');
|
|
} catch (e) {
|
|
if (e.code == 'EEXIST') {
|
|
// Ignore;
|
|
} else {
|
|
cleanup();
|
|
throw e;
|
|
}
|
|
}
|
|
dirs.push(dir);
|
|
}
|
|
|
|
// Test existsSync
|
|
var r = common.fileExists(dir);
|
|
if (r !== true) {
|
|
cleanup();
|
|
throw new Error('fs.accessSync returned false');
|
|
}
|
|
|
|
// Text exists
|
|
fs.access(dir, function(err) {
|
|
cleanup();
|
|
if (err) {
|
|
throw new Error('fs.access reported false');
|
|
}
|
|
});
|
|
|
|
// Remove all created directories
|
|
function cleanup() {
|
|
for (var i = dirs.length - 1; i >= 0; i--) {
|
|
fs.rmdirSync(dirs[i]);
|
|
}
|
|
}
|