import {mountWithTheme} from 'sentry-test/enzyme';
import Threads from 'sentry/components/events/interfaces/threads';
import {OrganizationContext} from 'sentry/views/organizationContext';
describe('Threads', () => {
const entries = TestStubs.Entries()[0];
const event = TestStubs.Event({entries});
const organization = TestStubs.Organization();
const exceptionEntry = entries[0];
const data = exceptionEntry.data;
const type = exceptionEntry.type;
it('Display multiple frames', () => {
const newEvent = {
...event,
entries: [
{
...event.entries[0],
data: {
...event.entries[0].data,
values: [
event.entries[0].data.values[0],
{
module: 'example.application',
type: 'Error',
value: 'an error occurred',
stacktrace: {
frames: [
{
function: 'main',
module: 'example.application',
lineNo: 1,
filename: 'application',
},
{
function: 'doThing',
module: 'example.application',
lineNo: 2,
filename: 'application',
},
],
},
},
],
},
},
event.entries[1],
event.entries[2],
],
};
const wrapper = mountWithTheme(
);
// Total frames passed
const totalFramesPasses =
newEvent.entries[0].data.values[0].stacktrace.frames.length +
newEvent.entries[0].data.values[1].stacktrace.frames.length;
expect(wrapper.find('Line').length).toBe(totalFramesPasses);
});
it('Display no frame', () => {
const wrapper = mountWithTheme(
);
// no exceptions or stacktraces have been found
expect(wrapper.find('Line').length).toBe(0);
});
describe('Displays the stack trace of an exception if all threadIds of exceptionEntry.data.values do not match the threadId of the active thread and if the active thread has crashed equals true', () => {
const threadsEntry = entries[1];
it('Displays the exception stacktrace', () => {
const wrapper = mountWithTheme(
);
// envent.entries[0].data.values[0].stacktrace is defined
expect(wrapper.find('Line').length).toBe(1);
});
it('Displays the the active thread stacktrace', () => {
const wrapper = mountWithTheme(
);
// the 'threads' entry has a stack trace with 23 frames, but as one of them is duplicated, we only display 22
expect(wrapper.find('Line').length).toBe(22);
});
});
});