Skip to content

Commit a4f4909

Browse files
targosrvagg
authored andcommitted
module: fix stat with long paths on Windows
PR-URL: #2013 Reviewed-By: Rod Vagg <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]>
1 parent b0990ef commit a4f4909

File tree

2 files changed

+17
-11
lines changed

2 files changed

+17
-11
lines changed

lib/module.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Module._findPath = function(request, paths) {
143143
// For each path
144144
for (var i = 0, PL = paths.length; i < PL; i++) {
145145
// Don't search further if path doesn't exist
146-
if (paths[i] && internalModuleStat(paths[i]) < 1) continue;
146+
if (paths[i] && internalModuleStat(path._makeLong(paths[i])) < 1) continue;
147147
var basePath = path.resolve(paths[i], request);
148148
var filename;
149149

+16-10
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,23 @@
11
'use strict';
2-
var common = require('../common');
3-
var fs = require('fs');
4-
var path = require('path');
5-
var assert = require('assert');
2+
const common = require('../common');
3+
const fs = require('fs');
4+
const path = require('path');
65

76
// make a path that is more than 260 chars long.
8-
var fileNameLen = Math.max(261 - common.tmpDir.length - 1, 1);
9-
var fileName = path.join(common.tmpDir, new Array(fileNameLen + 1).join('x'));
10-
var fullPath = path.resolve(fileName);
7+
const dirNameLen = Math.max(260 - common.tmpDir.length, 1);
8+
const dirName = path.join(common.tmpDir, 'x'.repeat(dirNameLen));
9+
const fullDirPath = path.resolve(dirName);
10+
11+
const indexFile = path.join(fullDirPath, 'index.js');
12+
const otherFile = path.join(fullDirPath, 'other.js');
1113

1214
common.refreshTmpDir();
13-
fs.writeFileSync(fullPath, 'module.exports = 42;');
1415

15-
assert.equal(require(fullPath), 42);
16+
fs.mkdirSync(fullDirPath);
17+
fs.writeFileSync(indexFile, 'require("./other");');
18+
fs.writeFileSync(otherFile, '');
19+
20+
require(indexFile);
21+
require(otherFile);
1622

17-
fs.unlinkSync(fullPath);
23+
common.refreshTmpDir();

0 commit comments

Comments
 (0)