Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

module: fix addition of filetypes, if require ends with .. #7094

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions lib/module.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,22 +167,23 @@ Module._findPath = function(request, paths) {
// For each path
for (var i = 0, PL = paths.length; i < PL; i++) {
var basePath = path.resolve(paths[i], request);
var stats = statPath(basePath);
var filename;

if (!trailingSlash) {
// try to join the request to the path
filename = tryFile(basePath);

if (!filename && !trailingSlash) {
if (!filename && stats && stats.isDirectory()) {
filename = tryPackage(basePath, exts);
}

if (!filename) {
// try it with each of the extensions
filename = tryExtensions(basePath, exts);
}
}

if (!filename) {
filename = tryPackage(basePath, exts);
}

if (!filename) {
// try it with each of the extensions at "index"
filename = tryExtensions(path.resolve(basePath, 'index'), exts);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rocko": "artischocko"}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = "hello from module-stub!"
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"version": "1.1.12",
"name": "module-stub",
"main": "./index.js",
"description": "A stub for node tests",
"author": "Robert Kowalski <rok@kowalski.gd>"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require('../..');
29 changes: 29 additions & 0 deletions test/simple/test-require-extensions-same-filename-as-dir.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
// Copyright Joyent, Inc. and other Node contributors.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to permit
// persons to whom the Software is furnished to do so, subject to the
// following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.

var common = require('../common');
var assert = require('assert');

var content = require(common.fixturesDir +
'/json-with-directory-name-module/module-stub/test/tap/test.js');

assert.ok(content.rocko !== 'artischocko');
assert.equal(content, 'hello from module-stub!');