123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368 |
- import {browserHistory} from 'react-router';
- import {enforceActOnUseLegacyStoreHook, mountWithTheme} from 'sentry-test/enzyme';
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {act, render, screen, userEvent, waitFor} from 'sentry-test/reactTestingLibrary';
- import {triggerPress} from 'sentry-test/utils';
- import * as PageFilterPersistence from 'sentry/components/organizations/pageFilters/persistence';
- import ProjectsStore from 'sentry/stores/projectsStore';
- import EventView from 'sentry/utils/discover/eventView';
- import Results from 'sentry/views/eventsV2/results';
- import {OrganizationContext} from 'sentry/views/organizationContext';
- import {DEFAULT_EVENT_VIEW, TRANSACTION_VIEWS} from './data';
- const FIELDS = [
- {
- field: 'title',
- },
- {
- field: 'timestamp',
- },
- {
- field: 'user',
- },
- {
- field: 'count()',
- },
- ];
- const generateFields = () => ({
- field: FIELDS.map(i => i.field),
- });
- describe('Results', function () {
- enforceActOnUseLegacyStoreHook();
- const eventTitle = 'Oh no something bad';
- let eventsResultsMock, mockSaved, eventsStatsMock, mockVisit;
- const mountWithThemeAndOrg = (component, opts, organization) =>
- mountWithTheme(component, {
- ...opts,
- wrappingComponent: ({children}) => (
- <OrganizationContext.Provider value={organization}>
- {children}
- </OrganizationContext.Provider>
- ),
- });
- beforeEach(function () {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/projects/',
- body: [],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/projects-count/',
- body: {myProjects: 10, allProjects: 300},
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/tags/',
- body: [],
- });
- eventsStatsMock = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events-stats/',
- body: {data: [[123, []]]},
- });
- 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/releases/stats/',
- body: [],
- });
- const eventsResultsMockBody = {
- meta: {
- fields: {
- id: 'string',
- title: 'string',
- 'project.name': 'string',
- timestamp: 'date',
- 'user.id': 'string',
- },
- },
- data: [
- {
- id: 'deadbeef',
- 'user.id': 'alberto leal',
- title: eventTitle,
- 'project.name': 'project-slug',
- timestamp: '2019-05-23T22:12:48+00:00',
- },
- ],
- };
- eventsResultsMock = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events/',
- body: eventsResultsMockBody,
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events-meta/',
- body: {
- count: 2,
- },
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events/project-slug:deadbeef/',
- method: 'GET',
- body: {
- id: '1234',
- size: 1200,
- eventID: 'deadbeef',
- title: 'Oh no something bad',
- message: 'It was not good',
- dateCreated: '2019-05-23T22:12:48+00:00',
- entries: [
- {
- type: 'message',
- message: 'bad stuff',
- data: {},
- },
- ],
- tags: [{key: 'browser', value: 'Firefox'}],
- },
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events-facets/',
- body: [
- {
- key: 'release',
- topValues: [{count: 3, value: 'abcd123', name: 'abcd123'}],
- },
- {
- key: 'environment',
- topValues: [{count: 2, value: 'dev', name: 'dev'}],
- },
- {
- key: 'foo',
- topValues: [{count: 1, value: 'bar', name: 'bar'}],
- },
- ],
- });
- mockVisit = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/discover/saved/1/visit/',
- method: 'POST',
- body: [],
- statusCode: 200,
- });
- mockSaved = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/discover/saved/1/',
- method: 'GET',
- statusCode: 200,
- body: {
- id: '1',
- name: 'new',
- projects: [],
- version: 2,
- expired: false,
- dateCreated: '2021-04-08T17:53:25.195782Z',
- dateUpdated: '2021-04-09T12:13:18.567264Z',
- createdBy: {
- id: '2',
- },
- environment: [],
- fields: ['title', 'event.type', 'project', 'user.display', 'timestamp'],
- widths: ['-1', '-1', '-1', '-1', '-1'],
- range: '24h',
- orderby: '-user.display',
- },
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/discover/homepage/',
- method: 'GET',
- statusCode: 200,
- body: {
- id: '2',
- name: '',
- projects: [],
- version: 2,
- expired: false,
- dateCreated: '2021-04-08T17:53:25.195782Z',
- dateUpdated: '2021-04-09T12:13:18.567264Z',
- createdBy: {
- id: '2',
- },
- environment: [],
- fields: ['title', 'event.type', 'project', 'user.display', 'timestamp'],
- widths: ['-1', '-1', '-1', '-1', '-1'],
- range: '24h',
- orderby: '-user.display',
- },
- });
- });
- afterEach(function () {
- jest.clearAllMocks();
- MockApiClient.clearMockResponses();
- act(() => ProjectsStore.reset());
- });
- describe('Events', function () {
- const features = ['discover-basic', 'discover-frontend-use-events-endpoint'];
- it('loads data when moving from an invalid to valid EventView', async function () {
- const organization = TestStubs.Organization({
- features,
- });
- // Start off with an invalid view (empty is invalid)
- const initialData = initializeOrg({
- organization,
- router: {
- location: {query: {query: 'tag:value'}},
- },
- });
- ProjectsStore.loadInitialData([TestStubs.Project()]);
- const wrapper = mountWithThemeAndOrg(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- initialData.routerContext,
- organization
- );
- await tick();
- wrapper.update();
- // No request as eventview was invalid.
- expect(eventsResultsMock).not.toHaveBeenCalled();
- // Should redirect and retain the old query value..
- expect(browserHistory.replace).toHaveBeenCalledWith(
- expect.objectContaining({
- pathname: '/organizations/org-slug/discover/results/',
- query: expect.objectContaining({
- query: 'tag:value',
- }),
- })
- );
- // Update location simulating a redirect.
- wrapper.setProps({location: {query: {...generateFields()}}});
- wrapper.update();
- // Should load events once
- expect(eventsResultsMock).toHaveBeenCalled();
- });
- it('pagination cursor should be cleared when making a search', async function () {
- const organization = TestStubs.Organization({
- features,
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {
- query: {
- ...generateFields(),
- cursor: '0%3A50%3A0',
- },
- },
- },
- });
- ProjectsStore.loadInitialData([TestStubs.Project()]);
- const wrapper = mountWithThemeAndOrg(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- initialData.routerContext,
- organization
- );
- await tick();
- wrapper.update();
- // ensure cursor query string is initially present in the location
- expect(initialData.router.location).toEqual({
- query: {
- ...generateFields(),
- cursor: '0%3A50%3A0',
- },
- });
- // perform a search
- const search = wrapper.find('#smart-search-input').first();
- search.simulate('change', {target: {value: 'geo:canada'}}).simulate('submit', {
- preventDefault() {},
- });
- await tick();
- // should only be called with saved queries
- expect(mockVisit).not.toHaveBeenCalled();
- // cursor query string should be omitted from the query string
- expect(initialData.router.push).toHaveBeenCalledWith({
- pathname: undefined,
- query: {
- ...generateFields(),
- query: 'geo:canada',
- statsPeriod: '14d',
- },
- });
- wrapper.unmount();
- });
- it('renders a y-axis selector', async function () {
- const organization = TestStubs.Organization({
- features,
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {query: {...generateFields(), yAxis: 'count()'}},
- },
- });
- ProjectsStore.loadInitialData([TestStubs.Project()]);
- const wrapper = mountWithThemeAndOrg(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- initialData.routerContext,
- organization
- );
- // y-axis selector is last.
- const selector = wrapper.find('OptionSelector').last();
- // Open the selector
- act(() => {
- triggerPress(selector.find('button[aria-haspopup="listbox"]'));
- });
- await tick();
- wrapper.update();
- // Click one of the options.
- wrapper.find('Option').first().simulate('click');
- await tick();
- wrapper.update();
- const eventsRequest = wrapper.find('EventsChart');
- expect(eventsRequest.props().yAxis).toEqual(['count()']);
- wrapper.unmount();
- });
- it('renders a display selector', async function () {
- const organization = TestStubs.Organization({
- features,
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {query: {...generateFields(), display: 'default', yAxis: 'count'}},
- },
- });
- const wrapper = mountWithThemeAndOrg(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- initialData.routerContext,
- organization
- );
- act(() => ProjectsStore.loadInitialData([TestStubs.Project()]));
- await tick();
- wrapper.update();
- // display selector is first.
- const selector = wrapper.find('OptionSelector').first();
- // Open the selector
- act(() => {
- triggerPress(selector.find('button[aria-haspopup="listbox"]'));
- });
- await tick();
- wrapper.update();
- // Click the 'default' option.
- wrapper.find('Option').first().simulate('click');
- await tick();
- wrapper.update();
- const eventsRequest = wrapper.find('EventsChart').props();
- expect(eventsRequest.disableReleases).toEqual(false);
- expect(eventsRequest.disablePrevious).toEqual(true);
- wrapper.unmount();
- });
- it('excludes top5 options when plan does not include discover-query', async function () {
- const organization = TestStubs.Organization({
- features: ['discover-basic', 'discover-frontend-use-events-endpoint'],
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {query: {...generateFields(), display: 'previous'}},
- },
- });
- ProjectsStore.loadInitialData([TestStubs.Project()]);
- const wrapper = mountWithThemeAndOrg(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- initialData.routerContext,
- organization
- );
- // display selector is first.
- const selector = wrapper.find('OptionSelector').first();
- // Open the selector
- act(() => {
- triggerPress(selector.find('button[aria-haspopup="listbox"]'));
- });
- await tick();
- wrapper.update();
- // Make sure the top5 option isn't present
- const options = wrapper
- .find('Option [data-test-id]')
- .map(item => item.prop('data-test-id'));
- expect(options).not.toContain('top5');
- expect(options).not.toContain('dailytop5');
- expect(options).toContain('default');
- wrapper.unmount();
- });
- it('needs confirmation on long queries', async function () {
- const organization = TestStubs.Organization({
- features: ['discover-basic', 'discover-frontend-use-events-endpoint'],
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {query: {...generateFields(), statsPeriod: '60d', project: '-1'}},
- },
- });
- const wrapper = mountWithThemeAndOrg(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- initialData.routerContext,
- organization
- );
- await tick();
- const results = wrapper.find('Results');
- expect(results.state('needConfirmation')).toEqual(true);
- wrapper.unmount();
- });
- it('needs confirmation on long query with explicit projects', async function () {
- const organization = TestStubs.Organization({
- features: ['discover-basic', 'discover-frontend-use-events-endpoint'],
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {
- query: {
- ...generateFields(),
- statsPeriod: '60d',
- project: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11],
- },
- },
- },
- });
- const wrapper = mountWithThemeAndOrg(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- initialData.routerContext,
- organization
- );
- await tick();
- const results = wrapper.find('Results');
- expect(results.state('needConfirmation')).toEqual(true);
- wrapper.unmount();
- });
- it('does not need confirmation on short queries', async function () {
- const organization = TestStubs.Organization({
- features: ['discover-basic', 'discover-frontend-use-events-endpoint'],
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {query: {...generateFields(), statsPeriod: '30d', project: '-1'}},
- },
- });
- const wrapper = mountWithThemeAndOrg(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- initialData.routerContext,
- organization
- );
- await tick();
- const results = wrapper.find('Results');
- expect(results.state('needConfirmation')).toEqual(false);
- wrapper.unmount();
- });
- it('does not need confirmation with to few projects', async function () {
- const organization = TestStubs.Organization({
- features: ['discover-basic', 'discover-frontend-use-events-endpoint'],
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {
- query: {...generateFields(), statsPeriod: '90d', project: [1, 2, 3, 4]},
- },
- },
- });
- const wrapper = mountWithThemeAndOrg(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- initialData.routerContext,
- organization
- );
- await tick();
- const results = wrapper.find('Results');
- expect(results.state('needConfirmation')).toEqual(false);
- wrapper.unmount();
- });
- it('retrieves saved query', async function () {
- const organization = TestStubs.Organization({
- features,
- slug: 'org-slug',
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {query: {id: '1', statsPeriod: '24h'}},
- },
- });
- const wrapper = mountWithThemeAndOrg(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- initialData.routerContext,
- organization
- );
- await tick();
- const savedQuery = wrapper.find('SavedQueryAPI').state('savedQuery');
- expect(savedQuery.name).toEqual('new');
- expect(savedQuery.id).toEqual('1');
- expect(savedQuery.fields).toEqual([
- 'title',
- 'event.type',
- 'project',
- 'user.display',
- 'timestamp',
- ]);
- expect(savedQuery.projects).toEqual([]);
- expect(savedQuery.range).toEqual('24h');
- expect(mockSaved).toHaveBeenCalled();
- expect(mockVisit).toHaveBeenCalledTimes(1);
- wrapper.unmount();
- });
- it('creates event view from saved query', async function () {
- const organization = TestStubs.Organization({
- features,
- slug: 'org-slug',
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {query: {id: '1', statsPeriod: '24h'}},
- },
- });
- const wrapper = mountWithThemeAndOrg(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- initialData.routerContext,
- organization
- );
- await tick();
- const eventView = wrapper.find('Results').state('eventView');
- expect(eventView.name).toEqual('new');
- expect(eventView.id).toEqual('1');
- expect(eventView.fields.length).toEqual(5);
- expect(eventView.project).toEqual([]);
- expect(eventView.statsPeriod).toEqual('24h');
- expect(eventView.sorts).toEqual([{field: 'user.display', kind: 'desc'}]);
- wrapper.unmount();
- });
- it('overrides saved query params with location query params', async function () {
- const organization = TestStubs.Organization({
- features,
- slug: 'org-slug',
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {
- query: {
- id: '1',
- statsPeriod: '7d',
- project: [2],
- environment: ['production'],
- },
- },
- },
- });
- const wrapper = mountWithThemeAndOrg(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- initialData.routerContext,
- organization
- );
- await tick();
- const eventView = wrapper.find('Results').state('eventView');
- expect(eventView.name).toEqual('new');
- expect(eventView.id).toEqual('1');
- expect(eventView.fields.length).toEqual(5);
- expect(eventView.project).toEqual([2]);
- expect(eventView.statsPeriod).toEqual('7d');
- expect(eventView.environment).toEqual(['production']);
- expect(mockVisit).toHaveBeenCalledTimes(1);
- wrapper.unmount();
- });
- it('updates chart whenever yAxis parameter changes', async function () {
- const organization = TestStubs.Organization({
- features,
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {query: {...generateFields(), yAxis: 'count()'}},
- },
- });
- ProjectsStore.loadInitialData([TestStubs.Project()]);
- const wrapper = mountWithThemeAndOrg(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- initialData.routerContext,
- organization
- );
- // Should load events once
- expect(eventsStatsMock).toHaveBeenCalledTimes(1);
- expect(eventsStatsMock).toHaveBeenNthCalledWith(
- 1,
- '/organizations/org-slug/events-stats/',
- expect.objectContaining({
- query: expect.objectContaining({
- statsPeriod: '14d',
- yAxis: ['count()'],
- }),
- })
- );
- // Update location simulating a browser back button action
- wrapper.setProps({
- location: {
- query: {...generateFields(), yAxis: 'count_unique(user)'},
- },
- });
- await tick();
- wrapper.update();
- // Should load events again
- expect(eventsStatsMock).toHaveBeenCalledTimes(2);
- expect(eventsStatsMock).toHaveBeenNthCalledWith(
- 2,
- '/organizations/org-slug/events-stats/',
- expect.objectContaining({
- query: expect.objectContaining({
- statsPeriod: '14d',
- yAxis: ['count_unique(user)'],
- }),
- })
- );
- wrapper.unmount();
- });
- it('updates chart whenever display parameter changes', async function () {
- const organization = TestStubs.Organization({
- features,
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {query: {...generateFields(), display: 'default', yAxis: 'count()'}},
- },
- });
- ProjectsStore.loadInitialData([TestStubs.Project()]);
- const wrapper = mountWithThemeAndOrg(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- initialData.routerContext,
- organization
- );
- // Should load events once
- expect(eventsStatsMock).toHaveBeenCalledTimes(1);
- expect(eventsStatsMock).toHaveBeenNthCalledWith(
- 1,
- '/organizations/org-slug/events-stats/',
- expect.objectContaining({
- query: expect.objectContaining({
- statsPeriod: '14d',
- yAxis: ['count()'],
- }),
- })
- );
- // Update location simulating a browser back button action
- wrapper.setProps({
- location: {
- query: {...generateFields(), display: 'previous', yAxis: 'count()'},
- },
- });
- await tick();
- wrapper.update();
- // Should load events again
- expect(eventsStatsMock).toHaveBeenCalledTimes(2);
- expect(eventsStatsMock).toHaveBeenNthCalledWith(
- 2,
- '/organizations/org-slug/events-stats/',
- expect.objectContaining({
- query: expect.objectContaining({
- statsPeriod: '28d',
- yAxis: ['count()'],
- }),
- })
- );
- wrapper.unmount();
- });
- it('updates chart whenever display and yAxis parameters change', async function () {
- const organization = TestStubs.Organization({
- features,
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {query: {...generateFields(), display: 'default', yAxis: 'count()'}},
- },
- });
- ProjectsStore.loadInitialData([TestStubs.Project()]);
- const wrapper = mountWithThemeAndOrg(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- initialData.routerContext,
- organization
- );
- // Should load events once
- expect(eventsStatsMock).toHaveBeenCalledTimes(1);
- expect(eventsStatsMock).toHaveBeenNthCalledWith(
- 1,
- '/organizations/org-slug/events-stats/',
- expect.objectContaining({
- query: expect.objectContaining({
- statsPeriod: '14d',
- yAxis: ['count()'],
- }),
- })
- );
- // Update location simulating a browser back button action
- wrapper.setProps({
- location: {
- query: {...generateFields(), display: 'previous', yAxis: 'count_unique(user)'},
- },
- });
- await tick();
- wrapper.update();
- // Should load events again
- expect(eventsStatsMock).toHaveBeenCalledTimes(2);
- expect(eventsStatsMock).toHaveBeenNthCalledWith(
- 2,
- '/organizations/org-slug/events-stats/',
- expect.objectContaining({
- query: expect.objectContaining({
- statsPeriod: '28d',
- yAxis: ['count_unique(user)'],
- }),
- })
- );
- wrapper.unmount();
- });
- it('appends tag value to existing query when clicked', async function () {
- const organization = TestStubs.Organization({
- features,
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {query: {...generateFields(), display: 'default', yAxis: 'count'}},
- },
- });
- const wrapper = mountWithThemeAndOrg(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- initialData.routerContext,
- organization
- );
- act(() => ProjectsStore.loadInitialData([TestStubs.Project()]));
- await tick();
- wrapper.update();
- wrapper.find('[data-test-id="toggle-show-tags"]').first().simulate('click');
- await tick();
- wrapper.update();
- // since environment collides with the environment field, it is wrapped with `tags[...]`
- const envSegment = wrapper.find(
- '[data-test-id="tag-environment-segment-dev"] Segment'
- );
- const envTarget = envSegment.props().to;
- expect(envTarget.query.query).toEqual('tags[environment]:dev');
- const fooSegment = wrapper.find('[data-test-id="tag-foo-segment-bar"] Segment');
- const fooTarget = fooSegment.props().to;
- expect(fooTarget.query.query).toEqual('foo:bar');
- });
- it('respects pinned filters for prebuilt queries', async function () {
- const organization = TestStubs.Organization({
- features: [...features, 'global-views', 'discover-frontend-use-events-endpoint'],
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {query: {...generateFields(), display: 'default', yAxis: 'count'}},
- },
- });
- jest.spyOn(PageFilterPersistence, 'getPageFilterStorage').mockReturnValue({
- state: {
- project: [1],
- environment: [],
- start: null,
- end: null,
- period: '14d',
- utc: null,
- },
- pinnedFilters: new Set(['projects']),
- });
- const wrapper = mountWithThemeAndOrg(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- initialData.routerContext,
- organization
- );
- act(() =>
- ProjectsStore.loadInitialData([
- TestStubs.Project({id: 1, slug: 'Pinned Project'}),
- ])
- );
- await tick();
- wrapper.update();
- const projectPageFilter = wrapper
- .find('[data-test-id="page-filter-project-selector"]')
- .first();
- expect(projectPageFilter.text()).toEqual('Pinned Project');
- });
- it('displays tip when events response contains a tip', async () => {
- eventsResultsMock = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events/',
- body: {
- meta: {
- fields: {},
- tips: {query: 'this is a tip'},
- },
- data: [],
- },
- });
- const organization = TestStubs.Organization({
- features,
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {query: {...generateFields(), yAxis: 'count()'}},
- },
- });
- ProjectsStore.loadInitialData([TestStubs.Project()]);
- render(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- {context: initialData.routerContext, organization}
- );
- await waitFor(() => {
- expect(eventsResultsMock).toHaveBeenCalled();
- });
- expect(screen.getByText('this is a tip')).toBeInTheDocument();
- });
- });
- it('renders metric fallback alert', async function () {
- const organization = TestStubs.Organization({
- features: ['discover-basic', 'discover-frontend-use-events-endpoint'],
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {query: {fromMetric: true, id: '1'}},
- },
- });
- ProjectsStore.loadInitialData([TestStubs.Project()]);
- const wrapper = mountWithThemeAndOrg(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- initialData.routerContext,
- organization
- );
- await tick();
- wrapper.update();
- expect(wrapper.find('Alert').find('Message').text()).toEqual(
- "You've navigated to this page from a performance metric widget generated from processed events. The results here only show indexed events."
- );
- });
- it('renders unparameterized data banner', async function () {
- const organization = TestStubs.Organization({
- features: ['discover-basic', 'discover-frontend-use-events-endpoint'],
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {query: {showUnparameterizedBanner: true, id: '1'}},
- },
- });
- ProjectsStore.loadInitialData([TestStubs.Project()]);
- const wrapper = mountWithThemeAndOrg(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- initialData.routerContext,
- organization
- );
- await tick();
- wrapper.update();
- expect(wrapper.find('Alert').find('Message').text()).toEqual(
- 'These are unparameterized transactions. To better organize your transactions, set transaction names manually.'
- );
- });
- it('updates the homepage query with up to date eventView when Set as Default is clicked', async () => {
- const mockHomepageUpdate = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/discover/homepage/',
- method: 'PUT',
- statusCode: 200,
- });
- const organization = TestStubs.Organization({
- features: [
- 'discover-basic',
- 'discover-query',
- 'discover-query-builder-as-landing-page',
- 'discover-frontend-use-events-endpoint',
- ],
- });
- const initialData = initializeOrg({
- organization,
- router: {
- // These fields take priority and should be sent in the request
- location: {query: {field: ['title', 'user'], id: '1'}},
- },
- });
- ProjectsStore.loadInitialData([TestStubs.Project()]);
- render(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- {context: initialData.routerContext, organization}
- );
- await waitFor(() =>
- expect(screen.getByRole('button', {name: /set as default/i})).toBeEnabled()
- );
- userEvent.click(screen.getByText('Set as Default'));
- expect(mockHomepageUpdate).toHaveBeenCalledWith(
- '/organizations/org-slug/discover/homepage/',
- expect.objectContaining({
- data: expect.objectContaining({
- fields: ['title', 'user'],
- }),
- })
- );
- });
- it('Changes the Use as Discover button to a reset button for saved query', async () => {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/discover/homepage/',
- method: 'PUT',
- statusCode: 200,
- body: {
- id: '2',
- name: '',
- projects: [],
- version: 2,
- expired: false,
- dateCreated: '2021-04-08T17:53:25.195782Z',
- dateUpdated: '2021-04-09T12:13:18.567264Z',
- createdBy: {
- id: '2',
- },
- environment: [],
- fields: ['title', 'event.type', 'project', 'user.display', 'timestamp'],
- widths: ['-1', '-1', '-1', '-1', '-1'],
- range: '14d',
- orderby: '-user.display',
- },
- });
- const organization = TestStubs.Organization({
- features: [
- 'discover-basic',
- 'discover-query',
- 'discover-query-builder-as-landing-page',
- 'discover-frontend-use-events-endpoint',
- ],
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {query: {id: '1'}},
- },
- });
- ProjectsStore.loadInitialData([TestStubs.Project()]);
- const {rerender} = render(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- {context: initialData.routerContext, organization}
- );
- await waitFor(() =>
- expect(screen.getByRole('button', {name: /set as default/i})).toBeEnabled()
- );
- userEvent.click(screen.getByText('Set as Default'));
- expect(await screen.findByText('Remove Default')).toBeInTheDocument();
- userEvent.click(screen.getByText('Total Period'));
- userEvent.click(screen.getByText('Previous Period'));
- const rerenderData = initializeOrg({
- organization,
- router: {
- location: {query: {...initialData.router.location.query, display: 'previous'}},
- },
- });
- rerender(
- <Results
- organization={organization}
- location={rerenderData.router.location}
- router={rerenderData.router}
- />
- );
- screen.getByText('Previous Period');
- expect(await screen.findByText('Set as Default')).toBeInTheDocument();
- });
- it('Changes the Use as Discover button to a reset button for prebuilt query', async () => {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/discover/homepage/',
- method: 'PUT',
- statusCode: 200,
- body: {...TRANSACTION_VIEWS[0], name: ''},
- });
- const organization = TestStubs.Organization({
- features: [
- 'discover-basic',
- 'discover-query',
- 'discover-query-builder-as-landing-page',
- 'discover-frontend-use-events-endpoint',
- ],
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {
- ...TestStubs.location(),
- query: {
- ...EventView.fromNewQueryWithLocation(
- TRANSACTION_VIEWS[0],
- TestStubs.location()
- ).generateQueryStringObject(),
- },
- },
- },
- });
- ProjectsStore.loadInitialData([TestStubs.Project()]);
- const {rerender} = render(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- {context: initialData.routerContext, organization}
- );
- await screen.findAllByText(TRANSACTION_VIEWS[0].name);
- userEvent.click(screen.getByText('Set as Default'));
- expect(await screen.findByText('Remove Default')).toBeInTheDocument();
- userEvent.click(screen.getByText('Total Period'));
- userEvent.click(screen.getByText('Previous Period'));
- const rerenderData = initializeOrg({
- organization,
- router: {
- location: {query: {...initialData.router.location.query, display: 'previous'}},
- },
- });
- rerender(
- <Results
- organization={organization}
- location={rerenderData.router.location}
- router={rerenderData.router}
- />
- );
- screen.getByText('Previous Period');
- expect(await screen.findByText('Set as Default')).toBeInTheDocument();
- });
- it('links back to the homepage through the Discover breadcrumb', () => {
- const organization = TestStubs.Organization({
- features: [
- 'discover-basic',
- 'discover-query',
- 'discover-query-builder-as-landing-page',
- 'discover-frontend-use-events-endpoint',
- ],
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {query: {id: '1'}},
- },
- });
- ProjectsStore.loadInitialData([TestStubs.Project()]);
- render(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- {context: initialData.routerContext, organization}
- );
- expect(screen.getByText('Discover')).toHaveAttribute(
- 'href',
- expect.stringMatching(new RegExp('^/organizations/org-slug/discover/homepage/'))
- );
- });
- it('links back to the Saved Queries through the Saved Queries breadcrumb', () => {
- const organization = TestStubs.Organization({
- features: [
- 'discover-basic',
- 'discover-query',
- 'discover-query-builder-as-landing-page',
- 'discover-frontend-use-events-endpoint',
- ],
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {query: {id: '1'}},
- },
- });
- render(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- {context: initialData.routerContext, organization}
- );
- expect(screen.getByRole('link', {name: 'Saved Queries'})).toHaveAttribute(
- 'href',
- expect.stringMatching(new RegExp('^/organizations/org-slug/discover/queries/'))
- );
- });
- it('allows users to Set As Default on the All Events query', () => {
- const organization = TestStubs.Organization({
- features: [
- 'discover-basic',
- 'discover-query',
- 'discover-query-builder-as-landing-page',
- 'discover-frontend-use-events-endpoint',
- ],
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {
- ...TestStubs.location(),
- query: {
- ...EventView.fromNewQueryWithLocation(
- DEFAULT_EVENT_VIEW,
- TestStubs.location()
- ).generateQueryStringObject(),
- },
- },
- },
- });
- ProjectsStore.loadInitialData([TestStubs.Project()]);
- render(
- <Results
- organization={organization}
- location={initialData.router.location}
- router={initialData.router}
- />,
- {context: initialData.routerContext, organization}
- );
- expect(screen.getByTestId('set-as-default')).toBeEnabled();
- });
- });
|