123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- 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, PriorityLevel} from 'sentry/types';
- import {browserHistory} from 'sentry/utils/browserHistory';
- import GroupHeader from 'sentry/views/issueDetails/header';
- import {ReprocessingStatus} from 'sentry/views/issueDetails/utils';
- describe('GroupHeader', () => {
- 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({
- pathname: 'BASE_URL/activity/',
- query: {},
- });
- await userEvent.click(screen.getByRole('tab', {name: /user feedback/i}));
- expect(browserHistory.push).toHaveBeenCalledWith({
- pathname: 'BASE_URL/feedback/',
- query: {},
- });
- await userEvent.click(screen.getByRole('tab', {name: /attachments/i}));
- expect(browserHistory.push).toHaveBeenCalledWith({
- pathname: 'BASE_URL/attachments/',
- query: {},
- });
- await userEvent.click(screen.getByRole('tab', {name: /tags/i}));
- expect(browserHistory.push).toHaveBeenCalledWith({
- pathname: 'BASE_URL/tags/',
- query: {},
- });
- 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({
- pathname: 'BASE_URL/merged/',
- query: {},
- });
- await userEvent.click(screen.getByRole('tab', {name: /replays/i}));
- expect(browserHistory.push).toHaveBeenCalledWith({
- pathname: 'BASE_URL/replays/',
- query: {},
- });
- 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({
- pathname: 'BASE_URL/similar/',
- query: {},
- });
- 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({
- pathname: 'BASE_URL/tags/',
- query: {},
- });
- 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();
- });
- });
- describe('priority', () => {
- beforeEach(() => {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/prompts-activity/',
- body: {data: {dismissed_ts: null}},
- });
- });
- it('can change priority', async () => {
- const mockModifyIssue = MockApiClient.addMockResponse({
- url: `/organizations/org-slug/issues/`,
- method: 'PUT',
- body: {},
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/replay-count/',
- body: {},
- });
- render(
- <GroupHeader
- baseUrl=""
- organization={OrganizationFixture()}
- group={GroupFixture({priority: PriorityLevel.MEDIUM})}
- project={ProjectFixture()}
- groupReprocessingStatus={ReprocessingStatus.NO_STATUS}
- />
- );
- await userEvent.click(screen.getByRole('button', {name: 'Modify issue priority'}));
- await userEvent.click(screen.getByRole('menuitemradio', {name: 'High'}));
- expect(mockModifyIssue).toHaveBeenCalledWith(
- expect.anything(),
- expect.objectContaining({
- data: {priority: PriorityLevel.HIGH},
- })
- );
- });
- });
- });
|