({ handler, handlerArgs } = this._determineHeadHandler(req, res, ctx, pathPart));
} else {
handler = this.handlerMethodNotAllowed.bind(this);
+ res.setHeader(Enum.Header.Allow, e.methods.join(', '));
}
} else {
this.logger.error(_scope, 'unexpected error', { error: e });
} catch (e) {
if (e instanceof RouterNoMethodError) {
handler = this.handlerMethodNotAllowed.bind(this);
+ res.setHeader(Enum.Header.Allow, e.methods.join(', '));
} else {
this.logger.error(_scope, 'unexpected error', { error: e });
handler = this.handlerInternalServerError.bind(this);
* @param {string} newPath url to redirect to
* @param {number=} statusCode status code to use for redirect, default 307
*/
- async handlerRedirect(req, res, ctx, newPath, statusCode = 307) {
+ async handlerRedirect(req, res, ctx, newPath, statusCode = Enum.HTTPStatusCode.TemporaryRedirect) {
this.setResponseType(this.responseTypes, req, res, ctx);
res.setHeader(Enum.Header.Location, newPath);
res.statusCode = statusCode;
const Header = {
Accept: 'Accept',
AcceptEncoding: 'Accept-Encoding',
+ Allow: 'Allow',
CacheControl: 'Cache-Control',
ContentEncoding: 'Content-Encoding',
ContentLength: 'Content-Length',
if ('*' in matchedPath[kPathMethods]) {
return matchedPath[kPathMethods]['*'];
}
- throw new RouterNoMethodError();
+ throw new RouterNoMethodError(Object.keys(matchedPath[kPathMethods]));
}
ctx.unmatchedPath = pathParts;
throw new RouterNoPathError();
assert(!stubHandler.called);
assert(dingus.handlerMethodNotAllowed.called);
assert(!dingus.handlerNotFound.called);
+ assert(res.setHeader.called);
});
it('does not lookup nonexistent path', async function () {
req.url = '/foo/bar';