1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- import {act, render, screen} from 'sentry-test/reactTestingLibrary';
- import ProjectsStore from 'sentry/stores/projectsStore';
- import EventDetails from 'sentry/views/performance/transactionDetails';
- const alertText =
- 'You are viewing a sample transaction. Configure performance to start viewing real transactions.';
- describe('EventDetails', () => {
- const project = TestStubs.Project();
- const organization = TestStubs.Organization({
- features: ['performance-view'],
- projects: [project],
- });
- beforeEach(() => {
- ProjectsStore.loadInitialData([project]);
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/projects/`,
- statusCode: 200,
- body: [],
- });
- MockApiClient.addMockResponse({
- url: `/projects/${organization.slug}/latest/events/1/grouping-info/`,
- statusCode: 200,
- body: {},
- });
- MockApiClient.addMockResponse({
- url: `/projects/${organization.slug}/latest/events/1/committers/`,
- statusCode: 200,
- body: [],
- });
- });
- afterEach(() => {
- ProjectsStore.reset();
- MockApiClient.clearMockResponses();
- });
- it('renders alert for sample transaction', async () => {
- const event = TestStubs.Event();
- event.tags.push({key: 'sample_event', value: 'yes'});
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/latest/`,
- statusCode: 200,
- body: {
- ...event,
- },
- });
- render(
- <EventDetails
- {...TestStubs.routeComponentProps({params: {eventSlug: 'latest'}})}
- />,
- {organization}
- );
- expect(screen.getByText(alertText)).toBeInTheDocument();
- // Expect stores to be updated
- await act(tick);
- });
- it('does not reender alert if already received transaction', async () => {
- const event = TestStubs.Event();
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/latest/`,
- statusCode: 200,
- body: {
- ...event,
- },
- });
- render(
- <EventDetails
- {...TestStubs.routeComponentProps({params: {eventSlug: 'latest'}})}
- />,
- {organization}
- );
- expect(screen.queryByText(alertText)).not.toBeInTheDocument();
- // Expect stores to be updated
- await act(tick);
- });
- });
|