123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313 |
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {render, screen} from 'sentry-test/reactTestingLibrary';
- import {textWithMarkupMatcher} from 'sentry-test/utils';
- import type {MetricsSummary} from 'sentry/components/events/interfaces/spans/types';
- import type {
- MetricsQueryApiResponse,
- MetricsQueryApiResponseLastMeta,
- } from 'sentry/types/metrics';
- import {CustomMetricsEventData} from 'sentry/views/metrics/customMetricsEventData';
- const organization = OrganizationFixture({features: ['custom-metrics']});
- describe('CustomMetricsEventData', () => {
- beforeEach(() => {
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/metrics/query/`,
- method: 'POST',
- body: {
- data: [[{by: {}, series: [], totals: 2}]],
- meta: [
- [
- {
- unit: 'nanoseconds',
- scaling_factor: 1000000,
- group_bys: {},
- limit: null,
- order: 'asc',
- } as MetricsQueryApiResponseLastMeta,
- ],
- ],
- end: '2023-09-01T01:00:00Z',
- intervals: [],
- start: '2023-09-01T00:00:00Z',
- } satisfies MetricsQueryApiResponse,
- });
- });
- it('renders empty (no feature flag)', () => {
- const metricsSummary: MetricsSummary = {
- 'd:custom/my.metric@second': [
- {
- count: 2,
- min: 1,
- max: 2,
- sum: 3,
- tags: {
- foo: 'bar',
- },
- },
- ],
- };
- const {container} = render(
- <CustomMetricsEventData
- metricsSummary={metricsSummary}
- startTimestamp={1706189398.176}
- projectId="1"
- />
- );
- expect(container).toBeEmptyDOMElement();
- });
- it('renders empty (no data)', () => {
- const {container} = render(
- <CustomMetricsEventData
- metricsSummary={{}}
- startTimestamp={1706189398.176}
- projectId="1"
- />,
- {
- organization,
- }
- );
- expect(container).toBeEmptyDOMElement();
- });
- it('renders (all information)', () => {
- const metricsSummary: MetricsSummary = {
- 'd:custom/my.metric@second': [
- {
- count: 2,
- min: 1,
- max: 2,
- sum: 3,
- tags: {
- foo: 'bar',
- },
- },
- ],
- };
- render(
- <CustomMetricsEventData
- metricsSummary={metricsSummary}
- startTimestamp={1706189398.176}
- projectId="1"
- />,
- {
- organization,
- }
- );
- expect(screen.getByText('Emitted Metrics')).toBeInTheDocument();
- expect(screen.getByText('my.metric')).toBeInTheDocument();
- expect(screen.getByRole('link', {name: 'View Metric'})).toBeInTheDocument();
- expect(screen.getByText(textWithMarkupMatcher(/Value: 1\.5s/))).toBeInTheDocument();
- expect(screen.getByText(/Tags: foo:bar/)).toBeInTheDocument();
- });
- it('renders (counter metric)', () => {
- const metricsSummary: MetricsSummary = {
- 'c:custom/my.metric@second': [
- {
- count: 1,
- min: 1,
- max: 1,
- sum: 1,
- tags: {
- foo: 'bar',
- },
- },
- ],
- };
- render(
- <CustomMetricsEventData
- metricsSummary={metricsSummary}
- startTimestamp={1706189398.176}
- projectId="1"
- />,
- {organization}
- );
- expect(screen.getByText('Emitted Metrics')).toBeInTheDocument();
- expect(screen.getByText('my.metric')).toBeInTheDocument();
- expect(screen.getByRole('link', {name: 'View Metric'})).toBeInTheDocument();
- expect(screen.getByText(textWithMarkupMatcher(/Count: 1/))).toBeInTheDocument();
- expect(screen.getByText(/Tags: foo:bar/)).toBeInTheDocument();
- });
- it('renders (no tags)', async () => {
- const metricsSummary: MetricsSummary = {
- 'c:custom/my.metric@second': [
- {
- count: 1,
- min: 1,
- max: 1,
- sum: 1,
- tags: null,
- },
- ],
- };
- render(
- <CustomMetricsEventData
- metricsSummary={metricsSummary}
- startTimestamp={1706189398.176}
- projectId="1"
- />,
- {
- organization,
- }
- );
- expect(screen.getByText('Emitted Metrics')).toBeInTheDocument();
- expect(screen.getByText('my.metric')).toBeInTheDocument();
- expect(screen.getByRole('link', {name: 'View Metric'})).toBeInTheDocument();
- expect(screen.getByText(textWithMarkupMatcher(/Count: 1/))).toBeInTheDocument();
- expect(
- await screen.findByText(textWithMarkupMatcher(/Tags: \(none\)/))
- ).toBeInTheDocument();
- });
- it('renders (empty tags)', async () => {
- const metricsSummary: MetricsSummary = {
- 'c:custom/my.metric@second': [
- {
- count: 1,
- min: 1,
- max: 1,
- sum: 1,
- tags: {},
- },
- ],
- };
- render(
- <CustomMetricsEventData
- metricsSummary={metricsSummary}
- startTimestamp={1706189398.176}
- projectId="1"
- />,
- {
- organization,
- }
- );
- expect(screen.getByText('Emitted Metrics')).toBeInTheDocument();
- expect(screen.getByText('my.metric')).toBeInTheDocument();
- expect(screen.getByRole('link', {name: 'View Metric'})).toBeInTheDocument();
- expect(screen.getByText(textWithMarkupMatcher(/Count: 1/))).toBeInTheDocument();
- expect(
- await screen.findByText(textWithMarkupMatcher(/Tags: \(none\)/))
- ).toBeInTheDocument();
- });
- it('renders (multiple)', () => {
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/metrics/query/`,
- method: 'POST',
- body: {
- data: [
- [{by: {}, series: [], totals: 2}],
- [{by: {}, series: [], totals: 2}],
- [{by: {}, series: [], totals: 2}],
- ],
- meta: [
- [
- {
- unit: 'nanoseconds',
- scaling_factor: 1000000,
- group_bys: {},
- limit: null,
- order: 'asc',
- } as MetricsQueryApiResponseLastMeta,
- ],
- [
- {
- unit: 'nanoseconds',
- scaling_factor: null,
- group_bys: {},
- limit: null,
- order: 'asc',
- } as MetricsQueryApiResponseLastMeta,
- ],
- [
- {
- unit: 'nanoseconds',
- scaling_factor: 1000000,
- group_bys: {},
- limit: null,
- order: 'asc',
- } as MetricsQueryApiResponseLastMeta,
- ],
- ],
- end: '2023-09-01T01:00:00Z',
- intervals: [],
- start: '2023-09-01T00:00:00Z',
- } satisfies MetricsQueryApiResponse,
- });
- const metricsSummary: MetricsSummary = {
- 'd:custom/my.distribution@second': [
- {
- count: 2,
- min: 1,
- max: 2,
- sum: 3,
- tags: {
- foo: 'bar',
- },
- },
- {
- count: 1,
- min: 1,
- max: 1,
- sum: 1,
- tags: null,
- },
- ],
- 'c:custom/my.counter@second': [
- {
- count: 2,
- min: 1,
- max: 2,
- sum: 3,
- tags: {
- foo: 'bar',
- },
- },
- ],
- };
- render(
- <CustomMetricsEventData
- metricsSummary={metricsSummary}
- startTimestamp={1706189398.176}
- projectId="1"
- />,
- {
- organization,
- }
- );
- expect(screen.getByText('Emitted Metrics')).toBeInTheDocument();
- expect(screen.getByText('my.counter')).toBeInTheDocument();
- expect(screen.getAllByText('my.distribution')).toHaveLength(2);
- expect(screen.getAllByRole('link', {name: 'View Metric'})).toHaveLength(3);
- });
- });
|