123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {SessionsFieldFixture} from 'sentry-fixture/sessions';
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {render, screen, userEvent, waitFor} from 'sentry-test/reactTestingLibrary';
- import type {PlatformKey} from 'sentry/types/project';
- import ProjectCharts from 'sentry/views/projectDetail/projectCharts';
- function renderProjectCharts(platform?: PlatformKey, chartDisplay?: string) {
- const {organization, router, project} = initializeOrg({
- organization: OrganizationFixture(),
- projects: [{platform}],
- router: {
- params: {orgId: 'org-slug', projectId: 'project-slug'},
- location: {
- pathname: '/organizations/org-slug/projects/project-slug/',
- query: {chart1: chartDisplay ?? 'crash_free'},
- },
- },
- } as Parameters<typeof initializeOrg>[0]);
- return render(
- <ProjectCharts
- chartId="chart1"
- chartIndex={0}
- hasSessions
- hasTransactions
- location={router.location}
- organization={organization}
- router={router}
- visibleCharts={['chart1', 'chart2']}
- project={project}
- />
- );
- }
- describe('ProjectDetail > ProjectCharts', () => {
- let mockSessions;
- beforeEach(() => {
- MockApiClient.addMockResponse({
- url: `/organizations/org-slug/releases/stats/`,
- body: [],
- });
- mockSessions = MockApiClient.addMockResponse({
- method: 'GET',
- url: '/organizations/org-slug/sessions/',
- body: SessionsFieldFixture(`sum(session)`),
- });
- });
- afterEach(() => {
- jest.resetAllMocks();
- });
- it('renders ANR options for android projects', async () => {
- renderProjectCharts('android');
- await userEvent.click(
- screen.getByRole('button', {name: 'Display Crash Free Sessions'})
- );
- expect(screen.getByText('Foreground ANR Rate')).toBeInTheDocument();
- expect(screen.getByText('ANR Rate')).toBeInTheDocument();
- });
- it('renders ANR options for electron projects', async () => {
- renderProjectCharts('javascript-electron');
- await userEvent.click(
- screen.getByRole('button', {name: 'Display Crash Free Sessions'})
- );
- expect(screen.getByText('Foreground ANR Rate')).toBeInTheDocument();
- expect(screen.getByText('ANR Rate')).toBeInTheDocument();
- });
- it('does not render ANR options for non-compatible platforms', async () => {
- renderProjectCharts('python');
- await userEvent.click(
- screen.getByRole('button', {name: 'Display Crash Free Sessions'})
- );
- expect(screen.queryByText('Foreground ANR Rate')).not.toBeInTheDocument();
- expect(screen.queryByText('ANR Rate')).not.toBeInTheDocument();
- });
- it('makes the right ANR sessions request', async () => {
- const responseBody = {
- query: '',
- intervals: [
- '2021-03-05T00:00:00Z',
- '2021-03-06T00:00:00Z',
- '2021-03-07T00:00:00Z',
- '2021-03-08T00:00:00Z',
- '2021-03-09T00:00:00Z',
- '2021-03-10T00:00:00Z',
- '2021-03-11T00:00:00Z',
- '2021-03-12T00:00:00Z',
- '2021-03-13T00:00:00Z',
- '2021-03-14T00:00:00Z',
- '2021-03-15T00:00:00Z',
- '2021-03-16T00:00:00Z',
- '2021-03-17T00:00:00Z',
- '2021-03-18T00:00:00Z',
- ],
- groups: [
- {
- by: {},
- totals: {
- 'anr_rate()': 492,
- 'count_unique(user)': 3,
- },
- series: {
- 'anr_rate()': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 490],
- 'count_unique(user)': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1],
- },
- },
- ],
- };
- mockSessions = MockApiClient.addMockResponse({
- method: 'GET',
- url: '/organizations/org-slug/sessions/',
- body: responseBody,
- });
- renderProjectCharts('android', 'anr_rate');
- expect(screen.getByText('ANR Rate')).toBeInTheDocument();
- await waitFor(() =>
- expect(mockSessions).toHaveBeenCalledWith(
- '/organizations/org-slug/sessions/',
- expect.objectContaining({
- query: expect.objectContaining({
- field: ['anr_rate()', 'count_unique(user)'],
- }),
- })
- )
- );
- });
- });
|