123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- import {browserHistory} from 'react-router';
- import {GroupFixture} from 'sentry-fixture/group';
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {ProjectFixture} from 'sentry-fixture/project';
- import {TeamFixture} from 'sentry-fixture/team';
- import {render, screen, userEvent} from 'sentry-test/reactTestingLibrary';
- import {IssueCategory} from 'sentry/types';
- import GroupHeader from 'sentry/views/issueDetails/header';
- import {ReprocessingStatus} from 'sentry/views/issueDetails/utils';
- describe('groupDetails', () => {
- const baseUrl = 'BASE_URL/';
- const organization = OrganizationFixture();
- const project = ProjectFixture({
- teams: [TeamFixture()],
- });
- describe('issue category: error, js project', () => {
- const defaultProps = {
- organization,
- baseUrl,
- group: GroupFixture({issueCategory: IssueCategory.ERROR}),
- groupReprocessingStatus: ReprocessingStatus.NO_STATUS,
- project,
- };
- it('displays the correct tabs with all features enabled', async () => {
- const orgWithFeatures = OrganizationFixture({
- features: ['similarity-view', 'event-attachments', 'session-replay'],
- });
- const jsProjectWithSimilarityView = ProjectFixture({
- features: ['similarity-view'],
- platform: 'javascript',
- });
- const MOCK_GROUP = GroupFixture();
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/replay-count/`,
- method: 'GET',
- body: {
- [MOCK_GROUP.id]: ['replay42', 'replay256'],
- },
- });
- render(
- <GroupHeader
- {...defaultProps}
- organization={orgWithFeatures}
- project={jsProjectWithSimilarityView}
- />,
- {organization: orgWithFeatures}
- );
- await userEvent.click(screen.getByRole('tab', {name: /details/i}));
- expect(browserHistory.push).toHaveBeenLastCalledWith('BASE_URL/');
- await userEvent.click(screen.getByRole('tab', {name: /activity/i}));
- expect(browserHistory.push).toHaveBeenCalledWith('BASE_URL/activity/');
- await userEvent.click(screen.getByRole('tab', {name: /user feedback/i}));
- expect(browserHistory.push).toHaveBeenCalledWith('BASE_URL/feedback/');
- await userEvent.click(screen.getByRole('tab', {name: /attachments/i}));
- expect(browserHistory.push).toHaveBeenCalledWith('BASE_URL/attachments/');
- await userEvent.click(screen.getByRole('tab', {name: /tags/i}));
- expect(browserHistory.push).toHaveBeenCalledWith('BASE_URL/tags/');
- await userEvent.click(screen.getByRole('tab', {name: /all events/i}));
- expect(browserHistory.push).toHaveBeenCalledWith({
- pathname: 'BASE_URL/events/',
- query: {},
- });
- await userEvent.click(screen.getByRole('tab', {name: /merged issues/i}));
- expect(browserHistory.push).toHaveBeenCalledWith('BASE_URL/merged/');
- await userEvent.click(screen.getByRole('tab', {name: /replays/i}));
- expect(browserHistory.push).toHaveBeenCalledWith('BASE_URL/replays/');
- expect(screen.queryByRole('tab', {name: /replays/i})).toBeInTheDocument();
- });
- });
- describe('issue category: error, mobile project', () => {
- const defaultProps = {
- organization,
- baseUrl,
- group: GroupFixture({issueCategory: IssueCategory.ERROR}),
- groupReprocessingStatus: ReprocessingStatus.NO_STATUS,
- project,
- };
- it('displays the correct tabs with all features enabled', async () => {
- const orgWithFeatures = OrganizationFixture({
- features: ['similarity-view', 'event-attachments', 'session-replay'],
- });
- const mobileProjectWithSimilarityView = ProjectFixture({
- features: ['similarity-view'],
- platform: 'apple-ios',
- });
- const MOCK_GROUP = GroupFixture();
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/replay-count/`,
- method: 'GET',
- body: {
- [MOCK_GROUP.id]: ['replay42', 'replay256'],
- },
- });
- render(
- <GroupHeader
- {...defaultProps}
- organization={orgWithFeatures}
- project={mobileProjectWithSimilarityView}
- />,
- {organization: orgWithFeatures}
- );
- await userEvent.click(screen.getByRole('tab', {name: /similar issues/i}));
- expect(browserHistory.push).toHaveBeenCalledWith('BASE_URL/similar/');
- expect(screen.queryByRole('tab', {name: /replays/i})).not.toBeInTheDocument();
- });
- });
- describe('issue category: performance', () => {
- const defaultProps = {
- organization,
- baseUrl,
- group: GroupFixture({issueCategory: IssueCategory.PERFORMANCE}),
- groupReprocessingStatus: ReprocessingStatus.NO_STATUS,
- project,
- };
- it('displays the correct tabs with all features enabled', async () => {
- const orgWithFeatures = OrganizationFixture({
- features: ['similarity-view', 'event-attachments', 'session-replay'],
- });
- const projectWithSimilarityView = ProjectFixture({
- features: ['similarity-view'],
- });
- const MOCK_GROUP = GroupFixture({issueCategory: IssueCategory.PERFORMANCE});
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/replay-count/`,
- method: 'GET',
- body: {
- [MOCK_GROUP.id]: ['replay42', 'replay256'],
- },
- });
- render(
- <GroupHeader
- {...defaultProps}
- organization={orgWithFeatures}
- project={projectWithSimilarityView}
- />,
- {organization: orgWithFeatures}
- );
- await userEvent.click(screen.getByRole('tab', {name: /details/i}));
- expect(browserHistory.push).toHaveBeenLastCalledWith('BASE_URL/');
- await userEvent.click(screen.getByRole('tab', {name: /tags/i}));
- expect(browserHistory.push).toHaveBeenCalledWith('BASE_URL/tags/');
- await userEvent.click(screen.getByRole('tab', {name: /sampled events/i}));
- expect(browserHistory.push).toHaveBeenCalledWith({
- pathname: 'BASE_URL/events/',
- query: {},
- });
- expect(screen.queryByRole('tab', {name: /user feedback/i})).not.toBeInTheDocument();
- expect(screen.queryByRole('tab', {name: /attachments/i})).not.toBeInTheDocument();
- expect(screen.queryByRole('tab', {name: /merged issues/i})).not.toBeInTheDocument();
- expect(
- screen.queryByRole('tab', {name: /similar issues/i})
- ).not.toBeInTheDocument();
- expect(screen.queryByRole('tab', {name: /replays/i})).not.toBeInTheDocument();
- });
- });
- });
|