123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- import {browserHistory} from 'react-router';
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {act, render, screen, waitFor} from 'sentry-test/reactTestingLibrary';
- import GroupStore from 'sentry/stores/groupStore';
- import PageFiltersStore from 'sentry/stores/pageFiltersStore';
- import ProjectsStore from 'sentry/stores/projectsStore';
- import {IssueCategory} from 'sentry/types';
- import GroupDetails from 'sentry/views/issueDetails';
- jest.unmock('sentry/utils/recreateRoute');
- const SAMPLE_EVENT_ALERT_TEXT =
- 'You are viewing a sample error. Configure Sentry to start viewing real errors.';
- describe('groupDetails', () => {
- const group = TestStubs.Group({issueCategory: IssueCategory.ERROR});
- const event = TestStubs.Event();
- const project = TestStubs.Project({teams: [TestStubs.Team()]});
- const selection = {environments: []};
- const routes = [
- {path: '/', childRoutes: [], component: null},
- {childRoutes: [], component: null},
- {
- path: '/organizations/:orgId/issues/:groupId/',
- indexRoute: null,
- childRoutes: [],
- componentPromise: () => {},
- component: null,
- },
- {
- componentPromise: null,
- component: null,
- },
- ];
- const {organization, router, routerContext} = initializeOrg({
- project,
- router: {
- location: {
- pathname: `/organizations/org-slug/issues/${group.id}/`,
- query: {},
- search: '?foo=bar',
- hash: '#hash',
- },
- params: {
- groupId: group.id,
- },
- routes,
- },
- });
- function MockComponent({group: groupProp, environments, eventError}) {
- return (
- <div>
- Group Details Mock
- <div>title: {groupProp.title}</div>
- <div>environment: {environments.join(' ')}</div>
- {eventError && <div>eventError</div>}
- </div>
- );
- }
- const createWrapper = (props = {selection}) => {
- return render(
- <GroupDetails
- {...router}
- router={router}
- selection={props.selection}
- organization={organization}
- >
- <MockComponent />
- </GroupDetails>,
- {context: routerContext}
- );
- };
- beforeEach(() => {
- act(() => ProjectsStore.loadInitialData(organization.projects));
- MockApiClient.addMockResponse({
- url: `/issues/${group.id}/`,
- body: {...group},
- });
- MockApiClient.addMockResponse({
- url: `/issues/${group.id}/events/latest/`,
- statusCode: 200,
- body: {
- ...event,
- },
- });
- MockApiClient.addMockResponse({
- url: `/projects/org-slug/${project.slug}/issues/`,
- method: 'PUT',
- body: {
- hasSeen: false,
- },
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/projects/',
- body: [project],
- });
- MockApiClient.addMockResponse({
- url: `/issues/${group.id}/first-last-release/`,
- body: {firstRelease: group.firstRelease, lastRelease: group.lastRelease},
- });
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- statusCode: 200,
- body: {
- data: [
- {
- 'count()': 1,
- },
- ],
- },
- });
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/environments/`,
- body: TestStubs.Environments(),
- });
- });
- afterEach(() => {
- act(() => ProjectsStore.reset());
- GroupStore.reset();
- PageFiltersStore.reset();
- MockApiClient.clearMockResponses();
- });
- it('renders', async function () {
- act(() => ProjectsStore.reset());
- createWrapper();
- expect(screen.queryByText(group.title)).not.toBeInTheDocument();
- act(() => ProjectsStore.loadInitialData(organization.projects));
- expect(await screen.findByText(group.title, {exact: false})).toBeInTheDocument();
- // Sample event alert should not show up
- expect(screen.queryByText(SAMPLE_EVENT_ALERT_TEXT)).not.toBeInTheDocument();
- });
- it('renders error when issue is not found', async function () {
- MockApiClient.addMockResponse({
- url: `/issues/${group.id}/`,
- statusCode: 404,
- });
- MockApiClient.addMockResponse({
- url: `/issues/${group.id}/events/latest/`,
- statusCode: 404,
- });
- createWrapper();
- await waitFor(() =>
- expect(screen.queryByTestId('loading-indicator')).not.toBeInTheDocument()
- );
- expect(
- await screen.findByText('The issue you were looking for was not found.')
- ).toBeInTheDocument();
- });
- it('renders MissingProjectMembership when trying to access issue in project the user does not belong to', async function () {
- MockApiClient.addMockResponse({
- url: `/issues/${group.id}/`,
- statusCode: 403,
- });
- MockApiClient.addMockResponse({
- url: `/issues/${group.id}/events/latest/`,
- statusCode: 403,
- });
- createWrapper();
- await waitFor(() =>
- expect(screen.queryByTestId('loading-indicator')).not.toBeInTheDocument()
- );
- expect(
- await screen.findByText(
- 'No teams have access to this project yet. Ask an admin to add your team to this project.'
- )
- ).toBeInTheDocument();
- });
- it('fetches issue details for a given environment', async function () {
- createWrapper({
- selection: {environments: ['staging']},
- });
- await waitFor(() =>
- expect(screen.queryByTestId('loading-indicator')).not.toBeInTheDocument()
- );
- expect(await screen.findByText('environment: staging')).toBeInTheDocument();
- });
- /**
- * This is legacy code that I'm not even sure still happens
- */
- it('redirects to new issue if params id !== id returned from API request', async function () {
- MockApiClient.addMockResponse({
- url: `/issues/${group.id}/`,
- body: {...group, id: 'new-id'},
- });
- createWrapper();
- expect(screen.queryByText('Group Details Mock')).not.toBeInTheDocument();
- await waitFor(() => {
- expect(browserHistory.push).toHaveBeenCalledTimes(1);
- });
- expect(browserHistory.push).toHaveBeenCalledWith(
- '/organizations/org-slug/issues/new-id/?foo=bar#hash'
- );
- });
- it('renders issue event error', async function () {
- MockApiClient.addMockResponse({
- url: `/issues/${group.id}/events/latest/`,
- statusCode: 404,
- });
- createWrapper();
- expect(await screen.findByText('eventError')).toBeInTheDocument();
- });
- it('renders for review reason', async function () {
- MockApiClient.addMockResponse({
- url: `/issues/${group.id}/`,
- body: {
- ...group,
- inbox: {
- date_added: '2020-11-24T13:17:42.248751Z',
- reason: 0,
- reason_details: null,
- },
- },
- });
- act(() => ProjectsStore.reset());
- createWrapper();
- act(() => ProjectsStore.loadInitialData(organization.projects));
- expect(await screen.findByText('New Issue')).toBeInTheDocument();
- });
- it('renders alert for sample event', async function () {
- const sampleGroup = TestStubs.Group({issueCategory: IssueCategory.ERROR});
- sampleGroup.tags.push({key: 'sample_event'});
- MockApiClient.addMockResponse({
- url: `/issues/${group.id}/`,
- body: {...sampleGroup},
- });
- createWrapper();
- expect(await screen.findByText(SAMPLE_EVENT_ALERT_TEXT)).toBeInTheDocument();
- });
- });
|