123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378 |
- import {browserHistory} from 'react-router';
- import {ProjectFixture} from 'sentry-fixture/project';
- import {initializeData as _initializeData} from 'sentry-test/performance/initializePerformanceData';
- import {render, screen, userEvent, within} from 'sentry-test/reactTestingLibrary';
- import ProjectsStore from 'sentry/stores/projectsStore';
- import EventView from 'sentry/utils/discover/eventView';
- import {MEPSettingProvider} from 'sentry/utils/performance/contexts/metricsEnhancedSetting';
- import {MutableSearch} from 'sentry/utils/tokenizeSearch';
- import {OrganizationContext} from 'sentry/views/organizationContext';
- import Table from 'sentry/views/performance/table';
- const FEATURES = ['performance-view'];
- const initializeData = (settings = {}, features: string[] = []) => {
- const projects = [
- ProjectFixture({id: '1', slug: '1'}),
- ProjectFixture({id: '2', slug: '2'}),
- ];
- return _initializeData({
- features: [...FEATURES, ...features],
- projects,
- selectedProject: projects[0],
- ...settings,
- });
- };
- function WrappedComponent({data, ...rest}) {
- return (
- <OrganizationContext.Provider value={data.organization}>
- <MEPSettingProvider>
- <Table
- organization={data.organization}
- location={data.router.location}
- setError={jest.fn()}
- summaryConditions=""
- {...data}
- {...rest}
- />
- </MEPSettingProvider>
- </OrganizationContext.Provider>
- );
- }
- function mockEventView(data) {
- const eventView = new EventView({
- id: '1',
- name: 'my query',
- fields: [
- {
- field: 'team_key_transaction',
- },
- {
- field: 'transaction',
- },
- {
- field: 'project',
- },
- {
- field: 'tpm()',
- },
- {
- field: 'p50()',
- },
- {
- field: 'p95()',
- },
- {
- field: 'failure_rate()',
- },
- {
- field: 'apdex()',
- },
- {
- field: 'count_unique(user)',
- },
- {
- field: 'count_miserable(user)',
- },
- {
- field: 'user_misery()',
- },
- ],
- sorts: [{field: 'tpm ', kind: 'desc'}],
- query: 'event.type:transaction transaction:/api*',
- project: [data.projects[0].id, data.projects[1].id],
- start: '2019-10-01T00:00:00',
- end: '2019-10-02T00:00:00',
- statsPeriod: '14d',
- environment: [],
- additionalConditions: new MutableSearch(''),
- createdBy: undefined,
- interval: undefined,
- display: '',
- team: [],
- topEvents: undefined,
- yAxis: undefined,
- });
- return eventView;
- }
- describe('Performance > Table', function () {
- let eventsMock;
- beforeEach(function () {
- browserHistory.push = jest.fn();
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/projects/',
- body: [],
- });
- const eventsMetaFieldsMock = {
- user: 'string',
- transaction: 'string',
- project: 'string',
- tpm: 'number',
- p50: 'number',
- p95: 'number',
- failure_rate: 'number',
- apdex: 'number',
- count_unique_user: 'number',
- count_miserable_user: 'number',
- user_misery: 'number',
- };
- const eventsBodyMock = [
- {
- team_key_transaction: 1,
- transaction: '/apple/cart',
- project: '2',
- user: 'uhoh@example.com',
- tpm: 30,
- p50: 100,
- p95: 500,
- failure_rate: 0.1,
- apdex: 0.6,
- count_unique_user: 1000,
- count_miserable_user: 122,
- user_misery: 0.114,
- project_threshold_config: ['duration', 300],
- },
- {
- team_key_transaction: 0,
- transaction: '/apple/checkout',
- project: '1',
- user: 'uhoh@example.com',
- tpm: 30,
- p50: 100,
- p95: 500,
- failure_rate: 0.1,
- apdex: 0.6,
- count_unique_user: 1000,
- count_miserable_user: 122,
- user_misery: 0.114,
- project_threshold_config: ['duration', 300],
- },
- {
- team_key_transaction: 0,
- transaction: '<< unparameterized >>',
- project: '3',
- user: 'uhoh@example.com',
- tpm: 1,
- p50: 100,
- p95: 500,
- failure_rate: 0.1,
- apdex: 0.6,
- count_unique_user: 500,
- count_miserable_user: 31,
- user_misery: 0.514,
- project_threshold_config: ['duration', 300],
- },
- ];
- eventsMock = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events/',
- body: {
- meta: {fields: eventsMetaFieldsMock},
- data: eventsBodyMock,
- },
- });
- MockApiClient.addMockResponse({
- method: 'GET',
- url: `/organizations/org-slug/key-transactions-list/`,
- body: [],
- });
- });
- afterEach(function () {
- MockApiClient.clearMockResponses();
- });
- describe('with events', function () {
- it('renders correct cell actions without feature', async function () {
- const data = initializeData({
- query: 'event.type:transaction transaction:/api*',
- });
- ProjectsStore.loadInitialData(data.organization.projects);
- render(
- <WrappedComponent
- data={data}
- eventView={mockEventView(data)}
- setError={jest.fn()}
- summaryConditions=""
- projects={data.projects}
- />,
- {context: data.routerContext}
- );
- const rows = await screen.findAllByTestId('grid-body-row');
- const transactionCells = within(rows[0]).getAllByTestId('grid-body-cell');
- const transactionCell = transactionCells[1];
- const link = within(transactionCell).getByRole('link', {name: '/apple/cart'});
- expect(link).toHaveAttribute(
- 'href',
- '/organizations/org-slug/performance/summary/?end=2019-10-02T00%3A00%3A00&project=2&query=&referrer=performance-transaction-summary&start=2019-10-01T00%3A00%3A00&statsPeriod=14d&transaction=%2Fapple%2Fcart&unselectedSeries=p100%28%29&unselectedSeries=avg%28%29'
- );
- const cellActionContainers = screen.getAllByTestId('cell-action-container');
- expect(cellActionContainers).toHaveLength(27); // 9 cols x 3 rows
- const cellActionTriggers = screen.getAllByRole('button', {name: 'Actions'});
- expect(cellActionTriggers[8]).toBeInTheDocument();
- await userEvent.click(cellActionTriggers[8]);
- expect(
- screen.getByRole('menuitemradio', {name: 'Add to filter'})
- ).toBeInTheDocument();
- expect(
- screen.getByRole('menuitemradio', {name: 'Exclude from filter'})
- ).toBeInTheDocument();
- await userEvent.keyboard('{Escape}'); // Close actions menu
- const transactionCellTrigger = cellActionTriggers[0]; // Transaction name
- expect(transactionCellTrigger).toBeInTheDocument();
- await userEvent.click(transactionCellTrigger);
- expect(browserHistory.push).toHaveBeenCalledTimes(0);
- await userEvent.click(screen.getByRole('menuitemradio', {name: 'Add to filter'}));
- expect(browserHistory.push).toHaveBeenCalledTimes(1);
- expect(browserHistory.push).toHaveBeenNthCalledWith(1, {
- pathname: undefined,
- query: expect.objectContaining({
- query: 'transaction:/apple/cart',
- }),
- });
- });
- it('hides cell actions when withStaticFilters is true', function () {
- const data = initializeData({
- query: 'event.type:transaction transaction:/api*',
- });
- render(
- <WrappedComponent
- data={data}
- eventView={mockEventView(data)}
- setError={jest.fn()}
- summaryConditions=""
- projects={data.projects}
- withStaticFilters
- />
- );
- const cellActionContainers = screen.queryByTestId('cell-action-container');
- expect(cellActionContainers).not.toBeInTheDocument();
- });
- it('shows unparameterized tooltip when project only recently sent events', async function () {
- const projects = [
- ProjectFixture({id: '1', slug: '1'}),
- ProjectFixture({id: '2', slug: '2'}),
- ProjectFixture({id: '3', slug: '3', firstEvent: new Date().toISOString()}),
- ];
- const data = initializeData({
- query: 'event.type:transaction transaction:/api*',
- projects,
- });
- ProjectsStore.loadInitialData(data.organization.projects);
- render(
- <WrappedComponent
- data={data}
- eventView={mockEventView(data)}
- setError={jest.fn()}
- summaryConditions=""
- projects={data.projects}
- />
- );
- const indicatorContainer = await screen.findByTestId('unparameterized-indicator');
- expect(indicatorContainer).toBeInTheDocument();
- });
- it('does not show unparameterized tooltip when project only recently sent events', async function () {
- const projects = [
- ProjectFixture({id: '1', slug: '1'}),
- ProjectFixture({id: '2', slug: '2'}),
- ProjectFixture({
- id: '3',
- slug: '3',
- firstEvent: new Date(+new Date() - 25920e5).toISOString(),
- }),
- ];
- const data = initializeData({
- query: 'event.type:transaction transaction:/api*',
- projects,
- });
- ProjectsStore.loadInitialData(data.organization.projects);
- render(
- <WrappedComponent
- data={data}
- eventView={mockEventView(data)}
- setError={jest.fn()}
- summaryConditions=""
- projects={data.projects}
- />
- );
- await screen.findByTestId('grid-editable');
- const indicatorContainer = screen.queryByTestId('unparameterized-indicator');
- expect(indicatorContainer).not.toBeInTheDocument();
- });
- it('sends MEP param when setting enabled', function () {
- const data = initializeData(
- {
- query: 'event.type:transaction transaction:/api*',
- },
- ['performance-use-metrics']
- );
- render(
- <WrappedComponent
- data={data}
- eventView={mockEventView(data)}
- setError={jest.fn()}
- summaryConditions=""
- projects={data.projects}
- isMEPEnabled
- />
- );
- expect(eventsMock).toHaveBeenCalledTimes(1);
- expect(eventsMock).toHaveBeenNthCalledWith(
- 1,
- expect.anything(),
- expect.objectContaining({
- query: expect.objectContaining({
- environment: [],
- field: [
- 'team_key_transaction',
- 'transaction',
- 'project',
- 'tpm()',
- 'p50()',
- 'p95()',
- 'failure_rate()',
- 'apdex()',
- 'count_unique(user)',
- 'count_miserable(user)',
- 'user_misery()',
- ],
- dataset: 'metrics',
- per_page: 50,
- project: ['1', '2'],
- query: 'event.type:transaction transaction:/api*',
- referrer: 'api.performance.landing-table',
- sort: '-team_key_transaction',
- statsPeriod: '14d',
- }),
- })
- );
- });
- });
- });
|