Skip to content

Commit cd7ce18

Browse files
dario-piotrowiczaduh95
authored andcommitted
module: fix bad require.resolve with option paths for . and ..
this change fixes `require.resolve` used with the `paths` option not considering `.` and `..` as relative Fixes: #47000 PR-URL: #56735 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Jordan Harband <[email protected]> Reviewed-By: Matteo Collina <[email protected]>
1 parent 5dd7116 commit cd7ce18

File tree

3 files changed

+61
-17
lines changed

3 files changed

+61
-17
lines changed

lib/internal/modules/cjs/loader.js

+17-17
Original file line numberDiff line numberDiff line change
@@ -713,18 +713,8 @@ Module._findPath = function(request, paths, isMain) {
713713
)
714714
));
715715

716-
const isRelative = StringPrototypeCharCodeAt(request, 0) === CHAR_DOT &&
717-
(
718-
request.length === 1 ||
719-
StringPrototypeCharCodeAt(request, 1) === CHAR_FORWARD_SLASH ||
720-
(isWindows && StringPrototypeCharCodeAt(request, 1) === CHAR_BACKWARD_SLASH) ||
721-
(StringPrototypeCharCodeAt(request, 1) === CHAR_DOT && ((
722-
request.length === 2 ||
723-
StringPrototypeCharCodeAt(request, 2) === CHAR_FORWARD_SLASH) ||
724-
(isWindows && StringPrototypeCharCodeAt(request, 2) === CHAR_BACKWARD_SLASH)))
725-
);
726716
let insidePath = true;
727-
if (isRelative) {
717+
if (isRelative(request)) {
728718
const normalizedRequest = path.normalize(request);
729719
if (StringPrototypeStartsWith(normalizedRequest, '..')) {
730720
insidePath = false;
@@ -1164,12 +1154,7 @@ Module._resolveFilename = function(request, parent, isMain, options) {
11641154

11651155
if (typeof options === 'object' && options !== null) {
11661156
if (ArrayIsArray(options.paths)) {
1167-
const isRelative = StringPrototypeStartsWith(request, './') ||
1168-
StringPrototypeStartsWith(request, '../') ||
1169-
((isWindows && StringPrototypeStartsWith(request, '.\\')) ||
1170-
StringPrototypeStartsWith(request, '..\\'));
1171-
1172-
if (isRelative) {
1157+
if (isRelative(request)) {
11731158
paths = options.paths;
11741159
} else {
11751160
const fakeParent = new Module('', null);
@@ -1774,6 +1759,21 @@ function createRequire(filename) {
17741759
return createRequireFromPath(filepath);
17751760
}
17761761

1762+
/**
1763+
* Checks if a path is relative
1764+
* @param {string} path the target path
1765+
* @returns {boolean} true if the path is relative, false otherwise
1766+
*/
1767+
function isRelative(path) {
1768+
if (StringPrototypeCharCodeAt(path, 0) !== CHAR_DOT) { return false; }
1769+
1770+
return path.length === 1 || path === '..' ||
1771+
StringPrototypeStartsWith(path, './') ||
1772+
StringPrototypeStartsWith(path, '../') ||
1773+
((isWindows && StringPrototypeStartsWith(path, '.\\')) ||
1774+
StringPrototypeStartsWith(path, '..\\'));
1775+
}
1776+
17771777
Module.createRequire = createRequire;
17781778

17791779
/**
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
exports.value = 'relative subdir';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
'use strict';
2+
3+
const common = require('../common');
4+
const assert = require('assert');
5+
const fixtures = require('../common/fixtures');
6+
7+
if (!common.isMainThread)
8+
common.skip('process.chdir is not available in Workers');
9+
10+
const subdir = fixtures.path('module-require', 'relative', 'subdir');
11+
12+
process.chdir(subdir);
13+
14+
// Parent directory paths (`..`) work as intended
15+
{
16+
assert(require.resolve('.', { paths: ['../'] }).endsWith('index.js'));
17+
assert(require.resolve('./index.js', { paths: ['../'] }).endsWith('index.js'));
18+
19+
// paths: [".."] should resolve like paths: ["../"]
20+
assert(require.resolve('.', { paths: ['..'] }).endsWith('index.js'));
21+
assert(require.resolve('./index.js', { paths: ['..'] }).endsWith('index.js'));
22+
}
23+
24+
process.chdir('..');
25+
26+
// Current directory paths (`.`) work as intended
27+
{
28+
assert(require.resolve('.', { paths: ['.'] }).endsWith('index.js'));
29+
assert(require.resolve('./index.js', { paths: ['./'] }).endsWith('index.js'));
30+
31+
// paths: ["."] should resolve like paths: ["../"]
32+
assert(require.resolve('.', { paths: ['.'] }).endsWith('index.js'));
33+
assert(require.resolve('./index.js', { paths: ['.'] }).endsWith('index.js'));
34+
}
35+
36+
// Sub directory paths work as intended
37+
{
38+
// assert.deepStrictEqual(fs.readdirSync('./subdir'), [5]);
39+
assert(require.resolve('./relative-subdir.js', { paths: ['./subdir'] }).endsWith('relative-subdir.js'));
40+
41+
// paths: ["subdir"] should resolve like paths: ["./subdir"]
42+
assert(require.resolve('./relative-subdir.js', { paths: ['subdir'] }).endsWith('relative-subdir.js'));
43+
}

0 commit comments

Comments
 (0)