1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- import {displayReprocessEventAction} from 'sentry/utils/displayReprocessEventAction';
- describe('DisplayReprocessEventAction', function () {
- const orgFeatures = ['reprocessing-v2'];
- it('returns false in case of no reprocessing-v2 feature', function () {
- const event = TestStubs.EventStacktraceMessage();
- expect(displayReprocessEventAction([], event)).toBe(false);
- });
- it('returns false in case of no event', function () {
- expect(displayReprocessEventAction(orgFeatures)).toBe(false);
- });
- it('returns false if no exception entry is found', function () {
- const event = TestStubs.EventStacktraceMessage();
- expect(displayReprocessEventAction(orgFeatures, event)).toBe(false);
- });
- it('returns false if the event is not a mini-dump event or an Apple crash report event or a Native event', function () {
- const event = TestStubs.EventStacktraceException();
- expect(displayReprocessEventAction(orgFeatures, event)).toBe(false);
- });
- describe('returns true', function () {
- describe('native event', function () {
- describe('event with defined platform', function () {
- it('native', function () {
- const event = TestStubs.EventStacktraceException({
- platform: 'native',
- });
- expect(displayReprocessEventAction(orgFeatures, event)).toBe(true);
- });
- it('cocoa', function () {
- const event = TestStubs.EventStacktraceException({
- platform: 'cocoa',
- });
- expect(displayReprocessEventAction(orgFeatures, event)).toBe(true);
- });
- });
- describe('event with undefined platform, but stack trace has platform', function () {
- it('native', function () {
- const event = TestStubs.EventStacktraceException({
- platform: undefined,
- });
- event.entries[0].data.values[0].stacktrace.frames[0].platform = 'native';
- expect(displayReprocessEventAction(orgFeatures, event)).toBe(true);
- });
- it('cocoa', function () {
- const event = TestStubs.EventStacktraceException({
- platform: undefined,
- });
- event.entries[0].data.values[0].stacktrace.frames[0].platform = 'cocoa';
- expect(displayReprocessEventAction(orgFeatures, event)).toBe(true);
- });
- });
- });
- it('mini-dump event', function () {
- const event = TestStubs.EventStacktraceException({
- platform: undefined,
- });
- event.entries[0].data.values[0] = {
- ...event.entries[0].data.values[0],
- mechanism: {
- type: 'minidump',
- },
- };
- expect(displayReprocessEventAction(orgFeatures, event)).toBe(true);
- });
- it('apple crash report event', function () {
- const event = TestStubs.EventStacktraceException({
- platform: undefined,
- });
- event.entries[0].data.values[0] = {
- ...event.entries[0].data.values[0],
- mechanism: {
- type: 'applecrashreport',
- },
- };
- expect(displayReprocessEventAction(orgFeatures, event)).toBe(true);
- });
- });
- });
|