123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333 |
- import {EventFixture} from 'sentry-fixture/event';
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {ProjectFixture} from 'sentry-fixture/project';
- import {render, screen, userEvent, waitFor} from 'sentry-test/reactTestingLibrary';
- import ProjectsStore from 'sentry/stores/projectsStore';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import useRouteAnalyticsParams from 'sentry/utils/routeAnalytics/useRouteAnalyticsParams';
- import {TraceTimeline} from './traceTimeline/traceTimeline';
- import type {TraceEventResponse} from './traceTimeline/useTraceTimelineEvents';
- import {TraceTimeLineOrRelatedIssue} from './traceTimelineOrRelatedIssue';
- jest.mock('sentry/utils/routeAnalytics/useRouteAnalyticsParams');
- jest.mock('sentry/utils/analytics');
- describe('TraceTimeline & TraceRelated Issue', () => {
- // Paid plans have global-views enabled
- // Include project: -1 in all matchQuery calls to ensure we are looking at all projects
- const organization = OrganizationFixture({
- features: ['global-views'],
- });
- const firstEventTimestamp = '2024-01-24T09:09:01+00:00';
- // This creates the ApiException event
- const event = EventFixture({
- // This is used to determine the presence of seconds
- dateCreated: firstEventTimestamp,
- contexts: {
- trace: {
- // This is used to determine if we should attempt
- // to render the trace timeline
- trace_id: '123',
- },
- },
- });
- const project = ProjectFixture();
- const emptyBody: TraceEventResponse = {data: [], meta: {fields: {}, units: {}}};
- const issuePlatformBody: TraceEventResponse = {
- data: [
- {
- // In issuePlatform, the message contains the title and the transaction
- message: '/api/slow/ Slow DB Query SELECT "sentry_monitorcheckin"."monitor_id"',
- timestamp: '2024-01-24T09:09:03+00:00',
- 'issue.id': 1000,
- project: project.slug,
- 'project.name': project.name,
- title: 'Slow DB Query',
- id: 'abc',
- transaction: '/api/slow/',
- },
- ],
- meta: {fields: {}, units: {}},
- };
- const mainError = {
- message: 'This is the message for the issue',
- timestamp: firstEventTimestamp,
- 'issue.id': event['issue.id'],
- project: project.slug,
- 'project.name': project.name,
- title: event.title,
- id: event.id,
- transaction: 'important.task',
- 'event.type': event.type,
- 'stack.function': ['important.task', 'task.run'],
- };
- const secondError = {
- message: 'Message of the second issue',
- timestamp: '2024-01-24T09:09:04+00:00',
- 'issue.id': 9999,
- project: project.slug,
- 'project.name': project.name,
- title: 'someTitle',
- id: '12345',
- transaction: 'foo',
- 'event.type': event.type,
- };
- const discoverBody: TraceEventResponse = {
- data: [mainError],
- meta: {fields: {}, units: {}},
- };
- const twoIssuesBody: TraceEventResponse = {
- data: [mainError, secondError],
- meta: {fields: {}, units: {}},
- };
- beforeEach(() => {
- ProjectsStore.loadInitialData([project]);
- jest.clearAllMocks();
- });
- it('renders items and highlights the current event', async () => {
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- body: issuePlatformBody,
- match: [MockApiClient.matchQuery({dataset: 'issuePlatform', project: -1})],
- });
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- body: twoIssuesBody,
- match: [MockApiClient.matchQuery({dataset: 'discover', project: -1})],
- });
- render(<TraceTimeLineOrRelatedIssue event={event} />, {organization});
- expect(await screen.findByLabelText('Current Event')).toBeInTheDocument();
- await userEvent.hover(screen.getByTestId('trace-timeline-tooltip-1'));
- expect(await screen.findByText('You are here')).toBeInTheDocument();
- expect(useRouteAnalyticsParams).toHaveBeenCalledWith({
- trace_timeline_status: 'shown',
- });
- });
- it('displays nothing if the only event is the current event', async () => {
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- body: emptyBody,
- match: [MockApiClient.matchQuery({dataset: 'issuePlatform', project: -1})],
- });
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- body: discoverBody,
- match: [MockApiClient.matchQuery({dataset: 'discover', project: -1})],
- });
- const {container} = render(<TraceTimeline event={event} />, {organization});
- await waitFor(() =>
- expect(useRouteAnalyticsParams).toHaveBeenCalledWith({
- trace_timeline_status: 'empty',
- })
- );
- expect(container).toBeEmptyDOMElement();
- });
- it('displays nothing if there are no events', async () => {
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- body: emptyBody,
- match: [MockApiClient.matchQuery({dataset: 'issuePlatform', project: -1})],
- });
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- body: emptyBody,
- match: [MockApiClient.matchQuery({dataset: 'discover', project: -1})],
- });
- const {container} = render(<TraceTimeline event={event} />, {organization});
- await waitFor(() =>
- expect(useRouteAnalyticsParams).toHaveBeenCalledWith({
- trace_timeline_status: 'empty',
- })
- );
- expect(container).toBeEmptyDOMElement();
- });
- it('shows seconds for very short timelines', async () => {
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- body: issuePlatformBody,
- match: [MockApiClient.matchQuery({dataset: 'issuePlatform', project: -1})],
- });
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- body: twoIssuesBody,
- match: [MockApiClient.matchQuery({dataset: 'discover', project: -1})],
- });
- render(<TraceTimeLineOrRelatedIssue event={event} />, {organization});
- // Checking for the presence of seconds
- expect(await screen.findAllByText(/\d{1,2}:\d{2}:\d{2} (AM|PM)/)).toHaveLength(5);
- });
- // useTraceTimelineEvents() adds the current event if missing
- it('adds the current event if not in the api response', async () => {
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- body: issuePlatformBody,
- match: [MockApiClient.matchQuery({dataset: 'issuePlatform', project: -1})],
- });
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- body: {
- // The event for the mainError is missing, thus, it will get added
- data: [secondError],
- },
- match: [MockApiClient.matchQuery({dataset: 'discover', project: -1})],
- });
- render(<TraceTimeLineOrRelatedIssue event={event} />, {organization});
- expect(await screen.findByLabelText('Current Event')).toBeInTheDocument();
- });
- it('skips the timeline and shows related issues (2 issues)', async () => {
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- body: issuePlatformBody,
- match: [MockApiClient.matchQuery({dataset: 'issuePlatform', project: -1})],
- });
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- body: discoverBody,
- match: [MockApiClient.matchQuery({dataset: 'discover', project: -1})],
- });
- // Used to determine the project badge
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/projects/`,
- body: [],
- });
- render(<TraceTimeLineOrRelatedIssue event={event} />, {organization});
- // Instead of a timeline, we should see the other related issue
- expect(await screen.findByText('Slow DB Query')).toBeInTheDocument(); // The title
- expect(await screen.findByText('/api/slow/')).toBeInTheDocument(); // The subtitle/transaction
- expect(
- await screen.findByText('One other issue appears in the same trace.')
- ).toBeInTheDocument();
- expect(
- await screen.findByText('SELECT "sentry_monitorcheckin"."monitor_id"') // The message
- ).toBeInTheDocument();
- expect(screen.queryByLabelText('Current Event')).not.toBeInTheDocument();
- // Test analytics
- await userEvent.click(await screen.findByText('Slow DB Query'));
- expect(useRouteAnalyticsParams).toHaveBeenCalledWith({
- has_related_trace_issue: true,
- });
- expect(trackAnalytics).toHaveBeenCalledTimes(1);
- expect(trackAnalytics).toHaveBeenCalledWith(
- 'issue_details.related_trace_issue.trace_issue_clicked',
- {
- group_id: issuePlatformBody.data[0]['issue.id'],
- organization: organization,
- }
- );
- });
- it('skips the timeline and shows NO related issues (only 1 issue)', async () => {
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- body: emptyBody,
- match: [MockApiClient.matchQuery({dataset: 'issuePlatform', project: -1})],
- });
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- // Only 1 issue
- body: discoverBody,
- match: [MockApiClient.matchQuery({dataset: 'discover', project: -1})],
- });
- // Used to determine the project badge
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/projects/`,
- body: [],
- });
- render(<TraceTimeLineOrRelatedIssue event={event} />, {organization});
- // We do not display any related issues because we only have 1 issue
- expect(await screen.queryByText('Slow DB Query')).not.toBeInTheDocument();
- expect(
- await screen.queryByText('AttributeError: Something Failed')
- ).not.toBeInTheDocument();
- // We do not display the timeline because we only have 1 event
- expect(await screen.queryByLabelText('Current Event')).not.toBeInTheDocument();
- expect(useRouteAnalyticsParams).toHaveBeenCalledWith({});
- });
- it('trace timeline works for plans with no global-views feature', async () => {
- // This test will call the endpoint without the global-views feature, thus,
- // we will only look at the current project (project: event.projectID) instead of passing -1
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- body: issuePlatformBody,
- match: [
- MockApiClient.matchQuery({
- dataset: 'issuePlatform',
- project: event.projectID,
- }),
- ],
- });
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- body: twoIssuesBody,
- match: [
- MockApiClient.matchQuery({
- dataset: 'discover',
- project: event.projectID,
- }),
- ],
- });
- render(<TraceTimeLineOrRelatedIssue event={event} />, {
- organization: OrganizationFixture({
- features: [],
- }),
- });
- expect(await screen.findByLabelText('Current Event')).toBeInTheDocument();
- });
- it('trace-related issue works for plans with no global-views feature', async () => {
- // This test will call the endpoint without the global-views feature, thus,
- // we will only look at the current project (project: event.projectID) instead of passing -1
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- body: issuePlatformBody,
- match: [
- MockApiClient.matchQuery({
- dataset: 'issuePlatform',
- project: event.projectID,
- }),
- ],
- });
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- body: discoverBody,
- match: [
- MockApiClient.matchQuery({
- dataset: 'discover',
- project: event.projectID,
- }),
- ],
- });
- // Used to determine the project badge
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/projects/`,
- body: [],
- });
- render(<TraceTimeLineOrRelatedIssue event={event} />, {
- organization: OrganizationFixture({
- features: [],
- }),
- });
- expect(await screen.findByText('Slow DB Query')).toBeInTheDocument();
- });
- });
|