123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {ProjectFixture} from 'sentry-fixture/project';
- import {render, screen, userEvent, waitFor} from 'sentry-test/reactTestingLibrary';
- import selectEvent from 'sentry-test/selectEvent';
- import {
- makeClosableHeader,
- makeCloseButton,
- ModalBody,
- ModalFooter,
- } from 'sentry/components/globalModal/components';
- import ProjectsStore from 'sentry/stores/projectsStore';
- import type {Organization} from 'sentry/types/organization';
- import EventView from 'sentry/utils/discover/eventView';
- import TransactionThresholdModal, {
- TransactionThresholdMetric,
- } from 'sentry/views/performance/transactionSummary/transactionThresholdModal';
- function mountModal(
- eventView: EventView,
- organization: Organization,
- onApply: React.ComponentProps<typeof TransactionThresholdModal>['onApply']
- ) {
- render(
- <TransactionThresholdModal
- Body={ModalBody}
- closeModal={jest.fn()}
- CloseButton={makeCloseButton(jest.fn())}
- Header={makeClosableHeader(jest.fn())}
- Footer={ModalFooter}
- eventView={eventView}
- organization={organization}
- transactionName="transaction/threshold"
- transactionThreshold={400}
- transactionThresholdMetric={TransactionThresholdMetric.LARGEST_CONTENTFUL_PAINT}
- onApply={onApply}
- />
- );
- }
- describe('TransactionThresholdModal', function () {
- const organization = OrganizationFixture({features: ['performance-view']});
- const project = ProjectFixture();
- const eventView = EventView.fromSavedQuery({
- id: '1',
- version: 2,
- name: 'my query',
- fields: ['count()'],
- orderby: '-count',
- query: '',
- projects: [parseInt(project.id, 10)],
- start: '2019-10-01T00:00:00',
- end: '2019-10-02T00:00:00',
- environment: [],
- });
- const onApply = jest.fn();
- let postTransactionThresholdMock;
- beforeEach(function () {
- MockApiClient.clearMockResponses();
- ProjectsStore.loadInitialData([project]);
- postTransactionThresholdMock = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/project-transaction-threshold-override/',
- method: 'POST',
- body: {
- data: [],
- },
- });
- });
- it('can update threshold', async function () {
- mountModal(eventView, organization, onApply);
- await userEvent.clear(await screen.findByRole('spinbutton'));
- await userEvent.type(screen.getByRole('spinbutton'), '1000{enter}');
- await userEvent.click(screen.getByTestId('apply-threshold'));
- await waitFor(() => {
- expect(postTransactionThresholdMock).toHaveBeenCalledWith(
- '/organizations/org-slug/project-transaction-threshold-override/',
- expect.objectContaining({
- data: {metric: 'lcp', threshold: '1000', transaction: 'transaction/threshold'},
- })
- );
- });
- });
- it('can update metric', async function () {
- mountModal(eventView, organization, onApply);
- await selectEvent.select(
- await screen.findByText('Largest Contentful Paint'),
- 'Transaction Duration'
- );
- await userEvent.click(screen.getByTestId('apply-threshold'));
- await waitFor(() => {
- expect(postTransactionThresholdMock).toHaveBeenCalledWith(
- '/organizations/org-slug/project-transaction-threshold-override/',
- expect.objectContaining({
- data: {
- metric: 'duration',
- threshold: 400,
- transaction: 'transaction/threshold',
- },
- })
- );
- });
- });
- it('can clear metrics', async function () {
- mountModal(eventView, organization, onApply);
- const deleteTransactionThresholdMock = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/project-transaction-threshold-override/',
- method: 'DELETE',
- });
- const getProjectThresholdMock = MockApiClient.addMockResponse({
- url: '/projects/org-slug/project-slug/transaction-threshold/configure/',
- method: 'GET',
- body: {
- threshold: '200',
- metric: 'duration',
- },
- });
- await userEvent.click(await screen.findByTestId('reset-all'));
- expect(deleteTransactionThresholdMock).toHaveBeenCalledTimes(1);
- // Replace with project fallback
- await waitFor(() => {
- expect(getProjectThresholdMock).toHaveBeenCalledTimes(1);
- });
- });
- });
|