Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Commit

Permalink
fix(configureRequestLog): use default when configured with undefined (#…
Browse files Browse the repository at this point in the history
…1029)

* fix(configureRequestLog): use default when configured with undefined

* fix(fastify-plugin): ensure error log in onRequest hook
  • Loading branch information
JAdshead committed Jun 21, 2023
1 parent e5daa0c commit 02eda87
Show file tree
Hide file tree
Showing 2 changed files with 109 additions and 8 deletions.
95 changes: 95 additions & 0 deletions __tests__/server/utils/logging/fastifyPlugin.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -728,5 +728,100 @@ describe('fastifyPlugin', () => {
});
});
});

it('catches and logs errors', async () => {
const errorSpy = jest.spyOn(console, 'error').mockImplementation(() => {});

const request = {
headers: {},
};
const reply = {
getHeader: jest.fn(),
raw: {},
};

const fastify = {
decorateRequest: jest.fn((name, fn) => {
fastify[name] = fn;
}),
addHook: jest.fn((name, fn) => {
if (!fastify[name]) {
fastify[name] = fn;
}
}),
};

fastifyPlugin(fastify, null, jest.fn());
const boomError = new Error('boom');
setConfigureRequestLog(() => {
throw boomError;
});
await expect(() => fastify.onResponse(request, reply)).rejects.toEqual(boomError);
expect(errorSpy).toHaveBeenCalledWith(boomError);
});
});

describe('setConfigureRequestLog', () => {
it('resets to default', async () => {
const request = {
headers: {},
};
const reply = {
getHeader: jest.fn(),
raw: {},
};

const fastify = {
decorateRequest: jest.fn((name, fn) => {
fastify[name] = fn;
}),
addHook: jest.fn((name, fn) => {
if (!fastify[name]) {
fastify[name] = fn;
}
}),
};

fastifyPlugin(fastify, null, jest.fn());
setConfigureRequestLog(() => {
throw new Error('shh');
});
setConfigureRequestLog();

await fastify.onResponse(request, reply);

expect(logger.info.mock.calls[0][0]).toMatchInlineSnapshot(`
{
"request": {
"address": {
"uri": "",
},
"direction": "in",
"metaData": {
"correlationId": undefined,
"forwarded": null,
"forwardedFor": null,
"host": null,
"locale": undefined,
"location": undefined,
"method": undefined,
"referrer": null,
"userAgent": null,
},
"protocol": undefined,
"statusCode": undefined,
"statusText": undefined,
"timings": {
"duration": 0,
"requestOverhead": NaN,
"responseBuilder": 0,
"routeHandler": NaN,
"ttfb": 0,
},
},
"type": "request",
}
`);
});
});
});
22 changes: 14 additions & 8 deletions src/server/utils/logging/fastifyPlugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ export const $RequestOverhead = Symbol('$RequestOverhead');
export const $RouteHandler = Symbol('$RouteHandler');
export const $ResponseBuilder = Symbol('$ResponseBuilder');

const passThrough = ({ log }) => log;
const UTILS = {
configureRequestLog: ({ log }) => log,
configureRequestLog: passThrough,
};

const getLocale = (req) => {
Expand Down Expand Up @@ -137,7 +138,7 @@ const logClientRequest = (request, reply) => {
logger.info(configuredLog);
};

export const setConfigureRequestLog = (newConfigureRequestLog) => {
export const setConfigureRequestLog = (newConfigureRequestLog = passThrough) => {
UTILS.configureRequestLog = newConfigureRequestLog;
};

Expand Down Expand Up @@ -200,12 +201,17 @@ const fastifyPlugin = (fastify, _opts, done) => {
});

fastify.addHook('onResponse', async (request, reply) => {
endTimer(request, $ResponseBuilder);
// same as 'reply.getResponseTime()' but our approach
// helps us to make the code cleaner
endTimer(request, $RequestFullDuration);

logClientRequest(request, reply);
try {
endTimer(request, $ResponseBuilder);
// same as 'reply.getResponseTime()' but our approach
// helps us to make the code cleaner
endTimer(request, $RequestFullDuration);

logClientRequest(request, reply);
} catch (error) {
console.error(error);
throw error;
}
});

done();
Expand Down

0 comments on commit 02eda87

Please sign in to comment.