mirror of
https://github.com/nodejs/node.git
synced 2025-05-11 03:34:30 +00:00

Move tmpdir functionality to its own module (common/tmpdir). PR-URL: https://github.com/nodejs/node/pull/17856 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
34 lines
682 B
JavaScript
34 lines
682 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const tmpdir = require('../common/tmpdir');
|
|
|
|
let dir = path.resolve(tmpdir.path);
|
|
|
|
// Make sure that the tmp directory is clean
|
|
tmpdir.refresh();
|
|
|
|
// 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);
|
|
});
|