mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 18:44:40 +00:00

PR-URL: https://github.com/nodejs/node/pull/12735 Refs: https://github.com/nodejs/node/pull/12455 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
32 lines
645 B
JavaScript
32 lines
645 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
let dir = path.resolve(common.tmpDir);
|
|
|
|
// Make sure that the tmp directory is clean
|
|
common.refreshTmpDir();
|
|
|
|
// Make a long path.
|
|
for (let i = 0; i < 50; i++) {
|
|
dir = `${dir}/1234567890`;
|
|
try {
|
|
fs.mkdirSync(dir, '0777');
|
|
} catch (e) {
|
|
if (e.code !== 'EEXIST') {
|
|
throw e;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Test if file exists synchronously
|
|
assert(common.fileExists(dir), 'Directory is not accessible');
|
|
|
|
// Test if file exists asynchronously
|
|
fs.access(dir, function(err) {
|
|
assert.ifError(err);
|
|
});
|