Skip to content

Commit 6aca720

Browse files
authoredJul 4, 2022
Improve path checking before route registration (#155)
* [147] Ensure path sanity checks provide clear errors during registration checks * [147] Adjust tests to not include unused variables * [147] Adjust usage of double quotes to single quotes to ensure code style * [147] Adjust gh-148 to gh-147 mention in tests * [147] Remove extraneous parameters in test functions, ensure all possible method verbs are tested
1 parent 4fb50ac commit 6aca720

File tree

2 files changed

+37
-6
lines changed

2 files changed

+37
-6
lines changed
 

‎lib/router.js

+18-6
Original file line numberDiff line numberDiff line change
@@ -189,17 +189,22 @@ function Router(opts) {
189189
for (let i = 0; i < methods.length; i++) {
190190
function setMethodVerb(method) {
191191
Router.prototype[method] = function(name, path, middleware) {
192-
if (typeof path === "string" || path instanceof RegExp) {
192+
if (typeof path === 'string' || path instanceof RegExp) {
193193
middleware = Array.prototype.slice.call(arguments, 2);
194194
} else {
195195
middleware = Array.prototype.slice.call(arguments, 1);
196196
path = name;
197197
name = null;
198198
}
199199

200-
this.register(path, [method], middleware, {
201-
name: name
202-
});
200+
// Sanity check to ensure we have a viable path candidate (eg: string|regex|non-empty array)
201+
if (
202+
typeof path !== 'string' &&
203+
!(path instanceof RegExp) &&
204+
(!Array.isArray(path) || path.length === 0)
205+
) throw new Error(`You have to provide a path when adding a ${method} handler`);
206+
207+
this.register(path, [method], middleware, {name});
203208

204209
return this;
205210
};
@@ -498,7 +503,14 @@ Router.prototype.all = function (name, path, middleware) {
498503
name = null;
499504
}
500505

501-
this.register(path, methods, middleware, { name });
506+
// Sanity check to ensure we have a viable path candidate (eg: string|regex|non-empty array)
507+
if (
508+
typeof path !== 'string' &&
509+
!(path instanceof RegExp) &&
510+
(!Array.isArray(path) || path.length === 0)
511+
) throw new Error('You have to provide a path when adding an all handler');
512+
513+
this.register(path, methods, middleware, {name});
502514

503515
return this;
504516
};
@@ -572,7 +584,7 @@ Router.prototype.register = function (path, methods, middleware, opts) {
572584
name: opts.name,
573585
sensitive: opts.sensitive || this.opts.sensitive || false,
574586
strict: opts.strict || this.opts.strict || false,
575-
prefix: opts.prefix || this.opts.prefix || "",
587+
prefix: opts.prefix || this.opts.prefix || '',
576588
ignoreCaptures: opts.ignoreCaptures
577589
});
578590

‎test/lib/router.js

+19
Original file line numberDiff line numberDiff line change
@@ -993,7 +993,26 @@ describe('Router', function () {
993993
done();
994994
});
995995
});
996+
997+
it ('correctly returns an error when not passed a path for verb-specific registration (gh-147)', function () {
998+
const router = new Router();
999+
for (let el of methods) {
1000+
try {
1001+
router[el](function () {});
1002+
} catch (e) {
1003+
expect(e.message).to.be(`You have to provide a path when adding a ${el} handler`);
1004+
}
1005+
}
1006+
});
9961007

1008+
it ('correctly returns an error when not passed a path for "all" registration (gh-147)', function () {
1009+
const router = new Router();
1010+
try {
1011+
router.all(function () {});
1012+
} catch (e) {
1013+
expect(e.message).to.be('You have to provide a path when adding an all handler');
1014+
}
1015+
});
9971016
});
9981017

9991018
describe('Router#use()', function () {

0 commit comments

Comments
 (0)
Please sign in to comment.