import {render, screen, userEvent, within} from 'sentry-test/reactTestingLibrary';
import {GroupEventCarousel} from 'sentry/views/issueDetails/groupEventCarousel';
describe('GroupEventCarousel', () => {
const testEvent = TestStubs.Event({
id: 'event-id',
size: 7,
dateCreated: '2019-03-20T00:00:00.000Z',
errors: [],
entries: [],
tags: [{key: 'environment', value: 'dev'}],
previousEventID: 'prev-event-id',
nextEventID: 'next-event-id',
});
const defaultProps = {
event: testEvent,
group: TestStubs.Group({id: 'group-id'}),
projectSlug: 'project-slug',
};
beforeEach(() => {
jest.clearAllMocks();
Object.assign(navigator, {
clipboard: {
writeText: jest.fn().mockResolvedValue(''),
},
});
window.open = jest.fn();
});
it('can navigate next/previous events', () => {
render();
expect(screen.getByLabelText(/First Event/)).toHaveAttribute(
'href',
`/organizations/org-slug/issues/group-id/events/oldest/?referrer=oldest-event`
);
expect(screen.getByLabelText(/Previous Event/)).toHaveAttribute(
'href',
`/organizations/org-slug/issues/group-id/events/prev-event-id/?referrer=previous-event`
);
expect(screen.getByLabelText(/Next Event/)).toHaveAttribute(
'href',
`/organizations/org-slug/issues/group-id/events/next-event-id/?referrer=next-event`
);
expect(screen.getByLabelText(/Latest Event/)).toHaveAttribute(
'href',
`/organizations/org-slug/issues/group-id/events/latest/?referrer=latest-event`
);
});
it('can copy event ID', async () => {
render();
await userEvent.click(screen.getByText(testEvent.id));
expect(navigator.clipboard.writeText).toHaveBeenCalledWith(testEvent.id);
});
it('can copy event link', async () => {
render();
await userEvent.click(screen.getByRole('button', {name: /event actions/i}));
await userEvent.click(screen.getByRole('menuitemradio', {name: /copy event link/i}));
expect(navigator.clipboard.writeText).toHaveBeenCalledWith(
`http://localhost/organizations/org-slug/issues/group-id/events/event-id/`
);
});
it('links to full event details when org has discover', async () => {
render(, {
organization: TestStubs.Organization({features: ['discover-basic']}),
});
await userEvent.click(screen.getByRole('button', {name: /event actions/i}));
expect(
within(screen.getByRole('menuitemradio', {name: /full event details/i})).getByRole(
'link'
)
).toHaveAttribute('href', `/organizations/org-slug/discover/project-slug:event-id/`);
});
it('can open event JSON', async () => {
render();
await userEvent.click(screen.getByRole('button', {name: /event actions/i}));
await userEvent.click(screen.getByRole('menuitemradio', {name: 'JSON (7 B)'}));
expect(window.open).toHaveBeenCalledWith(
`/api/0/projects/org-slug/project-slug/events/event-id/json/`
);
});
});