123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- import type {Location} from 'history';
- import {GroupFixture} from 'sentry-fixture/group';
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {renderHook, waitFor} from 'sentry-test/reactTestingLibrary';
- import {IssueCategory} from 'sentry/types/group';
- import {useLocation} from 'sentry/utils/useLocation';
- import useReplaysFromIssue from 'sentry/views/issueDetails/groupReplays/useReplaysFromIssue';
- jest.mock('sentry/utils/useLocation');
- describe('useReplaysFromIssue', () => {
- const location: Location = {
- pathname: '',
- search: '',
- query: {},
- hash: '',
- state: undefined,
- action: 'PUSH',
- key: '',
- };
- jest.mocked(useLocation).mockReturnValue(location);
- const organization = OrganizationFixture({
- features: ['session-replay'],
- });
- it('should fetch a list of replay ids', async () => {
- const MOCK_GROUP = GroupFixture();
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/replay-count/`,
- method: 'GET',
- body: {
- [MOCK_GROUP.id]: ['replay42', 'replay256'],
- },
- });
- const {result} = renderHook(useReplaysFromIssue, {
- initialProps: {
- group: MOCK_GROUP,
- location,
- organization,
- },
- });
- expect(result.current).toEqual({
- eventView: null,
- fetchError: undefined,
- isFetching: true,
- pageLinks: null,
- });
- await waitFor(() =>
- expect(result.current).toEqual({
- eventView: expect.objectContaining({
- query: 'id:[replay42,replay256]',
- }),
- fetchError: undefined,
- isFetching: false,
- pageLinks: null,
- })
- );
- });
- it('should fetch a list of replay ids for a performance issue', async () => {
- const MOCK_GROUP = GroupFixture({issueCategory: IssueCategory.PERFORMANCE});
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/replay-count/`,
- method: 'GET',
- body: {
- [MOCK_GROUP.id]: ['replay42', 'replay256'],
- },
- });
- const {result} = renderHook(useReplaysFromIssue, {
- initialProps: {
- group: MOCK_GROUP,
- location,
- organization,
- },
- });
- expect(result.current).toEqual({
- eventView: null,
- fetchError: undefined,
- isFetching: true,
- pageLinks: null,
- });
- await waitFor(() =>
- expect(result.current).toEqual({
- eventView: expect.objectContaining({
- query: 'id:[replay42,replay256]',
- }),
- fetchError: undefined,
- isFetching: false,
- pageLinks: null,
- })
- );
- });
- it('should return an empty EventView when there are no replay_ids returned from the count endpoint', async () => {
- const MOCK_GROUP = GroupFixture();
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/replay-count/`,
- method: 'GET',
- body: {},
- });
- const {result} = renderHook(useReplaysFromIssue, {
- initialProps: {
- group: MOCK_GROUP,
- location,
- organization,
- },
- });
- expect(result.current).toEqual({
- eventView: null,
- fetchError: undefined,
- isFetching: true,
- pageLinks: null,
- });
- await waitFor(() =>
- expect(result.current).toEqual({
- eventView: null,
- fetchError: undefined,
- isFetching: false,
- pageLinks: null,
- })
- );
- });
- });
|