-
-
Notifications
You must be signed in to change notification settings - Fork 354
feat: logsOrigin implementation #5354
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
Merged
Merged
Changes from 5 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
a6ccfaa
loggerOrigin implementation
lucas-zimerman 6809b56
JS tests
lucas-zimerman ac657fc
fix JS disabled also disabling native, lint fixes, test fixes
lucas-zimerman 7c4d332
rename feat to logsOrigin
lucas-zimerman 3666827
Merge branch 'main' into lz/toggle-native-logs
lucas-zimerman 2d46d9d
Update CHANGELOG.md
lucas-zimerman 62fc88a
restore replay-stubs from main, added comments to client.ts
lucas-zimerman 1490036
Merge branch 'main' into lz/toggle-native-logs
lucas-zimerman 1d3a918
changelog sync
lucas-zimerman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lucas-zimerman marked this conversation as resolved.
Show resolved
Hide resolved
|
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,78 @@ | ||
| import { consoleLoggingIntegration } from '@sentry/browser'; | ||
| import type { Integration } from '@sentry/core'; | ||
| import { getDefaultIntegrations } from '../../src/js/integrations/default'; | ||
| import { logEnricherIntegration } from '../../src/js/integrations/logEnricherIntegration'; | ||
| import type { ReactNativeClientOptions } from '../../src/js/options'; | ||
| import { notWeb } from '../../src/js/utils/environment'; | ||
|
|
||
| jest.mock('../../src/js/utils/environment', () => { | ||
| const actual = jest.requireActual('../../src/js/utils/environment'); | ||
| return { | ||
| ...actual, | ||
| notWeb: jest.fn(() => true), | ||
| }; | ||
| }); | ||
|
|
||
| const logEnricherIntegrationName = logEnricherIntegration().name; | ||
| const consoleLoggingIntegrationName = consoleLoggingIntegration().name; | ||
|
|
||
| describe('getDefaultIntegrations - logging integrations', () => { | ||
| beforeEach(() => { | ||
| (notWeb as jest.Mock).mockReturnValue(true); | ||
| }); | ||
|
|
||
| const createOptions = (overrides: Partial<ReactNativeClientOptions>): ReactNativeClientOptions => { | ||
| return { | ||
| dsn: 'https://example.com/1', | ||
| enableNative: true, | ||
| ...overrides, | ||
| } as ReactNativeClientOptions; | ||
| }; | ||
|
|
||
| const getIntegrationNames = (options: ReactNativeClientOptions): string[] => { | ||
| const integrations = getDefaultIntegrations(options); | ||
| return integrations.map((integration: Integration) => integration.name); | ||
| }; | ||
|
|
||
| it('does not add logging integrations when enableLogs is falsy', () => { | ||
| const names = getIntegrationNames(createOptions({ enableLogs: false })); | ||
|
|
||
| expect(names).not.toContain(logEnricherIntegrationName); | ||
| expect(names).not.toContain(consoleLoggingIntegrationName); | ||
| }); | ||
|
|
||
| it('adds logging integrations when enableLogs is true and logsOrigin is not native', () => { | ||
| const names = getIntegrationNames(createOptions({ enableLogs: true })); | ||
|
|
||
| expect(names).toContain(logEnricherIntegrationName); | ||
| expect(names).toContain(consoleLoggingIntegrationName); | ||
| }); | ||
|
|
||
| it('does not add logging integrations when logsOrigin is native', () => { | ||
| const names = getIntegrationNames( | ||
| createOptions({ | ||
| enableLogs: true, | ||
| logsOrigin: 'native' as unknown as ReactNativeClientOptions['logsOrigin'], | ||
| }), | ||
| ); | ||
|
|
||
| expect(names).not.toContain(logEnricherIntegrationName); | ||
| expect(names).not.toContain(consoleLoggingIntegrationName); | ||
| }); | ||
|
|
||
| it.each([ | ||
| ['all', true], | ||
| ['js', true], | ||
| ['native', false], | ||
| ])('handles logsOrigin %s correctly', (logsOrigin, shouldInclude) => { | ||
| const names = getIntegrationNames( | ||
| createOptions({ | ||
| enableLogs: true, | ||
| logsOrigin: logsOrigin as unknown as ReactNativeClientOptions['logsOrigin'], | ||
| }), | ||
| ); | ||
|
|
||
| expect(names.includes(logEnricherIntegrationName)).toBe(shouldInclude); | ||
| expect(names.includes(consoleLoggingIntegrationName)).toBe(shouldInclude); | ||
| }); | ||
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.