123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- import type {Location} from 'history';
- import {EventFixture} from 'sentry-fixture/event';
- import {GroupFixture} from 'sentry-fixture/group';
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {act, renderHook, waitFor} from 'sentry-test/reactTestingLibrary';
- import type {EventOccurrence} from 'sentry/types';
- import {IssueCategory} from 'sentry/types/group';
- import {useLocation} from 'sentry/utils/useLocation';
- import useReplaysForRegressionIssue from 'sentry/views/issueDetails/groupReplays/useReplaysForRegressionIssue';
- jest.mock('sentry/utils/useLocation');
- describe('useReplaysForRegressionIssue', () => {
- const location: Location = {
- pathname: '',
- search: '',
- query: {},
- hash: '',
- state: undefined,
- action: 'PUSH',
- key: '',
- };
- jest.mocked(useLocation).mockReturnValue(location);
- const organization = OrganizationFixture({
- features: ['session-replay'],
- });
- const mockEvent = {
- ...EventFixture(),
- occurrence: {
- evidenceDisplay: {} as EventOccurrence['evidenceDisplay'],
- detectionTime: 'mock-detection-time',
- eventId: 'eventId',
- fingerprint: ['fingerprint'],
- id: 'id',
- issueTitle: 'Transaction Duration Regression',
- subtitle: 'Increased from 20.64ms to 36.24ms (P95)',
- resourceId: '',
- type: 1017,
- evidenceData: {
- transaction: 'mock-transaction',
- aggregateRange2: 100,
- breakpoint: Date.now() / 1000, // The breakpoint is stored in seconds
- },
- },
- };
- it('should fetch a list of replay ids', async () => {
- const MOCK_GROUP = GroupFixture({issueCategory: IssueCategory.PERFORMANCE});
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/replay-count/`,
- method: 'GET',
- body: {
- ['mock-transaction']: ['replay42', 'replay256'],
- },
- });
- const {result} = renderHook(useReplaysForRegressionIssue, {
- initialProps: {
- group: MOCK_GROUP,
- location,
- organization,
- event: mockEvent,
- },
- });
- expect(result.current).toEqual({
- eventView: null,
- fetchError: undefined,
- pageLinks: null,
- });
- await waitFor(() =>
- expect(result.current).toEqual({
- eventView: expect.objectContaining({
- query: 'id:[replay42,replay256]',
- }),
- fetchError: undefined,
- pageLinks: null,
- })
- );
- });
- it('should return an empty EventView when there are no replay_ids returned from the count endpoint', async () => {
- const MOCK_GROUP = GroupFixture({issueCategory: IssueCategory.PERFORMANCE});
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/replay-count/`,
- method: 'GET',
- body: {},
- });
- const {result} = renderHook(useReplaysForRegressionIssue, {
- initialProps: {
- group: MOCK_GROUP,
- location,
- organization,
- event: mockEvent,
- },
- });
- expect(result.current).toEqual({
- eventView: null,
- fetchError: undefined,
- pageLinks: null,
- });
- await waitFor(() =>
- expect(result.current).toEqual({
- eventView: expect.objectContaining({
- query: 'id:[]',
- }),
- fetchError: undefined,
- pageLinks: null,
- })
- );
- });
- it('queries using start and end date strings if passed in', async () => {
- const MOCK_GROUP = GroupFixture({issueCategory: IssueCategory.PERFORMANCE});
- const replayCountRequest = MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/replay-count/`,
- method: 'GET',
- body: {
- ['mock_transaction']: ['replay42', 'replay256'],
- },
- });
- renderHook(useReplaysForRegressionIssue, {
- initialProps: {
- group: MOCK_GROUP,
- location,
- organization,
- event: mockEvent,
- },
- });
- expect(replayCountRequest).toHaveBeenCalledWith(
- '/organizations/org-slug/replay-count/',
- expect.objectContaining({
- query: expect.objectContaining({
- start: new Date(
- mockEvent.occurrence.evidenceData.breakpoint * 1000
- ).toISOString(),
- end: new Date().toISOString(),
- }),
- })
- );
- await act(tick);
- });
- it('queries the transaction name with event type and duration filters', async () => {
- const MOCK_GROUP = GroupFixture({issueCategory: IssueCategory.PERFORMANCE});
- const replayCountRequest = MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/replay-count/`,
- method: 'GET',
- body: {
- ['mock_transaction']: ['replay42', 'replay256'],
- },
- });
- renderHook(useReplaysForRegressionIssue, {
- initialProps: {
- group: MOCK_GROUP,
- location,
- organization,
- event: mockEvent,
- },
- });
- expect(replayCountRequest).toHaveBeenCalledWith(
- '/organizations/org-slug/replay-count/',
- expect.objectContaining({
- query: expect.objectContaining({
- query:
- 'event.type:transaction transaction:["mock-transaction"] transaction.duration:>=50ms',
- }),
- })
- );
- await act(tick);
- });
- });
|