mirror of
https://github.com/nodejs/node.git
synced 2025-05-04 13:07:46 +00:00

PR-URL: https://github.com/nodejs/node/pull/35086 Reviewed-By: Ruy Adorno <ruyadorno@github.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
28 lines
951 B
JavaScript
28 lines
951 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
|
|
const tmpdir = require('../common/tmpdir');
|
|
tmpdir.refresh();
|
|
const tmpDir = tmpdir.path;
|
|
const longPath = path.join(...[tmpDir].concat(Array(30).fill('1234567890')));
|
|
fs.mkdirSync(longPath, { recursive: true });
|
|
|
|
// Test if we can have symlinks to files and folders with long filenames
|
|
const targetDirtectory = path.join(longPath, 'target-directory');
|
|
fs.mkdirSync(targetDirtectory);
|
|
const pathDirectory = path.join(tmpDir, 'new-directory');
|
|
fs.symlink(targetDirtectory, pathDirectory, 'dir', common.mustSucceed(() => {
|
|
assert(fs.existsSync(pathDirectory));
|
|
}));
|
|
|
|
const targetFile = path.join(longPath, 'target-file');
|
|
fs.writeFileSync(targetFile, 'data');
|
|
const pathFile = path.join(tmpDir, 'new-file');
|
|
fs.symlink(targetFile, pathFile, common.mustSucceed(() => {
|
|
assert(fs.existsSync(pathFile));
|
|
}));
|