123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383 |
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {render, screen, waitForElementToBeRemoved} from 'sentry-test/reactTestingLibrary';
- import {t} from 'sentry/locale';
- import ProjectsStore from 'sentry/stores/projectsStore';
- import EventView from 'sentry/utils/discover/eventView';
- import {
- SPAN_OP_BREAKDOWN_FIELDS,
- SPAN_OP_RELATIVE_BREAKDOWN_FIELD,
- } from 'sentry/utils/discover/fields';
- import EventsTable from 'sentry/views/performance/transactionSummary/transactionEvents/eventsTable';
- type Data = {
- features?: string[];
- };
- export const MOCK_EVENTS_TABLE_DATA = [
- {
- id: 'deadbeef',
- 'user.display': 'uhoh@example.com',
- 'transaction.duration': 400,
- 'project.id': 1,
- timestamp: '2020-05-21T15:31:18+00:00',
- trace: '1234',
- 'span_ops_breakdown.relative': '',
- 'spans.browser': 100,
- 'spans.db': 30,
- 'spans.http': 170,
- 'spans.resource': 100,
- 'spans.total.time': 400,
- },
- {
- id: 'moredeadbeef',
- 'user.display': 'moreuhoh@example.com',
- 'transaction.duration': 600,
- 'project.id': 1,
- timestamp: '2020-05-22T15:31:18+00:00',
- trace: '4321',
- 'span_ops_breakdown.relative': '',
- 'spans.browser': 100,
- 'spans.db': 300,
- 'spans.http': 100,
- 'spans.resource': 100,
- 'spans.total.time': 600,
- },
- ];
- export const EVENTS_TABLE_RESPONSE_FIELDS = [
- 'id',
- 'user.display',
- SPAN_OP_RELATIVE_BREAKDOWN_FIELD,
- 'transaction.duration',
- 'trace',
- 'timestamp',
- 'spans.total.time',
- ...SPAN_OP_BREAKDOWN_FIELDS,
- ];
- function initializeData({features: additionalFeatures = []}: Data = {}) {
- const features = ['discover-basic', 'performance-view', ...additionalFeatures];
- const organization = OrganizationFixture({
- features,
- });
- const initialData = initializeOrg({
- organization,
- router: {
- location: {
- query: {
- transaction: '/performance',
- project: '1',
- transactionCursor: '1:0:0',
- },
- },
- },
- projects: [],
- });
- ProjectsStore.loadInitialData(initialData.projects);
- return initialData;
- }
- describe('Performance GridEditable Table', function () {
- const transactionsListTitles = [
- t('event id'),
- t('user'),
- t('operation duration'),
- t('total duration'),
- t('trace id'),
- t('timestamp'),
- ];
- let fields = EVENTS_TABLE_RESPONSE_FIELDS;
- const organization = OrganizationFixture();
- const transactionName = 'transactionName';
- let data;
- const query =
- 'transaction.duration:<15m event.type:transaction transaction:/api/0/organizations/{organization_slug}/events/';
- beforeEach(function () {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/projects/',
- body: [],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/prompts-activity/',
- body: {},
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/sdk-updates/',
- body: [],
- });
- fields = EVENTS_TABLE_RESPONSE_FIELDS;
- data = MOCK_EVENTS_TABLE_DATA;
- // Total events count response
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events/',
- headers: {
- Link:
- '<http://localhost/api/0/organizations/org-slug/events/?cursor=2:0:0>; rel="next"; results="true"; cursor="2:0:0",' +
- '<http://localhost/api/0/organizations/org-slug/events/?cursor=1:0:0>; rel="previous"; results="false"; cursor="1:0:0"',
- },
- body: {
- meta: {
- fields: {
- 'count()': 'integer',
- },
- },
- data: [{'count()': 100}],
- },
- match: [
- (_url, options) => {
- return options.query?.field?.includes('count()');
- },
- ],
- });
- // Transaction list response
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events/',
- headers: {
- Link:
- '<http://localhost/api/0/organizations/org-slug/events/?cursor=2:0:0>; rel="next"; results="true"; cursor="2:0:0",' +
- '<http://localhost/api/0/organizations/org-slug/events/?cursor=1:0:0>; rel="previous"; results="false"; cursor="1:0:0"',
- },
- body: {
- meta: {
- fields: {
- id: 'string',
- 'user.display': 'string',
- 'transaction.duration': 'duration',
- 'project.id': 'integer',
- timestamp: 'date',
- },
- },
- data,
- },
- match: [
- (_url, options) => {
- return options.query?.field?.includes('user.display');
- },
- ],
- });
- });
- afterEach(function () {
- MockApiClient.clearMockResponses();
- ProjectsStore.reset();
- jest.clearAllMocks();
- });
- it('renders ops breakdown bar when querying for span_ops_breakdown.relative', async function () {
- const initialData = initializeData();
- const eventView = EventView.fromNewQueryWithLocation(
- {
- id: undefined,
- version: 2,
- name: 'transactionName',
- fields,
- query,
- projects: [],
- orderby: '-timestamp',
- },
- initialData.router.location
- );
- render(
- <EventsTable
- eventView={eventView}
- organization={organization}
- routes={initialData.router.routes}
- location={initialData.router.location}
- setError={() => {}}
- columnTitles={transactionsListTitles}
- transactionName={transactionName}
- />,
- {router: initialData.router}
- );
- expect(await screen.findAllByTestId('relative-ops-breakdown')).toHaveLength(2);
- expect(screen.getAllByRole('columnheader')).toHaveLength(6);
- expect(screen.getByText('operation duration')).toBeInTheDocument();
- expect(screen.queryByTestId('grid-head-cell-static')).not.toBeInTheDocument();
- });
- it('renders basic columns without ops breakdown when not querying for span_ops_breakdown.relative', async function () {
- const initialData = initializeData();
- fields = [
- 'id',
- 'user.display',
- 'transaction.duration',
- 'trace',
- 'timestamp',
- 'spans.http',
- ];
- data.forEach(result => {
- delete result['span_ops_breakdown.relative'];
- delete result['spans.resource'];
- delete result['spans.browser'];
- delete result['spans.db'];
- delete result['spans.total.time'];
- });
- const eventView = EventView.fromNewQueryWithLocation(
- {
- id: undefined,
- version: 2,
- name: 'transactionName',
- fields,
- query,
- projects: [],
- orderby: '-timestamp',
- },
- initialData.router.location
- );
- render(
- <EventsTable
- eventView={eventView}
- organization={organization}
- routes={initialData.router.routes}
- location={initialData.router.location}
- setError={() => {}}
- columnTitles={transactionsListTitles}
- transactionName={transactionName}
- />,
- {router: initialData.router}
- );
- expect(await screen.findAllByRole('columnheader')).toHaveLength(6);
- expect(screen.queryByText(SPAN_OP_RELATIVE_BREAKDOWN_FIELD)).not.toBeInTheDocument();
- expect(screen.queryByTestId('relative-ops-breakdown')).not.toBeInTheDocument();
- expect(screen.queryByTestId('grid-head-cell-static')).not.toBeInTheDocument();
- });
- it('renders event id and trace id url', async function () {
- const initialData = initializeData();
- const eventView = EventView.fromNewQueryWithLocation(
- {
- id: undefined,
- version: 2,
- name: 'transactionName',
- fields,
- query,
- projects: [],
- orderby: '-timestamp',
- },
- initialData.router.location
- );
- render(
- <EventsTable
- eventView={eventView}
- organization={organization}
- routes={initialData.router.routes}
- location={initialData.router.location}
- setError={() => {}}
- columnTitles={transactionsListTitles}
- transactionName={transactionName}
- />,
- {router: initialData.router}
- );
- expect(await screen.findByRole('link', {name: 'deadbeef'})).toHaveAttribute(
- 'href',
- '/organizations/org-slug/performance/undefined:deadbeef/?project=1&tab=events&transaction=transactionName&transactionCursor=1%3A0%3A0'
- );
- expect(screen.getByRole('link', {name: '1234'})).toHaveAttribute(
- 'href',
- '/organizations/org-slug/performance/trace/1234/?project=1&tab=events&transaction=%2Fperformance&transactionCursor=1%3A0%3A0'
- );
- });
- it('renders replay id', async function () {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/replay-count/',
- body: {},
- });
- const initialData = initializeData();
- fields = [...fields, 'replayId'];
- data.forEach(result => {
- result.replayId = 'mock_replay_id';
- });
- const eventView = EventView.fromNewQueryWithLocation(
- {
- id: undefined,
- version: 2,
- name: 'transactionName',
- fields,
- query,
- projects: [],
- orderby: '-timestamp',
- },
- initialData.router.location
- );
- render(
- <EventsTable
- eventView={eventView}
- organization={organization}
- routes={initialData.router.routes}
- location={initialData.router.location}
- setError={() => {}}
- columnTitles={transactionsListTitles}
- transactionName={transactionName}
- />,
- {router: initialData.router}
- );
- await waitForElementToBeRemoved(() => screen.queryByTestId('loading-indicator'));
- expect(screen.getAllByRole('columnheader')).toHaveLength(7);
- });
- it('renders profile id', async function () {
- const initialData = initializeData();
- fields = [...fields, 'profile.id'];
- data.forEach(result => {
- result['profile.id'] = 'mock_profile_id';
- });
- const eventView = EventView.fromNewQueryWithLocation(
- {
- id: undefined,
- version: 2,
- name: 'transactionName',
- fields,
- query,
- projects: [],
- orderby: '-timestamp',
- },
- initialData.router.location
- );
- render(
- <EventsTable
- eventView={eventView}
- organization={organization}
- routes={initialData.router.routes}
- location={initialData.router.location}
- setError={() => {}}
- columnTitles={transactionsListTitles}
- transactionName={transactionName}
- />,
- {router: initialData.router}
- );
- await waitForElementToBeRemoved(() => screen.queryByTestId('loading-indicator'));
- expect(screen.getAllByRole('columnheader')).toHaveLength(7);
- });
- });
|