1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- import {Fragment} from 'react';
- import {render, screen} from 'sentry-test/reactTestingLibrary';
- import {Client} from 'sentry/api';
- import TraceLiteQuery from 'sentry/utils/performance/quickTrace/traceLiteQuery';
- const traceId = 'abcdef1234567890';
- const eventId = '0987654321fedcba';
- function renderTraceLite({isLoading, error, trace, type}) {
- if (isLoading) {
- return 'loading';
- }
- if (error !== null) {
- return error;
- }
- return (
- <Fragment>
- <div key="type" data-test-id="type">
- {type}
- </div>
- <div key="trace" data-test-id="trace">
- {trace.length}
- </div>
- </Fragment>
- );
- }
- describe('TraceLiteQuery', function () {
- let api, location;
- beforeEach(function () {
- api = new Client();
- location = {
- pathname: '/',
- query: {},
- };
- });
- it('fetches data on mount and passes the event id', async function () {
- const getMock = MockApiClient.addMockResponse({
- url: `/organizations/test-org/events-trace-light/${traceId}/`,
- body: [],
- match: [MockApiClient.matchQuery({event_id: eventId})],
- });
- render(
- <TraceLiteQuery
- api={api}
- traceId={traceId}
- eventId={eventId}
- location={location}
- orgSlug="test-org"
- statsPeriod="24h"
- >
- {renderTraceLite}
- </TraceLiteQuery>
- );
- expect(await screen.findByText('partial')).toBeInTheDocument();
- expect(getMock).toHaveBeenCalledTimes(1);
- });
- });
|