mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
148f402320
Directory symlinks in Windows require the 'dir' flag to be passed to create the symlink correctly. PR-URL: https://github.com/nodejs/node/pull/19049 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Khaidi Chu <i@2333.moe> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
50 lines
1.5 KiB
JavaScript
50 lines
1.5 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const { spawn } = require('child_process');
|
|
const assert = require('assert');
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
|
|
const tmpdir = require('../common/tmpdir');
|
|
tmpdir.refresh();
|
|
const tmpDir = tmpdir.path;
|
|
|
|
const entry = path.join(tmpDir, 'entry.mjs');
|
|
const real = path.join(tmpDir, 'index.mjs');
|
|
const link_absolute_path = path.join(tmpDir, 'absolute');
|
|
const link_relative_path = path.join(tmpDir, 'relative');
|
|
const link_ignore_extension = path.join(tmpDir,
|
|
'ignore_extension.json');
|
|
const link_directory = path.join(tmpDir, 'directory');
|
|
|
|
fs.writeFileSync(real, 'export default [];');
|
|
fs.writeFileSync(entry, `
|
|
import assert from 'assert';
|
|
import real from './index.mjs';
|
|
import absolute from './absolute';
|
|
import relative from './relative';
|
|
import ignoreExtension from './ignore_extension.json';
|
|
import directory from './directory';
|
|
|
|
assert.strictEqual(absolute, real);
|
|
assert.strictEqual(relative, real);
|
|
assert.strictEqual(ignoreExtension, real);
|
|
assert.strictEqual(directory, real);
|
|
`);
|
|
|
|
try {
|
|
fs.symlinkSync(real, link_absolute_path);
|
|
fs.symlinkSync(path.basename(real), link_relative_path);
|
|
fs.symlinkSync(real, link_ignore_extension);
|
|
fs.symlinkSync(path.dirname(real), link_directory, 'dir');
|
|
} catch (err) {
|
|
if (err.code !== 'EPERM') throw err;
|
|
common.skip('insufficient privileges for symlinks');
|
|
}
|
|
|
|
spawn(process.execPath, ['--experimental-modules', entry],
|
|
{ stdio: 'inherit' }).on('exit', (code) => {
|
|
assert.strictEqual(code, 0);
|
|
});
|