12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448 |
- import merge from 'lodash/merge';
- import {GroupFixture} from 'sentry-fixture/group';
- import {GroupStatsFixture} from 'sentry-fixture/groupStats';
- import {LocationFixture} from 'sentry-fixture/locationFixture';
- import {MemberFixture} from 'sentry-fixture/member';
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {ProjectFixture} from 'sentry-fixture/project';
- import {SearchFixture} from 'sentry-fixture/search';
- import {TagsFixture} from 'sentry-fixture/tags';
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {
- act,
- render,
- screen,
- userEvent,
- waitFor,
- waitForElementToBeRemoved,
- } from 'sentry-test/reactTestingLibrary';
- import {textWithMarkupMatcher} from 'sentry-test/utils';
- import StreamGroup from 'sentry/components/stream/group';
- import {DEFAULT_QUERY} from 'sentry/constants';
- import ProjectsStore from 'sentry/stores/projectsStore';
- import TagStore from 'sentry/stores/tagStore';
- import {SavedSearchVisibility} from 'sentry/types/group';
- import {browserHistory} from 'sentry/utils/browserHistory';
- import localStorageWrapper from 'sentry/utils/localStorage';
- import * as parseLinkHeader from 'sentry/utils/parseLinkHeader';
- import IssueListWithStores, {IssueListOverview} from 'sentry/views/issueList/overview';
- // Mock <IssueListActions>
- jest.mock('sentry/views/issueList/actions', () => jest.fn(() => null));
- jest.mock('sentry/components/stream/group', () => jest.fn(() => null));
- const DEFAULT_LINKS_HEADER =
- '<http://127.0.0.1:8000/api/0/organizations/org-slug/issues/?cursor=1443575731:0:1>; rel="previous"; results="false"; cursor="1443575731:0:1", ' +
- '<http://127.0.0.1:8000/api/0/organizations/org-slug/issues/?cursor=1443575000:0:0>; rel="next"; results="true"; cursor="1443575000:0:0"';
- const project = ProjectFixture({
- id: '3559',
- name: 'Foo Project',
- slug: 'project-slug',
- firstEvent: new Date().toISOString(),
- });
- const {organization, projects, router} = initializeOrg({
- organization: {
- id: '1337',
- slug: 'org-slug',
- features: ['global-views'],
- access: [],
- },
- router: {
- location: {query: {}, search: ''},
- params: {},
- },
- projects: [project],
- });
- const routerProps = {
- params: router.params,
- location: router.location,
- };
- describe('IssueList', function () {
- let props;
- const tags = TagsFixture();
- const group = GroupFixture({project});
- const groupStats = GroupStatsFixture();
- const savedSearch = SearchFixture({
- id: '789',
- query: 'is:unresolved TypeError',
- sort: 'date',
- name: 'Unresolved TypeErrors',
- });
- let fetchTagsRequest: jest.Mock;
- let fetchMembersRequest: jest.Mock;
- const api = new MockApiClient();
- const parseLinkHeaderSpy = jest.spyOn(parseLinkHeader, 'default');
- beforeEach(function () {
- // The tests fail because we have a "component update was not wrapped in act" error.
- // It should be safe to ignore this error, but we should remove the mock once we move to react testing library
- // eslint-disable-next-line no-console
- jest.spyOn(console, 'error').mockImplementation(jest.fn());
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/issues/',
- body: [group],
- headers: {
- Link: DEFAULT_LINKS_HEADER,
- },
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/issues-stats/',
- body: [groupStats],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/searches/',
- body: [savedSearch],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/recent-searches/',
- body: [],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/recent-searches/',
- method: 'POST',
- body: [],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/issues-count/',
- method: 'GET',
- body: [{}],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/processingissues/',
- method: 'GET',
- body: [
- {
- project: 'test-project',
- numIssues: 1,
- hasIssues: true,
- lastSeen: '2019-01-16T15:39:11.081Z',
- },
- ],
- });
- fetchTagsRequest = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/tags/',
- method: 'GET',
- body: tags,
- });
- fetchMembersRequest = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/users/',
- method: 'GET',
- body: [MemberFixture({projects: [project.slug]})],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/sent-first-event/',
- body: {sentFirstEvent: true},
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/projects/',
- body: [project],
- });
- TagStore.init?.();
- props = {
- api,
- savedSearchLoading: false,
- savedSearches: [savedSearch],
- useOrgSavedSearches: true,
- selection: {
- projects: [parseInt(projects[0].id, 10)],
- environments: [],
- datetime: {period: '14d'},
- },
- location: {query: {query: DEFAULT_QUERY}, search: `query=${DEFAULT_QUERY}`},
- params: {},
- organization,
- tags: tags.reduce((acc, tag) => {
- acc[tag.key] = tag;
- return acc;
- }),
- };
- });
- afterEach(function () {
- jest.clearAllMocks();
- MockApiClient.clearMockResponses();
- localStorageWrapper.clear();
- });
- describe('withStores and feature flags', function () {
- let savedSearchesRequest: jest.Mock;
- let recentSearchesRequest: jest.Mock;
- let issuesRequest: jest.Mock;
- beforeEach(function () {
- jest.mocked(StreamGroup).mockClear();
- recentSearchesRequest = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/recent-searches/',
- method: 'GET',
- body: [],
- });
- savedSearchesRequest = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/searches/',
- body: [savedSearch],
- });
- issuesRequest = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/issues/',
- body: [group],
- headers: {
- Link: DEFAULT_LINKS_HEADER,
- },
- });
- });
- it('loads group rows with default query (no pinned queries, async and no query in URL)', async function () {
- render(<IssueListWithStores {...routerProps} />, {router});
- // Loading saved searches
- await waitForElementToBeRemoved(() => screen.getByTestId('loading-indicator'));
- expect(savedSearchesRequest).toHaveBeenCalledTimes(1);
- await userEvent.click(await screen.findByDisplayValue(DEFAULT_QUERY));
- // auxillary requests being made
- expect(recentSearchesRequest).toHaveBeenCalledTimes(1);
- expect(fetchTagsRequest).toHaveBeenCalledTimes(1);
- expect(fetchMembersRequest).toHaveBeenCalledTimes(1);
- // primary /issues/ request
- expect(issuesRequest).toHaveBeenCalledWith(
- expect.anything(),
- expect.objectContaining({
- // Should be called with default query
- data: expect.stringContaining('is%3Aunresolved'),
- })
- );
- expect(screen.getByDisplayValue(DEFAULT_QUERY)).toBeInTheDocument();
- expect(screen.getByRole('button', {name: /custom search/i})).toBeInTheDocument();
- });
- it('loads with query in URL and pinned queries', async function () {
- savedSearchesRequest = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/searches/',
- body: [
- savedSearch,
- SearchFixture({
- id: '123',
- name: 'My Pinned Search',
- isPinned: true,
- query: 'is:resolved',
- }),
- ],
- });
- const location = LocationFixture({query: {query: 'level:foo'}});
- render(<IssueListWithStores {...merge({}, routerProps, {location})} />, {
- router: {location},
- });
- await waitFor(() => {
- // Main /issues/ request
- expect(issuesRequest).toHaveBeenCalledWith(
- expect.anything(),
- expect.objectContaining({
- // Should be called with default query
- data: expect.stringContaining('level%3Afoo'),
- })
- );
- });
- expect(screen.getByDisplayValue('level:foo')).toBeInTheDocument();
- // Tab shows "custom search"
- expect(screen.getByRole('button', {name: 'Custom Search'})).toBeInTheDocument();
- });
- it('loads with a pinned custom query', async function () {
- savedSearchesRequest = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/searches/',
- body: [
- savedSearch,
- SearchFixture({
- id: '123',
- name: 'My Pinned Search',
- isPinned: true,
- isGlobal: false,
- query: 'is:resolved',
- }),
- ],
- });
- render(<IssueListWithStores {...routerProps} />, {router});
- await waitFor(() => {
- expect(issuesRequest).toHaveBeenCalledWith(
- expect.anything(),
- expect.objectContaining({
- // Should be called with default query
- data: expect.stringContaining('is%3Aresolved'),
- })
- );
- });
- expect(screen.getByDisplayValue('is:resolved')).toBeInTheDocument();
- // Organization saved search selector should have default saved search selected
- expect(screen.getByRole('button', {name: 'My Default Search'})).toBeInTheDocument();
- });
- it('loads with a saved query', async function () {
- savedSearchesRequest = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/searches/',
- body: [
- SearchFixture({
- id: '123',
- name: 'Assigned to Me',
- isPinned: false,
- isGlobal: true,
- query: 'assigned:me',
- sort: 'trends',
- type: 0,
- }),
- ],
- });
- const localRouter = {params: {searchId: '123'}};
- render(<IssueListWithStores {...merge({}, routerProps, localRouter)} />, {
- router: localRouter,
- });
- await waitFor(() => {
- expect(issuesRequest).toHaveBeenCalledWith(
- expect.anything(),
- expect.objectContaining({
- // Should be called with default query
- data:
- expect.stringContaining('assigned%3Ame') &&
- expect.stringContaining('sort=trends'),
- })
- );
- });
- expect(screen.getByDisplayValue('assigned:me')).toBeInTheDocument();
- // Organization saved search selector should have default saved search selected
- expect(screen.getByRole('button', {name: 'Assigned to Me'})).toBeInTheDocument();
- });
- it('loads with a query in URL', async function () {
- savedSearchesRequest = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/searches/',
- body: [
- SearchFixture({
- id: '123',
- name: 'Assigned to Me',
- isPinned: false,
- isGlobal: true,
- query: 'assigned:me',
- type: 0,
- }),
- ],
- });
- const localRouter = {location: {query: {query: 'level:error'}}};
- render(<IssueListWithStores {...merge({}, routerProps, localRouter)} />, {
- router,
- });
- await waitFor(() => {
- expect(issuesRequest).toHaveBeenCalledWith(
- expect.anything(),
- expect.objectContaining({
- // Should be called with default query
- data: expect.stringContaining('level%3Aerror'),
- })
- );
- });
- expect(screen.getByDisplayValue('level:error')).toBeInTheDocument();
- // Organization saved search selector should have default saved search selected
- expect(screen.getByRole('button', {name: 'Custom Search'})).toBeInTheDocument();
- });
- it('loads with an empty query in URL', async function () {
- savedSearchesRequest = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/searches/',
- body: [
- SearchFixture({
- id: '123',
- name: 'My Pinned Search',
- isPinned: true,
- isGlobal: false,
- query: 'is:resolved',
- }),
- ],
- });
- render(
- <IssueListWithStores
- {...merge({}, routerProps, {location: {query: {query: undefined}}})}
- />,
- {router}
- );
- await waitFor(() => {
- expect(issuesRequest).toHaveBeenCalledWith(
- expect.anything(),
- expect.objectContaining({
- // Should be called with empty query
- data: expect.stringContaining(''),
- })
- );
- });
- expect(screen.getByDisplayValue('is:resolved')).toBeInTheDocument();
- // Organization saved search selector should have default saved search selected
- expect(screen.getByRole('button', {name: 'My Default Search'})).toBeInTheDocument();
- });
- it('caches the search results', async function () {
- issuesRequest = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/issues/',
- body: [...new Array(25)].map((_, i) => ({id: i})),
- headers: {
- Link: DEFAULT_LINKS_HEADER,
- 'X-Hits': '500',
- 'X-Max-Hits': '1000',
- },
- });
- const defaultProps = {
- ...props,
- ...routerProps,
- useOrgSavedSearches: true,
- selection: {
- projects: [],
- environments: [],
- datetime: {period: '14d'},
- },
- organization: OrganizationFixture({
- features: ['issue-stream-performance'],
- }),
- };
- const {unmount} = render(<IssueListWithStores {...defaultProps} />, {
- router,
- organization: defaultProps.organization,
- });
- expect(
- await screen.findByText(textWithMarkupMatcher('1-25 of 500'))
- ).toBeInTheDocument();
- expect(issuesRequest).toHaveBeenCalledTimes(1);
- unmount();
- // Mount component again, getting from cache
- render(<IssueListWithStores {...defaultProps} />, {
- router,
- organization: defaultProps.organization,
- });
- expect(
- await screen.findByText(textWithMarkupMatcher('1-25 of 500'))
- ).toBeInTheDocument();
- expect(issuesRequest).toHaveBeenCalledTimes(1);
- });
- it('1 search', async function () {
- const localSavedSearch = {...savedSearch, projectId: null};
- savedSearchesRequest = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/searches/',
- body: [localSavedSearch],
- });
- render(<IssueListWithStores {...routerProps} />, {
- router,
- });
- await waitForElementToBeRemoved(() => screen.getByTestId('loading-indicator'));
- await userEvent.click(screen.getByRole('button', {name: /custom search/i}));
- await userEvent.click(screen.getByRole('button', {name: localSavedSearch.name}));
- expect(browserHistory.push).toHaveBeenLastCalledWith(
- expect.objectContaining({
- pathname: '/organizations/org-slug/issues/searches/789/',
- })
- );
- });
- it('clears a saved search when a custom one is entered', async function () {
- savedSearchesRequest = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/searches/',
- body: [
- savedSearch,
- SearchFixture({
- id: '123',
- name: 'Pinned search',
- isPinned: true,
- isGlobal: false,
- query: 'is:resolved',
- }),
- ],
- });
- render(<IssueListWithStores {...routerProps} />, {
- router,
- });
- await waitForElementToBeRemoved(() => screen.getByTestId('loading-indicator'));
- const queryInput = screen.getByDisplayValue('is:resolved');
- await userEvent.clear(queryInput);
- await userEvent.type(queryInput, 'dogs{enter}');
- expect(browserHistory.push).toHaveBeenLastCalledWith(
- expect.objectContaining({
- pathname: '/organizations/org-slug/issues/',
- query: {
- environment: [],
- project: [],
- referrer: 'issue-list',
- sort: '',
- query: 'dogs',
- statsPeriod: '14d',
- },
- })
- );
- });
- it('pins a custom query', async function () {
- const pinnedSearch = {
- id: '666',
- name: 'My Pinned Search',
- query: 'assigned:me level:fatal',
- sort: 'date',
- isPinned: true,
- visibility: SavedSearchVisibility.ORGANIZATION,
- };
- savedSearchesRequest = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/searches/',
- body: [savedSearch],
- });
- const {rerender} = render(<IssueListWithStores {...routerProps} />, {
- router,
- });
- await waitForElementToBeRemoved(() => screen.getByTestId('loading-indicator'));
- const queryInput = screen.getByDisplayValue(DEFAULT_QUERY);
- await userEvent.clear(queryInput);
- await userEvent.type(queryInput, 'assigned:me level:fatal{enter}');
- expect((browserHistory.push as jest.Mock).mock.calls[0][0]).toEqual(
- expect.objectContaining({
- query: expect.objectContaining({
- query: 'assigned:me level:fatal',
- }),
- })
- );
- await tick();
- const routerWithQuery = {location: {query: {query: 'assigned:me level:fatal'}}};
- rerender(<IssueListWithStores {...merge({}, routerProps, routerWithQuery)} />);
- expect(screen.getByRole('button', {name: 'Custom Search'})).toBeInTheDocument();
- MockApiClient.clearMockResponses();
- const createPin = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/pinned-searches/',
- method: 'PUT',
- body: pinnedSearch,
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/searches/',
- body: [savedSearch, pinnedSearch],
- });
- await userEvent.click(screen.getByLabelText(/Set as Default/i));
- await waitFor(() => {
- expect(createPin).toHaveBeenCalled();
- expect(browserHistory.replace).toHaveBeenLastCalledWith(
- expect.objectContaining({
- pathname: '/organizations/org-slug/issues/searches/666/',
- query: {
- referrer: 'search-bar',
- },
- search: '',
- })
- );
- });
- });
- it('unpins a custom query', async function () {
- const pinnedSearch = SearchFixture({
- id: '666',
- name: 'My Pinned Search',
- query: 'assigned:me level:fatal',
- sort: 'date',
- isPinned: true,
- visibility: SavedSearchVisibility.ORGANIZATION,
- });
- savedSearchesRequest = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/searches/',
- body: [pinnedSearch],
- });
- const deletePin = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/pinned-searches/',
- method: 'DELETE',
- });
- const routerWithSavedSearch = {
- params: {searchId: pinnedSearch.id},
- };
- render(<IssueListWithStores {...merge({}, routerProps, routerWithSavedSearch)} />, {
- router: routerWithSavedSearch,
- });
- await waitForElementToBeRemoved(() => screen.getByTestId('loading-indicator'));
- expect(screen.getByRole('button', {name: 'My Default Search'})).toBeInTheDocument();
- await userEvent.click(screen.getByLabelText(/Remove Default/i));
- await waitFor(() => {
- expect(deletePin).toHaveBeenCalled();
- });
- await waitFor(() => {
- expect(browserHistory.replace).toHaveBeenLastCalledWith(
- expect.objectContaining({
- pathname: '/organizations/org-slug/issues/',
- })
- );
- });
- });
- it('pins a saved query', async function () {
- const assignedToMe = SearchFixture({
- id: '234',
- name: 'Assigned to Me',
- isPinned: false,
- isGlobal: true,
- query: 'assigned:me',
- sort: 'date',
- type: 0,
- });
- savedSearchesRequest = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/searches/',
- body: [savedSearch, assignedToMe],
- });
- const createPin = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/pinned-searches/',
- method: 'PUT',
- body: {
- ...savedSearch,
- isPinned: true,
- },
- });
- const routerWithSavedSearch = {params: {searchId: '789'}};
- render(<IssueListWithStores {...merge({}, routerProps, routerWithSavedSearch)} />, {
- router: routerWithSavedSearch,
- });
- await waitForElementToBeRemoved(() => screen.getByTestId('loading-indicator'));
- expect(screen.getByRole('button', {name: savedSearch.name})).toBeInTheDocument();
- await userEvent.click(screen.getByLabelText(/set as default/i));
- await waitFor(() => {
- expect(createPin).toHaveBeenCalled();
- expect(browserHistory.replace).toHaveBeenLastCalledWith(
- expect.objectContaining({
- pathname: '/organizations/org-slug/issues/searches/789/',
- })
- );
- });
- });
- it('pinning search should keep project selected', async function () {
- savedSearchesRequest = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/searches/',
- body: [savedSearch],
- });
- const {router: newRouter} = initializeOrg({
- router: {
- location: {
- query: {
- project: ['123'],
- environment: ['prod'],
- query: 'assigned:me level:fatal',
- },
- },
- },
- });
- render(
- <IssueListWithStores
- {...newRouter}
- selection={{
- projects: [123],
- environments: ['prod'],
- datetime: {
- end: null,
- period: null,
- start: null,
- utc: null,
- },
- }}
- />,
- {router: newRouter}
- );
- await waitForElementToBeRemoved(() => screen.getByTestId('loading-indicator'));
- const createPin = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/pinned-searches/',
- method: 'PUT',
- body: {
- ...savedSearch,
- id: '666',
- name: 'My Pinned Search',
- query: 'assigned:me level:fatal',
- sort: 'date',
- isPinned: true,
- },
- });
- await userEvent.click(screen.getByLabelText(/set as default/i));
- await waitFor(() => {
- expect(createPin).toHaveBeenCalled();
- expect(browserHistory.replace).toHaveBeenLastCalledWith(
- expect.objectContaining({
- pathname: '/organizations/org-slug/issues/searches/666/',
- query: expect.objectContaining({
- project: ['123'],
- environment: ['prod'],
- query: 'assigned:me level:fatal',
- referrer: 'search-bar',
- }),
- })
- );
- });
- });
- it('unpinning search should keep project selected', async function () {
- const localSavedSearch = {
- ...savedSearch,
- id: '666',
- isPinned: true,
- query: 'assigned:me level:fatal',
- };
- savedSearchesRequest = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/searches/',
- body: [localSavedSearch],
- });
- const deletePin = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/pinned-searches/',
- method: 'DELETE',
- });
- const {router: newRouter} = initializeOrg(
- merge({}, router, {
- router: {
- location: {
- query: {
- project: ['123'],
- environment: ['prod'],
- query: 'assigned:me level:fatal',
- },
- },
- params: {searchId: '666'},
- },
- })
- );
- render(
- <IssueListWithStores
- {...newRouter}
- selection={{
- projects: [123],
- environments: ['prod'],
- datetime: {
- end: null,
- period: null,
- start: null,
- utc: null,
- },
- }}
- savedSearch={localSavedSearch}
- />,
- {router: newRouter}
- );
- await waitForElementToBeRemoved(() => screen.getByTestId('loading-indicator'));
- await userEvent.click(screen.getByLabelText(/Remove Default/i));
- await waitFor(() => {
- expect(deletePin).toHaveBeenCalled();
- expect(browserHistory.replace).toHaveBeenLastCalledWith(
- expect.objectContaining({
- pathname: '/organizations/org-slug/issues/',
- query: expect.objectContaining({
- project: ['123'],
- environment: ['prod'],
- query: 'assigned:me level:fatal',
- referrer: 'search-bar',
- }),
- })
- );
- });
- });
- it('does not allow pagination to "previous" while on first page and resets cursors when navigating back to initial page', async function () {
- const {rerender} = render(<IssueListWithStores {...routerProps} />, {
- router,
- });
- await waitForElementToBeRemoved(() => screen.getByTestId('loading-indicator'));
- expect(screen.getByRole('button', {name: 'Previous'})).toBeDisabled();
- issuesRequest = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/issues/',
- body: [group],
- headers: {
- Link: '<http://127.0.0.1:8000/api/0/organizations/org-slug/issues/?cursor=1443575000:0:0>; rel="previous"; results="true"; cursor="1443575000:0:1", <http://127.0.0.1:8000/api/0/organizations/org-slug/issues/?cursor=1443574000:0:0>; rel="next"; results="true"; cursor="1443574000:0:0"',
- },
- });
- await userEvent.click(screen.getByRole('button', {name: 'Next'}));
- let pushArgs = {
- pathname: '/organizations/org-slug/issues/',
- query: {
- cursor: '1443575000:0:0',
- page: 1,
- environment: [],
- project: [],
- query: DEFAULT_QUERY,
- statsPeriod: '14d',
- referrer: 'issue-list',
- },
- };
- await waitFor(() => {
- expect(browserHistory.push).toHaveBeenLastCalledWith(pushArgs);
- });
- rerender(<IssueListWithStores {...merge({}, routerProps, {location: pushArgs})} />);
- expect(screen.getByRole('button', {name: 'Previous'})).toBeEnabled();
- // Click next again
- await userEvent.click(screen.getByRole('button', {name: 'Next'}));
- pushArgs = {
- pathname: '/organizations/org-slug/issues/',
- query: {
- cursor: '1443574000:0:0',
- page: 2,
- environment: [],
- project: [],
- query: DEFAULT_QUERY,
- statsPeriod: '14d',
- referrer: 'issue-list',
- },
- };
- await waitFor(() => {
- expect(browserHistory.push).toHaveBeenLastCalledWith(pushArgs);
- });
- rerender(<IssueListWithStores {...merge({}, routerProps, {location: pushArgs})} />);
- // Click previous
- await userEvent.click(screen.getByRole('button', {name: 'Previous'}));
- pushArgs = {
- pathname: '/organizations/org-slug/issues/',
- query: {
- cursor: '1443575000:0:1',
- page: 1,
- environment: [],
- project: [],
- query: DEFAULT_QUERY,
- statsPeriod: '14d',
- referrer: 'issue-list',
- },
- };
- await waitFor(() => {
- expect(browserHistory.push).toHaveBeenLastCalledWith(pushArgs);
- });
- rerender(<IssueListWithStores {...merge({}, routerProps, {location: pushArgs})} />);
- // Click previous back to initial page
- await userEvent.click(screen.getByRole('button', {name: 'Previous'}));
- await waitFor(() => {
- // cursor is undefined because "prev" cursor is === initial "next" cursor
- expect(browserHistory.push).toHaveBeenLastCalledWith({
- pathname: '/organizations/org-slug/issues/',
- query: {
- cursor: undefined,
- environment: [],
- page: undefined,
- project: [],
- query: DEFAULT_QUERY,
- statsPeriod: '14d',
- referrer: 'issue-list',
- },
- });
- });
- });
- });
- describe('transitionTo', function () {
- it('pushes to history when query is updated', async function () {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/issues/',
- body: [],
- headers: {
- Link: DEFAULT_LINKS_HEADER,
- },
- });
- render(<IssueListOverview {...props} />, {
- router,
- });
- const queryInput = screen.getByDisplayValue(DEFAULT_QUERY);
- await userEvent.clear(queryInput);
- await userEvent.type(queryInput, 'is:ignored{enter}');
- expect(browserHistory.push).toHaveBeenCalledWith({
- pathname: '/organizations/org-slug/issues/',
- query: {
- environment: [],
- project: [parseInt(project.id, 10)],
- query: 'is:ignored',
- statsPeriod: '14d',
- referrer: 'issue-list',
- },
- });
- });
- });
- it('fetches tags and members', async function () {
- render(<IssueListOverview {...routerProps} {...props} />, {router});
- await waitFor(() => {
- expect(fetchTagsRequest).toHaveBeenCalled();
- expect(fetchMembersRequest).toHaveBeenCalled();
- });
- });
- describe('componentDidUpdate fetching groups', function () {
- let fetchDataMock;
- beforeEach(function () {
- fetchDataMock = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/issues/',
- body: [group],
- headers: {
- Link: DEFAULT_LINKS_HEADER,
- },
- });
- fetchDataMock.mockReset();
- });
- it('fetches data on selection change', function () {
- const {rerender} = render(<IssueListOverview {...routerProps} {...props} />, {
- router,
- });
- rerender(
- <IssueListOverview
- {...routerProps}
- {...props}
- selection={{projects: [99], environments: [], datetime: {period: '24h'}}}
- />
- );
- expect(fetchDataMock).toHaveBeenCalled();
- });
- it('fetches data on savedSearch change', function () {
- const {rerender} = render(<IssueListOverview {...routerProps} {...props} />, {
- router,
- });
- rerender(
- <IssueListOverview
- {...routerProps}
- {...props}
- savedSearch={{id: '1', query: 'is:resolved'}}
- />
- );
- expect(fetchDataMock).toHaveBeenCalled();
- });
- it('uses correct statsPeriod when fetching issues list and no datetime given', function () {
- const {rerender} = render(<IssueListOverview {...routerProps} {...props} />, {
- router,
- });
- const selection = {projects: [99], environments: [], datetime: {}};
- rerender(<IssueListOverview {...routerProps} {...props} selection={selection} />);
- expect(fetchDataMock).toHaveBeenLastCalledWith(
- '/organizations/org-slug/issues/',
- expect.objectContaining({
- data: 'collapse=stats&collapse=unhandled&expand=owners&expand=inbox&limit=25&project=99&query=is%3Aunresolved%20issue.priority%3A%5Bhigh%2C%20medium%5D&savedSearch=1&shortIdLookup=1&statsPeriod=14d',
- })
- );
- });
- });
- describe('componentDidUpdate fetching members', function () {
- it('fetches memberlist and tags list on project change', function () {
- const {rerender} = render(<IssueListOverview {...routerProps} {...props} />, {
- router,
- });
- // Called during componentDidMount
- expect(fetchMembersRequest).toHaveBeenCalledTimes(1);
- expect(fetchTagsRequest).toHaveBeenCalledTimes(1);
- const selection = {
- projects: [99],
- environments: [],
- datetime: {period: '24h'},
- };
- rerender(<IssueListOverview {...routerProps} {...props} selection={selection} />);
- expect(fetchMembersRequest).toHaveBeenCalledTimes(2);
- expect(fetchTagsRequest).toHaveBeenCalledTimes(2);
- });
- });
- describe('render states', function () {
- it('displays the loading icon when saved searches are loading', function () {
- render(<IssueListOverview {...routerProps} {...props} savedSearchLoading />, {
- router,
- });
- expect(screen.getByTestId('loading-indicator')).toBeInTheDocument();
- });
- it('displays an error when issues fail to load', async function () {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/issues/',
- status: 500,
- statusCode: 500,
- });
- render(<IssueListOverview {...routerProps} {...props} />, {
- router,
- });
- expect(await screen.findByTestId('loading-error')).toBeInTheDocument();
- });
- it('displays congrats robots animation with only default query', async function () {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/issues/',
- body: [],
- headers: {
- Link: DEFAULT_LINKS_HEADER,
- },
- });
- render(<IssueListOverview {...routerProps} {...props} />, {router});
- expect(
- await screen.findByText(/We couldn't find any issues that matched your filters/i)
- ).toBeInTheDocument();
- });
- it('displays an empty resultset with a non-default query', async function () {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/issues/',
- body: [],
- headers: {
- Link: DEFAULT_LINKS_HEADER,
- },
- });
- render(<IssueListOverview {...routerProps} {...props} />, {router});
- await userEvent.type(
- screen.getByDisplayValue(DEFAULT_QUERY),
- ' level:error{enter}'
- );
- expect(
- await screen.findByText(/We couldn't find any issues that matched your filters/i)
- ).toBeInTheDocument();
- });
- });
- describe('Error Robot', function () {
- const createWrapper = async moreProps => {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/issues/',
- body: [],
- headers: {
- Link: DEFAULT_LINKS_HEADER,
- },
- });
- const defaultProps = {
- ...props,
- useOrgSavedSearches: true,
- selection: {
- projects: [],
- environments: [],
- datetime: {period: '14d'},
- },
- ...merge({}, routerProps, {
- params: {},
- location: {query: {query: DEFAULT_QUERY}, search: 'query=is:unresolved'},
- }),
- organization: OrganizationFixture(),
- ...moreProps,
- };
- render(<IssueListOverview {...defaultProps} />, {router});
- await waitForElementToBeRemoved(() => screen.getByTestId('loading-indicator'));
- };
- it('displays when no projects selected and all projects user is member of, async does not have first event', async function () {
- const projectsBody = [
- ProjectFixture({
- id: '1',
- slug: 'foo',
- isMember: true,
- firstEvent: null,
- }),
- ProjectFixture({
- id: '2',
- slug: 'bar',
- isMember: true,
- firstEvent: null,
- }),
- ProjectFixture({
- id: '3',
- slug: 'baz',
- isMember: true,
- firstEvent: null,
- }),
- ];
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/sent-first-event/',
- query: {
- is_member: true,
- },
- body: {sentFirstEvent: false},
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/projects/',
- body: projectsBody,
- });
- MockApiClient.addMockResponse({
- url: '/projects/org-slug/foo/issues/',
- body: [],
- });
- await createWrapper({
- organization: OrganizationFixture(),
- });
- expect(await screen.findByTestId('awaiting-events')).toBeInTheDocument();
- });
- it('does not display when no projects selected and any projects have a first event', async function () {
- const projectsBody = [
- ProjectFixture({
- id: '1',
- slug: 'foo',
- isMember: true,
- firstEvent: null,
- }),
- ProjectFixture({
- id: '2',
- slug: 'bar',
- isMember: true,
- firstEvent: new Date().toISOString(),
- }),
- ProjectFixture({
- id: '3',
- slug: 'baz',
- isMember: true,
- firstEvent: null,
- }),
- ];
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/sent-first-event/',
- query: {
- is_member: true,
- },
- body: {sentFirstEvent: true},
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/projects/',
- body: projectsBody,
- });
- await createWrapper({
- organization: OrganizationFixture(),
- });
- expect(screen.queryByTestId('awaiting-events')).not.toBeInTheDocument();
- });
- it('displays when all selected projects do not have first event', async function () {
- const projectsBody = [
- ProjectFixture({
- id: '1',
- slug: 'foo',
- isMember: true,
- firstEvent: null,
- }),
- ProjectFixture({
- id: '2',
- slug: 'bar',
- isMember: true,
- firstEvent: null,
- }),
- ProjectFixture({
- id: '3',
- slug: 'baz',
- isMember: true,
- firstEvent: null,
- }),
- ];
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/sent-first-event/',
- query: {
- project: [1, 2],
- },
- body: {sentFirstEvent: false},
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/projects/',
- body: projectsBody,
- });
- MockApiClient.addMockResponse({
- url: '/projects/org-slug/foo/issues/',
- body: [],
- });
- await createWrapper({
- selection: {
- projects: [1, 2],
- environments: [],
- datetime: {period: '14d'},
- },
- organization: OrganizationFixture(),
- });
- expect(await screen.findByTestId('awaiting-events')).toBeInTheDocument();
- });
- it('does not display when any selected projects have first event', async function () {
- const projectsBody = [
- ProjectFixture({
- id: '1',
- slug: 'foo',
- isMember: true,
- firstEvent: null,
- }),
- ProjectFixture({
- id: '2',
- slug: 'bar',
- isMember: true,
- firstEvent: new Date().toISOString(),
- }),
- ProjectFixture({
- id: '3',
- slug: 'baz',
- isMember: true,
- firstEvent: new Date().toISOString(),
- }),
- ];
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/sent-first-event/',
- query: {
- project: [1, 2],
- },
- body: {sentFirstEvent: true},
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/projects/',
- body: projectsBody,
- });
- await createWrapper({
- selection: {
- projects: [1, 2],
- environments: [],
- datetime: {period: '14d'},
- },
- organization: OrganizationFixture(),
- });
- expect(screen.queryByTestId('awaiting-events')).not.toBeInTheDocument();
- });
- });
- it('displays a count that represents the current page', function () {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/issues/',
- body: [...new Array(25)].map((_, i) => ({id: i})),
- headers: {
- Link: DEFAULT_LINKS_HEADER,
- 'X-Hits': '500',
- 'X-Max-Hits': '1000',
- },
- });
- parseLinkHeaderSpy.mockReturnValue({
- next: {
- results: true,
- cursor: '',
- href: '',
- },
- previous: {
- results: false,
- cursor: '',
- href: '',
- },
- });
- props = {
- ...props,
- location: {
- query: {
- cursor: 'some cursor',
- page: 1,
- },
- },
- };
- const {router: newRouter} = initializeOrg();
- const {rerender} = render(<IssueListOverview {...props} />, {
- router: newRouter,
- });
- expect(screen.getByText(textWithMarkupMatcher('1-25 of 500'))).toBeInTheDocument();
- parseLinkHeaderSpy.mockReturnValue({
- next: {
- results: true,
- cursor: '',
- href: '',
- },
- previous: {
- results: true,
- cursor: '',
- href: '',
- },
- });
- rerender(<IssueListOverview {...props} />);
- expect(screen.getByText(textWithMarkupMatcher('26-50 of 500'))).toBeInTheDocument();
- });
- describe('project low trends queue alert', function () {
- const {router: newRouter} = initializeOrg();
- beforeEach(function () {
- act(() => ProjectsStore.reset());
- });
- it('does not render event processing alert', function () {
- act(() => ProjectsStore.loadInitialData([project]));
- render(<IssueListOverview {...props} />, {
- router: newRouter,
- });
- expect(screen.queryByText(/event processing/i)).not.toBeInTheDocument();
- });
- describe('renders alert', function () {
- it('for one project', function () {
- act(() =>
- ProjectsStore.loadInitialData([
- {...project, eventProcessing: {symbolicationDegraded: true}},
- ])
- );
- render(<IssueListOverview {...props} />, {router});
- expect(
- screen.getByText(/Event Processing for this project is currently degraded/i)
- ).toBeInTheDocument();
- });
- it('for multiple projects', function () {
- const projectBar = ProjectFixture({
- id: '3560',
- name: 'Bar Project',
- slug: 'project-slug-bar',
- });
- act(() =>
- ProjectsStore.loadInitialData([
- {
- ...project,
- slug: 'project-slug',
- eventProcessing: {symbolicationDegraded: true},
- },
- {
- ...projectBar,
- slug: 'project-slug-bar',
- eventProcessing: {symbolicationDegraded: true},
- },
- ])
- );
- render(
- <IssueListOverview
- {...props}
- selection={{
- ...props.selection,
- projects: [Number(project.id), Number(projectBar.id)],
- }}
- />,
- {
- router: newRouter,
- }
- );
- expect(
- screen.getByText(
- textWithMarkupMatcher(
- 'Event Processing for the project-slug, project-slug-bar projects is currently degraded.'
- )
- )
- ).toBeInTheDocument();
- });
- });
- });
- });
|