123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {
- render,
- renderGlobalModal,
- screen,
- userEvent,
- } from 'sentry-test/reactTestingLibrary';
- import type {MetricsExtractionRule} from 'sentry/types/metrics';
- import {MetricsExtractionRulesTable} from './metricsExtractionRulesTable';
- describe('Metrics Extraction Rules Table', function () {
- const {project, organization} = initializeOrg();
- beforeEach(function () {
- MockApiClient.addMockResponse({
- url: `/projects/${organization.slug}/${project.id}/metrics/extraction-rules/`,
- method: 'GET',
- body: [
- {
- spanAttribute: 'span.duration',
- projectId: Number(project.id),
- createdById: null,
- dateAdded: '2021-09-29T20:00:00',
- dateUpdated: '2021-09-29T20:00:00',
- aggregates: [
- 'count',
- 'count_unique',
- 'min',
- 'max',
- 'sum',
- 'avg',
- 'p50',
- 'p75',
- 'p95',
- 'p99',
- ],
- unit: 'millisecond',
- tags: ['release', 'environment', 'sdk.name', 'span.op'],
- conditions: [
- {
- id: 1,
- value: '',
- mris: [
- 'g:custom/span_attribute_1@millisecond',
- 's:custom/span_attribute_1@millisecond',
- 'd:custom/span_attribute_1@millisecond',
- 'c:custom/span_attribute_1@millisecond',
- ],
- },
- ],
- } satisfies MetricsExtractionRule,
- ],
- });
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/spans/fields/`,
- body: [],
- });
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/metrics/query/`,
- method: 'POST',
- body: {data: []},
- });
- });
- it('shall open the modal to edit a rule by clicking on edit', async function () {
- render(<MetricsExtractionRulesTable project={project} />);
- renderGlobalModal();
- const editButton = await screen.findByLabelText('Edit metric');
- await userEvent.click(editButton);
- expect(
- await screen.findByRole('heading', {name: /span.duration/})
- ).toBeInTheDocument();
- });
- });
|