123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491 |
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {
- render,
- screen,
- userEvent,
- waitForElementToBeRemoved,
- } from 'sentry-test/reactTestingLibrary';
- import {useLocation} from 'sentry/utils/useLocation';
- import usePageFilters from 'sentry/utils/usePageFilters';
- import {HTTPSamplesPanel} from 'sentry/views/performance/http/httpSamplesPanel';
- jest.mock('sentry/utils/useLocation');
- jest.mock('sentry/utils/usePageFilters');
- describe('HTTPSamplesPanel', () => {
- const organization = OrganizationFixture();
- let eventsRequestMock;
- jest.mocked(usePageFilters).mockReturnValue({
- isReady: true,
- desyncedFilters: new Set(),
- pinnedFilters: new Set(),
- shouldPersist: true,
- selection: {
- datetime: {
- period: '10d',
- start: null,
- end: null,
- utc: false,
- },
- environments: [],
- projects: [],
- },
- });
- jest.mocked(useLocation).mockReturnValue({
- pathname: '',
- search: '',
- query: {
- domain: '*.sentry.dev',
- statsPeriod: '10d',
- transaction: '/api/0/users',
- transactionMethod: 'GET',
- panel: 'status',
- },
- hash: '',
- state: undefined,
- action: 'PUSH',
- key: '',
- });
- beforeEach(() => {
- jest.clearAllMocks();
- eventsRequestMock = MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- method: 'GET',
- match: [
- MockApiClient.matchQuery({
- referrer: 'api.performance.http.samples-panel-metrics-ribbon',
- }),
- ],
- body: {
- data: [
- {
- 'project.id': 1,
- 'transaction.id': '',
- 'spm()': 22.18,
- 'http_response_rate(3)': 0.01,
- 'http_response_rate(4)': 0.025,
- 'http_response_rate(5)': 0.015,
- 'avg(span.self_time)': 140.2,
- 'sum(span.self_time)': 2709238,
- },
- ],
- meta: {
- fields: {
- 'spm()': 'rate',
- 'avg(span.self_time)': 'duration',
- 'http_response_rate(3)': 'percentage',
- 'http_response_rate(4)': 'percentage',
- 'http_response_rate(5)': 'percentage',
- 'sum(span.self_time)': 'duration',
- },
- },
- },
- });
- });
- afterAll(() => {
- jest.resetAllMocks();
- });
- describe('Status panel', () => {
- let eventsStatsRequestMock, samplesRequestMock, spanFieldTagsMock;
- beforeEach(() => {
- jest.mocked(useLocation).mockReturnValue({
- pathname: '',
- search: '',
- query: {
- statsPeriod: '10d',
- transaction: '/api/0/users',
- transactionMethod: 'GET',
- panel: 'status',
- responseCodeClass: '3',
- },
- hash: '',
- state: undefined,
- action: 'PUSH',
- key: '',
- });
- eventsStatsRequestMock = MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events-stats/`,
- method: 'GET',
- match: [
- MockApiClient.matchQuery({
- referrer: 'api.performance.http.samples-panel-response-code-chart',
- }),
- ],
- body: {
- '301': {
- data: [
- [1699907700, [{count: 7810.2}]],
- [1699908000, [{count: 1216.8}]],
- ],
- },
- '304': {
- data: [
- [1699907700, [{count: 2701.5}]],
- [1699908000, [{count: 78.12}]],
- ],
- },
- },
- });
- samplesRequestMock = MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- method: 'GET',
- match: [
- MockApiClient.matchQuery({
- referrer: 'api.performance.http.samples-panel-response-code-samples',
- }),
- ],
- body: {
- data: [
- {
- span_id: 'b1bf1acde131623a',
- trace: '2b60b2eb415c4bfba3efeaf65c21c605',
- 'span.description':
- 'GET https://sentry.io/api/0/organizations/sentry/info/?projectId=1',
- project: 'javascript',
- timestamp: '2024-03-25T20:31:36+00:00',
- 'span.status_code': '200',
- 'transaction.id': '11c910c9c10b3ec4ecf8f209b8c6ce48',
- 'span.self_time': 320.300102,
- },
- ],
- meta: {},
- },
- });
- spanFieldTagsMock = MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/spans/fields/`,
- method: 'GET',
- body: [
- {
- key: 'api_key',
- name: 'Api Key',
- },
- {
- key: 'bytes.size',
- name: 'Bytes.Size',
- },
- ],
- });
- });
- it('fetches panel data', async () => {
- render(<HTTPSamplesPanel />);
- expect(eventsRequestMock).toHaveBeenNthCalledWith(
- 1,
- `/organizations/${organization.slug}/events/`,
- expect.objectContaining({
- method: 'GET',
- query: {
- dataset: 'spansMetrics',
- environment: [],
- field: [
- 'spm()',
- 'avg(span.self_time)',
- 'sum(span.self_time)',
- 'http_response_rate(3)',
- 'http_response_rate(4)',
- 'http_response_rate(5)',
- 'time_spent_percentage()',
- ],
- per_page: 50,
- project: [],
- query:
- 'span.module:http span.op:http.client !has:span.domain transaction:/api/0/users',
- referrer: 'api.performance.http.samples-panel-metrics-ribbon',
- statsPeriod: '10d',
- },
- })
- );
- expect(eventsStatsRequestMock).toHaveBeenNthCalledWith(
- 1,
- `/organizations/${organization.slug}/events-stats/`,
- expect.objectContaining({
- method: 'GET',
- query: {
- cursor: undefined,
- dataset: 'spansMetrics',
- environment: [],
- excludeOther: 0,
- field: ['span.status_code', 'count()'],
- interval: '30m',
- orderby: undefined,
- partial: 1,
- per_page: 50,
- project: [],
- query:
- 'span.module:http span.op:http.client !has:span.domain transaction:/api/0/users span.status_code:[300,301,302,303,304,305,307,308]',
- referrer: 'api.performance.http.samples-panel-response-code-chart',
- statsPeriod: '10d',
- topEvents: '5',
- yAxis: 'count()',
- },
- })
- );
- expect(samplesRequestMock).toHaveBeenNthCalledWith(
- 1,
- `/organizations/${organization.slug}/events/`,
- expect.objectContaining({
- method: 'GET',
- query: expect.objectContaining({
- dataset: 'spansIndexed',
- query:
- 'span.module:http span.op:http.client transaction:/api/0/users span.status_code:[300,301,302,303,304,305,307,308] ( !has:span.domain OR span.domain:[""] )',
- project: [],
- field: [
- 'project',
- 'trace',
- 'transaction.id',
- 'span_id',
- 'timestamp',
- 'span.description',
- 'span.status_code',
- ],
- sort: '-span_id',
- referrer: 'api.performance.http.samples-panel-response-code-samples',
- statsPeriod: '10d',
- }),
- })
- );
- expect(spanFieldTagsMock).toHaveBeenNthCalledWith(
- 1,
- `/organizations/${organization.slug}/spans/fields/`,
- expect.objectContaining({
- method: 'GET',
- query: {
- project: [],
- environment: [],
- statsPeriod: '1h',
- },
- })
- );
- await waitForElementToBeRemoved(() => screen.queryAllByTestId('loading-indicator'));
- });
- it('shows basic transaction info', async () => {
- render(<HTTPSamplesPanel />);
- // Panel heading
- expect(screen.getByRole('heading', {name: 'GET /api/0/users'})).toBeInTheDocument();
- // Metrics ribbon
- await waitForElementToBeRemoved(() => screen.queryAllByTestId('loading-indicator'));
- expect(
- screen.getByRole('heading', {name: 'Requests Per Minute'})
- ).toBeInTheDocument();
- expect(screen.getByRole('heading', {name: 'Avg Duration'})).toBeInTheDocument();
- expect(screen.getByRole('heading', {name: '3XXs'})).toBeInTheDocument();
- expect(screen.getByRole('heading', {name: '4XXs'})).toBeInTheDocument();
- expect(screen.getByRole('heading', {name: '5XXs'})).toBeInTheDocument();
- expect(screen.getByRole('heading', {name: 'Time Spent'})).toBeInTheDocument();
- expect(screen.getByText('22.2/min')).toBeInTheDocument();
- expect(screen.getByText('140.20ms')).toBeInTheDocument();
- expect(screen.getByText('1%')).toBeInTheDocument();
- expect(screen.getByText('2.5%')).toBeInTheDocument();
- expect(screen.getByText('1.5%')).toBeInTheDocument();
- expect(screen.getByText('45.15min')).toBeInTheDocument();
- });
- });
- describe('Duration panel', () => {
- let chartRequestMock, samplesRequestMock, spanFieldTagsMock;
- beforeEach(() => {
- jest.mocked(useLocation).mockReturnValue({
- pathname: '',
- search: '',
- query: {
- domain: '*.sentry.dev',
- statsPeriod: '10d',
- transaction: '/api/0/users',
- transactionMethod: 'GET',
- panel: 'duration',
- },
- hash: '',
- state: undefined,
- action: 'PUSH',
- key: '',
- });
- chartRequestMock = MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events-stats/`,
- method: 'GET',
- match: [
- MockApiClient.matchQuery({
- referrer: 'api.performance.http.samples-panel-duration-chart',
- }),
- ],
- body: {data: [[1711393200, [{count: 900}]]]},
- });
- samplesRequestMock = MockApiClient.addMockResponse({
- url: `/api/0/organizations/${organization.slug}/spans-samples/`,
- method: 'GET',
- body: {
- data: [
- {
- span_id: 'b1bf1acde131623a',
- trace: '2b60b2eb415c4bfba3efeaf65c21c605',
- 'span.description':
- 'GET https://sentry.io/api/0/organizations/sentry/info/?projectId=1',
- project: 'javascript',
- timestamp: '2024-03-25T20:31:36+00:00',
- 'span.status_code': '200',
- 'transaction.id': '11c910c9c10b3ec4ecf8f209b8c6ce48',
- 'span.self_time': 320.300102,
- },
- ],
- },
- });
- spanFieldTagsMock = MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/spans/fields/`,
- method: 'GET',
- body: [
- {
- key: 'api_key',
- name: 'Api Key',
- },
- {
- key: 'bytes.size',
- name: 'Bytes.Size',
- },
- ],
- });
- });
- it('fetches panel data', async () => {
- render(<HTTPSamplesPanel />);
- await waitForElementToBeRemoved(() => screen.queryAllByTestId('loading-indicator'));
- expect(chartRequestMock).toHaveBeenNthCalledWith(
- 1,
- `/organizations/${organization.slug}/events-stats/`,
- expect.objectContaining({
- method: 'GET',
- query: expect.objectContaining({
- dataset: 'spansMetrics',
- environment: [],
- interval: '30m',
- per_page: 50,
- project: [],
- query:
- 'span.module:http span.op:http.client span.domain:"\\*.sentry.dev" transaction:/api/0/users',
- referrer: 'api.performance.http.samples-panel-duration-chart',
- statsPeriod: '10d',
- yAxis: 'avg(span.self_time)',
- }),
- })
- );
- expect(samplesRequestMock).toHaveBeenNthCalledWith(
- 1,
- `/api/0/organizations/${organization.slug}/spans-samples/`,
- expect.objectContaining({
- method: 'GET',
- query: expect.objectContaining({
- query:
- 'span.module:http span.op:http.client transaction:/api/0/users span.domain:"\\*.sentry.dev"',
- project: [],
- additionalFields: [
- 'trace',
- 'transaction.id',
- 'span.description',
- 'span.status_code',
- ],
- lowerBound: 0,
- firstBound: expect.closeTo(333.3333),
- secondBound: expect.closeTo(666.6666),
- upperBound: 1000,
- referrer: 'api.performance.http.samples-panel-duration-samples',
- statsPeriod: '10d',
- }),
- })
- );
- expect(spanFieldTagsMock).toHaveBeenNthCalledWith(
- 1,
- `/organizations/${organization.slug}/spans/fields/`,
- expect.objectContaining({
- method: 'GET',
- query: {
- project: [],
- environment: [],
- statsPeriod: '1h',
- },
- })
- );
- });
- it('show basic transaction info', async () => {
- render(<HTTPSamplesPanel />);
- // Panel heading
- expect(screen.getByRole('heading', {name: 'GET /api/0/users'})).toBeInTheDocument();
- // Metrics ribbon
- await waitForElementToBeRemoved(() => screen.queryAllByTestId('loading-indicator'));
- expect(
- screen.getByRole('heading', {name: 'Requests Per Minute'})
- ).toBeInTheDocument();
- expect(screen.getByRole('heading', {name: 'Avg Duration'})).toBeInTheDocument();
- expect(screen.getByRole('heading', {name: '3XXs'})).toBeInTheDocument();
- expect(screen.getByRole('heading', {name: '4XXs'})).toBeInTheDocument();
- expect(screen.getByRole('heading', {name: '5XXs'})).toBeInTheDocument();
- expect(screen.getByRole('heading', {name: 'Time Spent'})).toBeInTheDocument();
- expect(screen.getByText('22.2/min')).toBeInTheDocument();
- expect(screen.getByText('140.20ms')).toBeInTheDocument();
- expect(screen.getByText('1%')).toBeInTheDocument();
- expect(screen.getByText('2.5%')).toBeInTheDocument();
- expect(screen.getByText('1.5%')).toBeInTheDocument();
- expect(screen.getByText('45.15min')).toBeInTheDocument();
- // Samples table
- expect(screen.getByRole('table', {name: 'Span Samples'})).toBeInTheDocument();
- expect(screen.getByRole('columnheader', {name: 'Span ID'})).toBeInTheDocument();
- expect(screen.getByRole('columnheader', {name: 'Status'})).toBeInTheDocument();
- expect(screen.getByRole('columnheader', {name: 'URL'})).toBeInTheDocument();
- expect(screen.getByRole('cell', {name: 'b1bf1acde131623a'})).toBeInTheDocument();
- expect(screen.getByRole('link', {name: 'b1bf1acde131623a'})).toHaveAttribute(
- 'href',
- '/organizations/org-slug/performance/javascript:11c910c9c10b3ec4ecf8f209b8c6ce48/?domain=%2A.sentry.dev&panel=duration&statsPeriod=10d&transactionMethod=GET'
- );
- expect(screen.getByRole('cell', {name: '200'})).toBeInTheDocument();
- });
- it('re-fetches samples', async () => {
- render(<HTTPSamplesPanel />);
- await waitForElementToBeRemoved(() => screen.queryAllByTestId('loading-indicator'));
- expect(samplesRequestMock).toHaveBeenCalledTimes(1);
- await userEvent.click(screen.getByRole('button', {name: 'Try Different Samples'}));
- expect(samplesRequestMock).toHaveBeenCalledTimes(2);
- });
- });
- });
|