Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: add basic sentry tests #6308

Merged
merged 2 commits into from
Oct 18, 2018
Merged

tests: add basic sentry tests #6308

merged 2 commits into from
Oct 18, 2018

Conversation

patrickhulce
Copy link
Collaborator

Summary
adds a few basic tests for the sentry functionality

Related Issues/PRs
#6215

});

it('should skip expected errors', async () => {
Sentry.init(configPayload);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what is an example of an expected error?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

An audit that fails because its artifact errored. In that case we'd essentially be double reporting. The real error is the one that failed in the gatherer, so we just report that one.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

// Create a friendlier display error and mark it as expected to avoid duplicates in Sentry
const error = new Error(
`Required ${artifactName} gatherer encountered an error: ${artifactError.message}`);
// @ts-ignore Non-standard property added to Error
error.expected = true;
throw error;

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@hoten it's pretty much only for controlling error reporting to Sentry. Basically it means this is an error, but we expect it often enough and it might be something the user needs to fix (or in the example @patrickhulce linked, we already reported it when it was a gatherer error, no reason to report it again).

Copy link
Member

@brendankenny brendankenny left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

love this, just some questions about mocking style :)

*/
'use strict';

jest.mock('raven');
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what's the unmocking behavior for this? The docs don't really make it clear. Does it rely on the tests being run in different processes so that other requires won't get a mock version?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

even in the same process jest has a require sandbox that require is not real require and does auto-mocking of all kinds of things so there should be no need to unmock elsewhere (though even if it were mocked everywhere, I wouldn't be disappointed in the extra layer of assurance its not going to sentry :) )

Copy link
Member

@brendankenny brendankenny Oct 17, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah yeah, less worried about sentry (not) leaking in other tests than just how they work in general for future tests :)


originalSentry = {...Sentry};
originalMathRandom = Math.random;
ravenConfigFn = jest.fn().mockReturnValue({install: jest.fn()});
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can this just set these directly (raven.config = jest.fn().mockReturnValue({install: jest.fn()});) and then do the expect() checks below on the actual thing (expect(raven.config).toSomethingSomething). For whatever reason that's easier for me to parse than checking expect(ravenConfigFn)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

or from the docs it seems like you can also do raven.config.mockReturnValue({install: jest.fn()}); rather than the assignment. Does that work?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can this just set these directly

sure, no prob

it seems like you can also do raven.config.mockReturnValue({install: jest.fn()}); rather than the assignment. Does that work?

mostly :) the auto-mock only happens when the module is required in for the test, it's not reset for every it. Rather than rely on the magic mocks, have reset methods, and do the configuration, it seemed clearer to do the explicit jest.fn for the ones we're actually making assertions about. That make sense?

environmentData: {},
};

originalSentry = {...Sentry};
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

seems like sentry isn't modified anywhere?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

although, overriding Math.random is also kind of horrifying :) Maybe we should extract a shouldSample() function on Sentry and replace that in this test instead

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the Sentry object is mutated everytime you call init, I'll add a comment about this.

shouldSample works for me

});

it('should skip expected errors', async () => {
Sentry.init(configPayload);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@hoten it's pretty much only for controlling error reporting to Sentry. Basically it means this is an error, but we expect it often enough and it might be something the user needs to fix (or in the example @patrickhulce linked, we already reported it when it was a gatherer error, no reason to report it again).

Copy link
Member

@brendankenny brendankenny left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM! yay tests

@paulirish
Copy link
Member

image

i have a hard time understanding codecov's math here. :)

@@ -37,6 +37,9 @@ const sentryDelegate = {
getContext: noop,
/** @type {(error: Error, options?: CaptureOptions) => Promise<void>} */
captureException: async () => {},
_shouldSample() {
return SAMPLE_RATE >= Math.random();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

heh. check out sampleRate on https://docs.sentry.io/clients/node/config/

I think they added it a while ago. I wonder why we never saw it.

Anyway, I think it's fine to use our solution for now. :)

@paulirish paulirish merged commit c6ae9f5 into master Oct 18, 2018
@paulirish paulirish deleted the sentry_tests branch October 18, 2018 00:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants