123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- import {render, screen, userEvent, within} from 'sentry-test/reactTestingLibrary';
- import QuickTraceMeta from 'sentry/views/performance/transactionDetails/quickTraceMeta';
- describe('QuickTraceMeta', function () {
- const routerContext = TestStubs.routerContext();
- const location = routerContext.context.location;
- const organization = TestStubs.Organization({features: ['performance-view']});
- const project = TestStubs.Project({platform: 'javascript'});
- const event = TestStubs.Event({contexts: {trace: {trace_id: 'a'.repeat(32)}}});
- const emptyQuickTrace = {
- isLoading: false,
- error: null,
- trace: [],
- type: 'empty',
- currentEvent: null,
- };
- const emptyTraceMeta = {
- projects: 0,
- transactions: 0,
- errors: 0,
- };
- it('renders basic UI', function () {
- render(
- <QuickTraceMeta
- event={event}
- project={project}
- organization={organization}
- location={location}
- quickTrace={emptyQuickTrace}
- traceMeta={emptyTraceMeta}
- anchor="left"
- errorDest="issue"
- transactionDest="performance"
- />
- );
- expect(screen.getByRole('heading', {name: 'Trace Navigator'})).toBeInTheDocument();
- expect(screen.getByTestId('quick-trace-body')).toBeInTheDocument();
- expect(screen.getByTestId('quick-trace-footer')).toHaveTextContent(
- `View Full Trace: ${'a'.repeat(8)} (0 events)`
- );
- });
- it('renders placeholder while loading', function () {
- render(
- <QuickTraceMeta
- event={event}
- project={project}
- organization={organization}
- location={location}
- quickTrace={{
- ...emptyQuickTrace,
- isLoading: true,
- }}
- traceMeta={emptyTraceMeta}
- anchor="left"
- errorDest="issue"
- transactionDest="performance"
- />
- );
- expect(screen.getByRole('heading', {name: 'Trace Navigator'})).toBeInTheDocument();
- const qtBody = screen.getByTestId('quick-trace-body');
- expect(within(qtBody).getByTestId('loading-placeholder')).toBeInTheDocument();
- expect(screen.getByTestId('quick-trace-footer')).toHaveTextContent(
- `View Full Trace: ${'a'.repeat(8)} (0 events)`
- );
- });
- it('renders errors', function () {
- render(
- <QuickTraceMeta
- event={event}
- project={project}
- organization={organization}
- location={location}
- quickTrace={{
- ...emptyQuickTrace,
- error: 'something bad',
- }}
- traceMeta={emptyTraceMeta}
- anchor="left"
- errorDest="issue"
- transactionDest="performance"
- />
- );
- expect(screen.getByRole('heading', {name: 'Trace Navigator'})).toBeInTheDocument();
- expect(screen.getByTestId('quick-trace-body')).toHaveTextContent('\u2014');
- expect(screen.getByTestId('quick-trace-footer')).toHaveTextContent(
- `View Full Trace: ${'a'.repeat(8)} (0 events)`
- );
- });
- it('renders missing trace when trace id is not present', function () {
- const newEvent = TestStubs.Event();
- render(
- <QuickTraceMeta
- event={newEvent}
- project={project}
- organization={organization}
- location={location}
- quickTrace={emptyQuickTrace}
- traceMeta={emptyTraceMeta}
- anchor="left"
- errorDest="issue"
- transactionDest="performance"
- />
- );
- expect(screen.getByRole('heading', {name: 'Trace Navigator'})).toBeInTheDocument();
- expect(screen.getByTestId('quick-trace-body')).toHaveTextContent('Missing Trace');
- expect(screen.getByTestId('quick-trace-footer')).toHaveTextContent('Read the docs');
- });
- it('renders missing trace with hover card when feature disabled', async function () {
- const newEvent = TestStubs.Event();
- const newOrg = TestStubs.Organization();
- render(
- <QuickTraceMeta
- event={newEvent}
- project={project}
- organization={newOrg}
- location={location}
- quickTrace={emptyQuickTrace}
- traceMeta={emptyTraceMeta}
- anchor="left"
- errorDest="issue"
- transactionDest="performance"
- />,
- {context: routerContext}
- );
- expect(screen.getByRole('heading', {name: 'Trace Navigator'})).toBeInTheDocument();
- expect(screen.getByTestId('quick-trace-body')).toHaveTextContent('Missing Trace');
- const qtFooter = screen.getByTestId('quick-trace-footer');
- expect(qtFooter).toHaveTextContent('Read the docs');
- userEvent.hover(qtFooter.firstChild);
- expect(
- await screen.findByText('Requires performance monitoring.')
- ).toBeInTheDocument();
- });
- it('does not render when platform does not support tracing', function () {
- const newProject = TestStubs.Project();
- const newEvent = TestStubs.Event();
- const result = render(
- <QuickTraceMeta
- event={newEvent}
- project={newProject}
- organization={organization}
- location={location}
- quickTrace={emptyQuickTrace}
- traceMeta={emptyTraceMeta}
- anchor="left"
- errorDest="issue"
- transactionDest="performance"
- />
- );
- expect(result.container).toBeEmptyDOMElement();
- });
- });
|