1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045 |
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {render, screen, userEvent, within} from 'sentry-test/reactTestingLibrary';
- import ThreadsV2 from 'sentry/components/events/interfaces/threadsV2';
- import {EventOrGroupType} from 'sentry/types';
- import {EntryType, Event} from 'sentry/types/event';
- describe('ThreadsV2', function () {
- const {project, organization} = initializeOrg();
- const org = {...organization, features: ['native-stack-trace-v2']};
- describe('non native platform', function () {
- describe('other platform', function () {
- const event: Event = {
- id: '020eb33f6ce64ed6adc60f8993535816',
- groupID: '68',
- eventID: '020eb33f6ce64ed6adc60f8993535816',
- projectID: '2',
- size: 3481,
- entries: [
- {
- data: {
- values: [
- {
- type: 'ZeroDivisionError',
- value: 'divided by 0',
- mechanism: null,
- threadId: null,
- module: '',
- stacktrace: {
- frames: [
- {
- filename: 'puma (3.12.6) lib/puma/thread_pool.rb',
- absPath: 'puma (3.12.6) lib/puma/thread_pool.rb',
- module: null,
- package: null,
- platform: null,
- instructionAddr: null,
- symbolAddr: null,
- function: 'block in spawn_thread',
- rawFunction: null,
- symbol: null,
- context: [],
- lineNo: 135,
- colNo: null,
- inApp: false,
- trust: null,
- errors: null,
- vars: null,
- },
- {
- filename: 'puma (3.12.6) lib/puma/server.rb',
- absPath: 'puma (3.12.6) lib/puma/server.rb',
- module: null,
- package: null,
- platform: null,
- instructionAddr: null,
- symbolAddr: null,
- function: 'block in run',
- rawFunction: null,
- symbol: null,
- context: [],
- lineNo: 334,
- colNo: null,
- inApp: false,
- trust: null,
- errors: null,
- vars: null,
- },
- {
- filename: 'sentry/controllers/welcome_controller.rb',
- absPath: 'sentry/controllers/welcome_controller.rb',
- module: null,
- package: null,
- platform: null,
- instructionAddr: null,
- symbolAddr: null,
- function: 'index',
- rawFunction: null,
- symbol: null,
- context: [
- [2, ' before_action :set_sentry_context\n'],
- [3, '\n'],
- [4, ' def index\n'],
- [5, ' 1 / 0\n'],
- [6, ' end\n'],
- [7, '\n'],
- [8, ' def view_error\n'],
- ],
- lineNo: 5,
- colNo: null,
- inApp: true,
- trust: null,
- errors: null,
- vars: null,
- minGroupingLevel: 1,
- },
- {
- filename: 'sentry/controllers/welcome_controller.rb',
- absPath: 'sentry/controllers/welcome_controller.rb',
- module: null,
- package: null,
- platform: null,
- instructionAddr: null,
- symbolAddr: null,
- function: '/',
- rawFunction: null,
- symbol: null,
- context: [
- [2, ' before_action :set_sentry_context\n'],
- [3, '\n'],
- [4, ' def index\n'],
- [5, ' 1 / 0\n'],
- [6, ' end\n'],
- [7, '\n'],
- [8, ' def view_error\n'],
- ],
- lineNo: 5,
- colNo: null,
- inApp: true,
- trust: null,
- errors: null,
- vars: null,
- minGroupingLevel: 0,
- },
- ],
- framesOmitted: null,
- registers: null,
- hasSystemFrames: true,
- },
- rawStacktrace: null,
- frames: null,
- },
- ],
- hasSystemFrames: true,
- excOmitted: null,
- },
- type: EntryType.EXCEPTION,
- },
- {
- data: {
- values: [
- {
- id: 13920,
- current: true,
- crashed: true,
- name: 'puma 002',
- stacktrace: null,
- rawStacktrace: null,
- },
- ],
- },
- type: EntryType.THREADS,
- },
- ],
- dist: null,
- message: '',
- title: 'ZeroDivisionError: divided by 0',
- location: 'sentry/controllers/welcome_controller.rb',
- user: null,
- contexts: {},
- sdk: null,
- context: {},
- packages: {},
- type: EventOrGroupType.ERROR,
- metadata: {
- display_title_with_tree_label: false,
- filename: 'sentry/controllers/welcome_controller.rb',
- finest_tree_label: [
- {filebase: 'welcome_controller.rb', function: '/'},
- {filebase: 'welcome_controller.rb', function: 'index'},
- ],
- function: '/',
- type: 'ZeroDivisionError',
- value: 'divided by 0',
- },
- tags: [{key: 'level', value: 'error'}],
- platform: 'other',
- dateReceived: '2021-10-28T12:28:22.318469Z',
- errors: [],
- crashFile: null,
- culprit: 'sentry/controllers/welcome_controller.rb in /',
- dateCreated: '2021-10-28T12:28:22.318469Z',
- fingerprints: ['58f1f47bea5239ea25397888dc9253d1'],
- groupingConfig: {
- enhancements: 'eJybzDRxY25-UmZOqpWRgZGhroGJroHRBABbUQb_',
- id: 'mobile:2021-02-12',
- },
- release: null,
- userReport: null,
- sdkUpdates: [],
- nextEventID: null,
- previousEventID: null,
- };
- const props: React.ComponentProps<typeof ThreadsV2> = {
- type: EntryType.THREADS,
- data: event.entries[1].data as React.ComponentProps<typeof ThreadsV2>['data'],
- event,
- groupingCurrentLevel: 0,
- hasHierarchicalGrouping: true,
- projectId: project.id,
- };
- it('renders', function () {
- const {container} = render(<ThreadsV2 {...props} />, {
- organization: org,
- });
- // Title
- expect(screen.getByRole('heading', {name: 'Stack Trace'})).toBeInTheDocument();
- // Actions
- expect(screen.getByRole('checkbox', {name: 'Raw'})).toBeInTheDocument();
- expect(screen.getByRole('checkbox', {name: 'Raw'})).not.toBeChecked();
- expect(
- screen.getByRole('button', {name: 'Options 0 Active'})
- ).toBeInTheDocument();
- expect(
- screen.getByRole('button', {name: 'Sort By Recent first'})
- ).toBeInTheDocument();
- // Stack Trace
- expect(
- screen.getByRole('heading', {name: 'ZeroDivisionError'})
- ).toBeInTheDocument();
- expect(screen.getByText('divided by 0')).toBeInTheDocument();
- expect(screen.getByTestId('stack-trace-content-v2')).toBeInTheDocument();
- expect(screen.queryAllByTestId('stack-trace-frame')).toHaveLength(3);
- expect(container).toSnapshot();
- });
- it('toggle raw button', function () {
- render(<ThreadsV2 {...props} />, {organization: org});
- expect(screen.getByRole('checkbox', {name: 'Raw'})).not.toBeChecked();
- userEvent.click(screen.getByRole('checkbox', {name: 'Raw'}));
- expect(screen.getByRole('checkbox', {name: 'Raw'})).toBeChecked();
- // Actions must not be rendered
- expect(
- screen.queryByRole('button', {name: 'Options 1 Active'})
- ).not.toBeInTheDocument();
- expect(
- screen.queryByRole('button', {name: 'Sort By Recent first'})
- ).not.toBeInTheDocument();
- // Raw content is displayed
- expect(screen.queryByRole('list', {name: 'Stack trace'})).not.toBeInTheDocument();
- expect(screen.getByTestId('raw-stack-trace')).toBeInTheDocument();
- });
- it('toggle sort by', function () {
- render(<ThreadsV2 {...props} />, {organization: org});
- expect(
- within(screen.getAllByTestId('stack-trace-frame')[0]).getByText(
- 'sentry/controllers/welcome_controller.rb'
- )
- ).toBeInTheDocument();
- userEvent.click(screen.getByRole('button', {name: 'Sort By Recent first'}));
- expect(screen.queryAllByLabelText('Sort option')).toHaveLength(2);
- expect(screen.queryAllByLabelText('Sort option')[0]).toHaveTextContent(
- 'Recent first'
- );
- expect(screen.queryAllByLabelText('Sort option')[1]).toHaveTextContent(
- 'Recent last'
- );
- userEvent.click(screen.getByText('Recent last'));
- expect(
- screen.getByRole('button', {name: 'Sort By Recent last'})
- ).toBeInTheDocument();
- expect(
- within(screen.getAllByTestId('stack-trace-frame')[0]).getByText(
- 'puma (3.12.6) lib/puma/server.rb'
- )
- ).toBeInTheDocument();
- userEvent.click(screen.getByRole('button', {name: 'Sort By Recent last'}));
- userEvent.click(screen.getByText('Recent first'));
- expect(
- screen.getByRole('button', {name: 'Sort By Recent first'})
- ).toBeInTheDocument();
- });
- it('check options', async function () {
- render(<ThreadsV2 {...props} />, {organization: org});
- expect(
- screen.getByRole('button', {name: 'Options 0 Active'})
- ).toBeInTheDocument();
- userEvent.click(screen.getByRole('button', {name: 'Options 0 Active'}));
- expect(screen.queryAllByLabelText('Display option')).toHaveLength(2);
- const displayOption0 = screen.queryAllByLabelText('Display option')[0];
- expect(displayOption0).toHaveTextContent('Minified');
- expect(within(displayOption0).getByRole('checkbox')).not.toBeChecked();
- expect(within(displayOption0).getByRole('checkbox')).toHaveAttribute(
- 'aria-disabled',
- 'true'
- );
- // hover over the Minified option
- userEvent.hover(within(displayOption0).getByText('Minified'));
- expect(
- await screen.findByText('Minified version not available')
- ).toBeInTheDocument();
- const displayOption1 = screen.queryAllByLabelText('Display option')[1];
- expect(displayOption1).toHaveTextContent('Full Stack Trace');
- expect(within(displayOption1).getByRole('checkbox')).not.toBeChecked();
- expect(within(displayOption1).getByRole('checkbox')).toHaveAttribute(
- 'aria-disabled',
- 'false'
- );
- expect(screen.getByTestId('stack-trace-content-v2')).toBeInTheDocument();
- expect(screen.queryAllByTestId('stack-trace-frame')).toHaveLength(3);
- // Check Full Stack Trace
- userEvent.click(screen.queryAllByLabelText('Display option')[1]);
- expect(
- within(screen.queryAllByLabelText('Display option')[1]).getByRole('checkbox')
- ).toBeChecked();
- // Display more frames
- expect(screen.queryAllByTestId('stack-trace-frame')).toHaveLength(4);
- });
- });
- });
- describe('native platform', function () {
- describe('cocoa', function () {
- const event: Event = {
- id: 'bfe4379d82934b2b91d70b1167bcae8d',
- groupID: '24',
- eventID: 'bfe4379d82934b2b91d70b1167bcae8d',
- projectID: '2',
- size: 89101,
- entries: [
- {
- data: {
- values: [
- {
- stacktrace: {
- frames: [
- {
- filename: null,
- absPath: null,
- module: null,
- package:
- '/private/var/containers/Bundle/Application/575F9D39-D486-4728-B035-84923A0BE206/sentry-ios-cocoapods.app/Frameworks/Sentry.framework/Sentry',
- platform: null,
- instructionAddr: '0x1000adb08',
- symbolAddr: '0x1000ad5c4',
- function:
- '__44-[SentryBreadcrumbTracker swizzleSendAction]_block_invoke_2',
- rawFunction: null,
- symbol: null,
- context: [],
- lineNo: null,
- colNo: null,
- inApp: false,
- trust: null,
- errors: null,
- vars: null,
- },
- {
- filename: null,
- absPath: null,
- module: null,
- package: '/System/Library/Frameworks/UIKit.framework/UIKit',
- platform: null,
- instructionAddr: '0x197885c54',
- symbolAddr: '0x197885bf4',
- function: '<redacted>',
- rawFunction: null,
- symbol: null,
- context: [],
- lineNo: null,
- colNo: null,
- inApp: false,
- trust: null,
- errors: null,
- vars: null,
- },
- {
- filename: null,
- absPath: null,
- module: null,
- package: '/System/Library/Frameworks/UIKit.framework/UIKit',
- platform: null,
- instructionAddr: '0x197885c54',
- symbolAddr: '0x197885bf4',
- function: '<redacted>',
- rawFunction: null,
- symbol: null,
- context: [],
- lineNo: null,
- colNo: null,
- inApp: false,
- trust: null,
- errors: null,
- vars: null,
- },
- {
- filename: null,
- absPath: null,
- module: null,
- package:
- '/var/containers/Bundle/Application/575F9D39-D486-4728-B035-84923A0BE206/sentry-ios-cocoapods.app/sentry-ios-cocoapods',
- platform: null,
- instructionAddr: '0x10008c5ac',
- symbolAddr: '0x10008c500',
- function: 'ViewController.causeCrash',
- rawFunction: 'ViewController.causeCrash(Any) -> ()',
- symbol: null,
- context: [],
- lineNo: null,
- colNo: null,
- inApp: true,
- trust: null,
- errors: null,
- vars: null,
- },
- {
- filename: null,
- absPath: null,
- module: null,
- package:
- '/private/var/containers/Bundle/Application/575F9D39-D486-4728-B035-84923A0BE206/sentry-ios-cocoapods.app/Frameworks/Sentry.framework/Sentry',
- platform: null,
- instructionAddr: '0x1000b0bfc',
- symbolAddr: '0x1000b0be4',
- function: '-[SentryClient crash]',
- rawFunction: null,
- symbol: null,
- context: [],
- lineNo: null,
- colNo: null,
- inApp: false,
- trust: null,
- errors: null,
- vars: null,
- },
- ],
- framesOmitted: null,
- hasSystemFrames: true,
- registers: {
- cpsr: '0x60000000',
- fp: '0x16fd79870',
- lr: '0x10008c5ac',
- pc: '0x1000b0bfc',
- sp: '0x16fd79810',
- x0: '0x1700eee80',
- x1: '0x10008e49c',
- x10: '0x1b7886ff0',
- x11: '0x59160100591680',
- x12: '0x0',
- x13: '0x591600',
- x14: '0x591700',
- x15: '0x5916c0',
- x16: '0x591601',
- x17: '0x1000b0be4',
- x18: '0x0',
- x19: '0x1740eb200',
- x2: '0x0',
- x20: '0x10fd08db0',
- x21: '0x10008e4de',
- x22: '0x10fe0a470',
- x23: '0x10fe0a470',
- x24: '0x174008ba0',
- x25: '0x0',
- x26: '0x19838eb61',
- x27: '0x1',
- x28: '0x170046c60',
- x29: '0x16fd79870',
- x3: '0x1740eb200',
- x4: '0x1740eb200',
- x5: '0x1740eb200',
- x6: '0x0',
- x7: '0x2',
- x8: '0x0',
- x9: '0x1b7886fec',
- },
- },
- threadId: 0,
- module: null,
- mechanism: null,
- rawStacktrace: null,
- value:
- 'Attempted to dereference null pointer.\nOriginated at or in a subcall of ViewController.causeCrash(Any) -> ()',
- type: 'EXC_BAD_ACCESS',
- },
- ],
- hasSystemFrames: true,
- excOmitted: null,
- },
- type: EntryType.EXCEPTION,
- },
- {
- data: {
- values: [
- {
- id: 0,
- current: false,
- crashed: true,
- name: null,
- stacktrace: {
- frames: [
- {
- filename: null,
- absPath: null,
- module: null,
- package: '/System/Library/Frameworks/UIKit.framework/UIKit',
- platform: null,
- instructionAddr: '0x197885c54',
- symbolAddr: '0x197885bf4',
- function: '<redacted>',
- rawFunction: null,
- symbol: null,
- context: [],
- lineNo: null,
- colNo: null,
- inApp: false,
- trust: null,
- errors: null,
- vars: null,
- },
- {
- filename: null,
- absPath: null,
- module: null,
- package: '/System/Library/Frameworks/UIKit.framework/UIKit',
- platform: null,
- instructionAddr: '0x197885c54',
- symbolAddr: '0x197885bf4',
- function: '<redacted>',
- rawFunction: null,
- symbol: null,
- context: [],
- lineNo: null,
- colNo: null,
- inApp: false,
- trust: null,
- errors: null,
- vars: null,
- },
- {
- filename: null,
- absPath: null,
- module: null,
- package:
- '/var/containers/Bundle/Application/575F9D39-D486-4728-B035-84923A0BE206/sentry-ios-cocoapods.app/sentry-ios-cocoapods',
- platform: null,
- instructionAddr: '0x10008c630',
- symbolAddr: '0x10008c5e8',
- function: 'ViewController.causeCrash',
- rawFunction: '@objc ViewController.causeCrash(Any) -> ()',
- symbol: null,
- context: [],
- lineNo: null,
- colNo: null,
- inApp: true,
- trust: null,
- errors: null,
- vars: null,
- },
- {
- filename: null,
- absPath: null,
- module: null,
- package:
- '/var/containers/Bundle/Application/575F9D39-D486-4728-B035-84923A0BE206/sentry-ios-cocoapods.app/sentry-ios-cocoapods',
- platform: null,
- instructionAddr: '0x10008c5ac',
- symbolAddr: '0x10008c500',
- function: 'ViewController.causeCrash',
- rawFunction: 'ViewController.causeCrash(Any) -> ()',
- symbol: null,
- context: [],
- lineNo: null,
- colNo: null,
- inApp: true,
- trust: null,
- errors: null,
- vars: null,
- },
- {
- filename: null,
- absPath: null,
- module: null,
- package:
- '/private/var/containers/Bundle/Application/575F9D39-D486-4728-B035-84923A0BE206/sentry-ios-cocoapods.app/Frameworks/Sentry.framework/Sentry',
- platform: null,
- instructionAddr: '0x1000b0bfc',
- symbolAddr: '0x1000b0be4',
- function: '-[SentryClient crash]',
- rawFunction: null,
- symbol: null,
- context: [],
- lineNo: null,
- colNo: null,
- inApp: false,
- trust: null,
- errors: null,
- vars: null,
- },
- ],
- framesOmitted: null,
- registers: {
- cpsr: '0x60000000',
- fp: '0x16fd79870',
- lr: '0x10008c5ac',
- pc: '0x1000b0bfc',
- sp: '0x16fd79810',
- x0: '0x1700eee80',
- x1: '0x10008e49c',
- x10: '0x1b7886ff0',
- x11: '0x59160100591680',
- x12: '0x0',
- x13: '0x591600',
- x14: '0x591700',
- x15: '0x5916c0',
- x16: '0x591601',
- x17: '0x1000b0be4',
- x18: '0x0',
- x19: '0x1740eb200',
- x2: '0x0',
- x20: '0x10fd08db0',
- x21: '0x10008e4de',
- x22: '0x10fe0a470',
- x23: '0x10fe0a470',
- x24: '0x174008ba0',
- x25: '0x0',
- x26: '0x19838eb61',
- x27: '0x1',
- x28: '0x170046c60',
- x29: '0x16fd79870',
- x3: '0x1740eb200',
- x4: '0x1740eb200',
- x5: '0x1740eb200',
- x6: '0x0',
- x7: '0x2',
- x8: '0x0',
- x9: '0x1b7886fec',
- },
- hasSystemFrames: true,
- },
- rawStacktrace: null,
- },
- {
- id: 1,
- current: false,
- crashed: false,
- name: null,
- stacktrace: {
- frames: [
- {
- filename: null,
- absPath: null,
- module: null,
- package: '/usr/lib/system/libsystem_pthread.dylib',
- platform: null,
- instructionAddr: '0x1907df1a4',
- symbolAddr: '0x1907decb8',
- function: '_pthread_wqthread',
- rawFunction: null,
- symbol: null,
- context: [],
- lineNo: null,
- colNo: null,
- inApp: false,
- trust: null,
- errors: null,
- vars: null,
- },
- {
- filename: null,
- absPath: null,
- module: null,
- package: '/usr/lib/system/libsystem_kernel.dylib',
- platform: null,
- instructionAddr: '0x190719a88',
- symbolAddr: '0x190719a80',
- function: '__workq_kernreturn',
- rawFunction: null,
- symbol: null,
- context: [],
- lineNo: null,
- colNo: null,
- inApp: false,
- trust: null,
- errors: null,
- vars: null,
- },
- ],
- framesOmitted: null,
- registers: {
- cpsr: '0x0',
- fp: '0x16dfcaf70',
- lr: '0x1907df1a4',
- pc: '0x190719a88',
- sp: '0x16dfcaef0',
- x0: '0x4',
- x1: '0x0',
- x10: '0x1',
- x11: '0x0',
- x12: '0x30000400000d03',
- x13: '0x0',
- x14: '0x1740e9edc',
- x15: '0xfffffff100000000',
- x16: '0x170',
- x17: '0x191619c10',
- x18: '0x0',
- x19: '0x16dfcb000',
- x2: '0x0',
- x20: '0x19',
- x21: '0x270019',
- x22: '0x0',
- x23: '0xd03',
- x24: '0x1b788d000',
- x25: '0x1b788d000',
- x26: '0x0',
- x27: '0x80000000',
- x28: '0x800010ff',
- x29: '0x16dfcaf70',
- x3: '0x0',
- x4: '0x80010ff',
- x5: '0x0',
- x6: '0x0',
- x7: '0x0',
- x8: '0x2',
- x9: '0x17409b4ec',
- },
- hasSystemFrames: false,
- },
- rawStacktrace: null,
- },
- ],
- },
- type: EntryType.THREADS,
- },
- {
- data: {
- images: [
- {
- code_file:
- '/var/containers/Bundle/Application/575F9D39-D486-4728-B035-84923A0BE206/sentry-ios-cocoapods.app/sentry-ios-cocoapods',
- debug_id: '6b77ffb6-5aba-3b5f-9171-434f9660f738',
- image_addr: '0x100084000',
- image_size: 49152,
- image_vmaddr: '0x100000000',
- type: 'macho',
- },
- {
- code_file: '/System/Library/Frameworks/UIKit.framework/UIKit',
- debug_id: '314063bd-f85f-321d-88d6-e24a0de464a2',
- image_addr: '0x197841000',
- image_size: 14315520,
- image_vmaddr: '0x187769000',
- type: 'macho',
- },
- {
- code_file:
- '/private/var/containers/Bundle/Application/575F9D39-D486-4728-B035-84923A0BE206/sentry-ios-cocoapods.app/Frameworks/Sentry.framework/Sentry',
- debug_id: '141a9203-b953-3cd6-b9fd-7ba60191a36d',
- image_addr: '0x1000a4000',
- image_size: 163840,
- image_vmaddr: '0x0',
- type: 'macho',
- },
- {
- code_file:
- '/private/var/containers/Bundle/Application/575F9D39-D486-4728-B035-84923A0BE206/sentry-ios-cocoapods.app/Frameworks/Sentry.framework/Sentry',
- debug_id: '141a9203-b953-3cd6-b9fd-7ba60191a36d',
- image_addr: '0x1000a4000',
- image_size: 163840,
- image_vmaddr: '0x0',
- type: 'macho',
- },
- ],
- },
- type: EntryType.DEBUGMETA,
- },
- ],
- dist: '1',
- message: '',
- title: 'ViewController.causeCrash | main',
- location: null,
- user: {
- id: '1234',
- email: 'hello@sentry.io',
- username: null,
- ip_address: '172.18.0.1',
- name: null,
- data: null,
- },
- type: EventOrGroupType.ERROR,
- metadata: {
- display_title_with_tree_label: true,
- finest_tree_label: [
- {
- function: 'ViewController.causeCrash',
- },
- {
- function: 'main',
- },
- ],
- function: 'ViewController.causeCrash',
- value:
- 'Attempted to dereference null pointer.\nOriginated at or in a subcall of ViewController.causeCrash(Any) -> ()',
- },
- platform: 'cocoa',
- dateReceived: '2021-11-02T07:33:38.831104Z',
- errors: [
- {
- type: 'invalid_data',
- message: 'Discarded invalid value',
- data: {
- name: 'threads.values.9.stacktrace.frames',
- reason: 'expected a non-empty value',
- },
- },
- ],
- crashFile: null,
- culprit: '',
- dateCreated: '2021-11-02T07:33:38.831104Z',
- fingerprints: ['852f6cf1ed76d284b95e7d62275088ca'],
- groupingConfig: {
- enhancements: 'eJybzDRxY25-UmZOqpWRgZGhroGJroHRBABbUQb_',
- id: 'mobile:2021-02-12',
- },
- tags: [],
- contexts: {},
- userReport: null,
- sdkUpdates: [],
- nextEventID: null,
- previousEventID: null,
- };
- const props: React.ComponentProps<typeof ThreadsV2> = {
- type: EntryType.THREADS,
- data: event.entries[1].data as React.ComponentProps<typeof ThreadsV2>['data'],
- event,
- groupingCurrentLevel: 0,
- hasHierarchicalGrouping: true,
- projectId: project.id,
- };
- it('renders', function () {
- const {container} = render(<ThreadsV2 {...props} />, {organization: org});
- // Title
- expect(screen.getByTestId('thread-selector')).toBeInTheDocument();
- // Actions
- expect(screen.getByRole('checkbox', {name: 'Raw'})).toBeInTheDocument();
- expect(screen.getByRole('checkbox', {name: 'Raw'})).not.toBeChecked();
- expect(
- screen.getByRole('button', {name: 'Options 0 Active'})
- ).toBeInTheDocument();
- expect(
- screen.getByRole('button', {name: 'Sort By Recent first'})
- ).toBeInTheDocument();
- // Stack Trace
- expect(screen.getByRole('heading', {name: 'EXC_BAD_ACCESS'})).toBeInTheDocument();
- expect(
- screen.getByText(
- 'Attempted to dereference null pointer. Originated at or in a subcall of ViewController.causeCrash(Any) -> ()'
- )
- ).toBeInTheDocument();
- expect(screen.getByTestId('stack-trace')).toBeInTheDocument();
- expect(screen.queryAllByTestId('stack-trace-frame')).toHaveLength(3);
- expect(container).toSnapshot();
- });
- it('toggle raw button', function () {
- render(<ThreadsV2 {...props} />, {organization: org});
- expect(screen.getByRole('checkbox', {name: 'Raw'})).not.toBeChecked();
- userEvent.click(screen.getByRole('checkbox', {name: 'Raw'}));
- expect(screen.getByRole('checkbox', {name: 'Raw'})).toBeChecked();
- // Actions must not be rendered
- expect(
- screen.queryByRole('button', {name: 'Options 1 Active'})
- ).not.toBeInTheDocument();
- expect(
- screen.queryByRole('button', {name: 'Sort By Recent first'})
- ).not.toBeInTheDocument();
- // Raw content is displayed
- expect(screen.queryByTestId('stack-trace')).not.toBeInTheDocument();
- expect(screen.getByTestId('raw-stack-trace')).toBeInTheDocument();
- });
- it('toggle sort by', function () {
- render(<ThreadsV2 {...props} />, {organization: org});
- expect(
- within(screen.getAllByTestId('stack-trace-frame')[0]).getByText(
- '-[SentryClient crash]'
- )
- ).toBeInTheDocument();
- userEvent.click(screen.getByRole('button', {name: 'Sort By Recent first'}));
- expect(screen.queryAllByLabelText('Sort option')).toHaveLength(2);
- expect(screen.queryAllByLabelText('Sort option')[0]).toHaveTextContent(
- 'Recent first'
- );
- expect(screen.queryAllByLabelText('Sort option')[1]).toHaveTextContent(
- 'Recent last'
- );
- userEvent.click(screen.getByText('Recent last'));
- expect(
- screen.getByRole('button', {name: 'Sort By Recent last'})
- ).toBeInTheDocument();
- expect(
- within(screen.getAllByTestId('stack-trace-frame')[0]).getByText('UIKit')
- ).toBeInTheDocument();
- userEvent.click(screen.getByRole('button', {name: 'Sort By Recent last'}));
- userEvent.click(screen.getByText('Recent first'));
- expect(
- screen.getByRole('button', {name: 'Sort By Recent first'})
- ).toBeInTheDocument();
- });
- it('check options', function () {
- render(<ThreadsV2 {...props} />, {organization: org});
- expect(
- screen.getByRole('button', {name: 'Options 0 Active'})
- ).toBeInTheDocument();
- userEvent.click(screen.getByRole('button', {name: 'Options 0 Active'}));
- expect(screen.queryAllByLabelText('Display option')).toHaveLength(5);
- const displayOption0 = screen.queryAllByLabelText('Display option')[0];
- expect(displayOption0).toHaveTextContent('Unsymbolicated');
- expect(within(displayOption0).getByRole('checkbox')).not.toBeChecked();
- expect(within(displayOption0).getByRole('checkbox')).toHaveAttribute(
- 'aria-disabled',
- 'true'
- );
- const displayOption1 = screen.queryAllByLabelText('Display option')[1];
- expect(displayOption1).toHaveTextContent('Absolute Addresses');
- expect(within(displayOption1).getByRole('checkbox')).not.toBeChecked();
- expect(within(displayOption1).getByRole('checkbox')).toHaveAttribute(
- 'aria-disabled',
- 'false'
- );
- const displayOption2 = screen.queryAllByLabelText('Display option')[2];
- expect(displayOption2).toHaveTextContent('Absolute File Paths');
- expect(within(displayOption2).getByRole('checkbox')).not.toBeChecked();
- expect(within(displayOption2).getByRole('checkbox')).toHaveAttribute(
- 'aria-disabled',
- 'true'
- );
- const displayOption3 = screen.queryAllByLabelText('Display option')[3];
- expect(displayOption3).toHaveTextContent('Verbose Function Names');
- expect(within(displayOption3).getByRole('checkbox')).not.toBeChecked();
- expect(within(displayOption3).getByRole('checkbox')).toHaveAttribute(
- 'aria-disabled',
- 'false'
- );
- const displayOption4 = screen.queryAllByLabelText('Display option')[4];
- expect(displayOption4).toHaveTextContent('Full Stack Trace');
- expect(within(displayOption4).getByRole('checkbox')).not.toBeChecked();
- expect(within(displayOption4).getByRole('checkbox')).toHaveAttribute(
- 'aria-disabled',
- 'false'
- );
- expect(screen.getByTestId('stack-trace')).toBeInTheDocument();
- expect(screen.queryAllByTestId('stack-trace-frame')).toHaveLength(3);
- // Check Verbose Function Names
- expect(
- within(screen.getAllByTestId('stack-trace-frame')[1]).getByText(
- 'ViewController.causeCrash'
- )
- ).toBeInTheDocument();
- userEvent.click(screen.queryAllByLabelText('Display option')[3]);
- expect(within(displayOption3).getByRole('checkbox')).toBeChecked();
- expect(
- within(screen.getAllByTestId('stack-trace-frame')[1]).getByText(
- 'ViewController.causeCrash(Any) -> ()'
- )
- ).toBeInTheDocument();
- // Check Absolute Path Names
- expect(
- within(screen.getAllByTestId('stack-trace-frame')[1]).getByText('+0x085ac')
- ).toBeInTheDocument();
- userEvent.click(screen.queryAllByLabelText('Display option')[1]);
- expect(
- within(screen.queryAllByLabelText('Display option')[1]).getByRole('checkbox')
- ).toBeChecked();
- expect(
- within(screen.getAllByTestId('stack-trace-frame')[1]).getByText('0x10008c5ac')
- ).toBeInTheDocument();
- // Check Full Stack Trace
- userEvent.click(screen.queryAllByLabelText('Display option')[4]);
- expect(
- within(screen.queryAllByLabelText('Display option')[4]).getByRole('checkbox')
- ).toBeChecked();
- // Display more frames
- expect(screen.queryAllByTestId('stack-trace-frame')).toHaveLength(4);
- });
- });
- });
- });
|