import {ProjectFixture} from 'sentry-fixture/project';
import {render, screen} from 'sentry-test/reactTestingLibrary';
import {textWithMarkupMatcher} from 'sentry-test/utils';
import {SampleDrawerHeaderTransaction} from './sampleDrawerHeaderTransaction';
describe('SampleDrawerHeaderTransaction', () => {
it('Links to the transaction summary page', () => {
const project = ProjectFixture();
render();
const $link = screen.getByRole('link');
expect($link).toHaveAccessibleName('/issues');
expect($link).toHaveAttribute(
'href',
'/organizations/org-slug/performance/summary?project=project-slug&transaction=%2Fissues'
);
});
it('Shows transaction method', () => {
const project = ProjectFixture();
render(
);
const $link = screen.getByRole('link');
expect($link).toHaveAccessibleName('GET /issues');
});
it('Strips duplicate transaction method', () => {
const project = ProjectFixture();
render(
);
const $link = screen.getByRole('link');
expect($link).toHaveAccessibleName('GET /issues');
});
it('Shows a prefix', () => {
const project = ProjectFixture();
render(
);
expect(
screen.getByText(textWithMarkupMatcher('Producer:tasks.deliver_mail'))
).toBeInTheDocument();
});
});