123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519 |
- import {ProjectFixture} from 'sentry-fixture/project';
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {act, cleanup, render, screen, userEvent} from 'sentry-test/reactTestingLibrary';
- import {DATA_CATEGORY_INFO, DEFAULT_STATS_PERIOD} from 'sentry/constants';
- import {ALL_ACCESS_PROJECTS} from 'sentry/constants/pageFilters';
- import OrganizationStore from 'sentry/stores/organizationStore';
- import PageFiltersStore from 'sentry/stores/pageFiltersStore';
- import ProjectsStore from 'sentry/stores/projectsStore';
- import type {PageFilters} from 'sentry/types';
- import {OrganizationStats, PAGE_QUERY_PARAMS} from 'sentry/views/organizationStats';
- import {ChartDataTransform} from './usageChart';
- describe('OrganizationStats', function () {
- const defaultSelection: PageFilters = {
- projects: [],
- environments: [],
- datetime: {
- start: null,
- end: null,
- period: DEFAULT_STATS_PERIOD,
- utc: false,
- },
- };
- const projects = ['1', '2', '3'].map(id => ProjectFixture({id, slug: `proj-${id}`}));
- const {organization, router, routerContext} = initializeOrg({
- organization: {features: ['global-views', 'team-insights']},
- projects,
- project: undefined,
- router: undefined,
- });
- const endpoint = `/organizations/${organization.slug}/stats_v2/`;
- const defaultProps: OrganizationStats['props'] = {
- router,
- organization,
- ...router,
- selection: defaultSelection,
- route: {},
- params: {orgId: organization.slug as string},
- routeParams: {},
- };
- let mockRequest;
- beforeEach(() => {
- MockApiClient.clearMockResponses();
- PageFiltersStore.init();
- PageFiltersStore.onInitializeUrlState(defaultSelection, new Set());
- OrganizationStore.onUpdate(organization, {replace: true});
- ProjectsStore.loadInitialData(projects);
- mockRequest = MockApiClient.addMockResponse({
- method: 'GET',
- url: endpoint,
- body: mockStatsResponse,
- });
- });
- afterEach(() => {
- PageFiltersStore.reset();
- });
- /**
- * Features and Alerts
- */
- it('renders header state without tabs', () => {
- const newOrg = initializeOrg();
- render(<OrganizationStats {...defaultProps} organization={newOrg.organization} />, {
- context: newOrg.routerContext,
- });
- expect(screen.getByText('Organization Usage Stats')).toBeInTheDocument();
- });
- it('renders header state with tabs', () => {
- render(<OrganizationStats {...defaultProps} />, {context: routerContext});
- expect(screen.getByText('Stats')).toBeInTheDocument();
- expect(screen.getByText('Usage')).toBeInTheDocument();
- expect(screen.getByText('Issues')).toBeInTheDocument();
- expect(screen.getByText('Health')).toBeInTheDocument();
- });
- /**
- * Base + Error Handling
- */
- it('renders the base view', () => {
- render(<OrganizationStats {...defaultProps} />, {context: routerContext});
- // Default to Errors category
- expect(screen.getAllByText('Errors')[0]).toBeInTheDocument();
- // Render the chart and project table
- expect(screen.getByTestId('usage-stats-chart')).toBeInTheDocument();
- expect(screen.getByTestId('usage-stats-table')).toBeInTheDocument();
- // Render the cards
- expect(screen.getAllByText('Total')[0]).toBeInTheDocument();
- expect(screen.getByText('64')).toBeInTheDocument();
- expect(screen.getAllByText('Accepted')[0]).toBeInTheDocument();
- expect(screen.getByText('28')).toBeInTheDocument();
- expect(screen.getByText('6 in last min')).toBeInTheDocument();
- expect(screen.getAllByText('Filtered')[0]).toBeInTheDocument();
- expect(screen.getAllByText('7')[0]).toBeInTheDocument();
- expect(screen.getAllByText('Dropped')[0]).toBeInTheDocument();
- expect(screen.getAllByText('29')[0]).toBeInTheDocument();
- // Correct API Calls
- const mockExpectations = {
- UsageStatsOrg: {
- statsPeriod: DEFAULT_STATS_PERIOD,
- interval: '1h',
- groupBy: ['category', 'outcome'],
- project: [-1],
- field: ['sum(quantity)'],
- },
- UsageStatsPerMin: {
- statsPeriod: '5m',
- interval: '1m',
- groupBy: ['category', 'outcome'],
- project: [-1],
- field: ['sum(quantity)'],
- },
- UsageStatsProjects: {
- statsPeriod: DEFAULT_STATS_PERIOD,
- interval: '1h',
- groupBy: ['outcome', 'project'],
- project: [-1],
- field: ['sum(quantity)'],
- category: 'error',
- },
- };
- for (const query of Object.values(mockExpectations)) {
- expect(mockRequest).toHaveBeenCalledWith(
- endpoint,
- expect.objectContaining({query})
- );
- }
- });
- it('renders with an error on stats endpoint', () => {
- MockApiClient.clearMockResponses();
- MockApiClient.addMockResponse({
- url: endpoint,
- statusCode: 500,
- });
- render(<OrganizationStats {...defaultProps} />, {context: routerContext});
- expect(screen.getByTestId('usage-stats-chart')).toBeInTheDocument();
- expect(screen.getByTestId('usage-stats-table')).toBeInTheDocument();
- expect(screen.getByTestId('error-messages')).toBeInTheDocument();
- });
- it('renders with an error when user has no projects', () => {
- MockApiClient.clearMockResponses();
- MockApiClient.addMockResponse({
- url: endpoint,
- statusCode: 400,
- body: {detail: 'No projects available'},
- });
- render(<OrganizationStats {...defaultProps} />, {context: routerContext});
- expect(screen.getByTestId('usage-stats-chart')).toBeInTheDocument();
- expect(screen.getByTestId('usage-stats-table')).toBeInTheDocument();
- expect(screen.getByTestId('empty-message')).toBeInTheDocument();
- });
- /**
- * Router Handling
- */
- it('pushes state changes to the route', async () => {
- render(<OrganizationStats {...defaultProps} />, {context: routerContext});
- await userEvent.click(screen.getByText('Category'));
- await userEvent.click(screen.getByText('Attachments'));
- expect(router.push).toHaveBeenCalledWith(
- expect.objectContaining({
- query: {dataCategory: DATA_CATEGORY_INFO.attachment.plural},
- })
- );
- await userEvent.click(screen.getByText('Periodic'));
- await userEvent.click(screen.getByText('Cumulative'));
- expect(router.push).toHaveBeenCalledWith(
- expect.objectContaining({
- query: {transform: ChartDataTransform.CUMULATIVE},
- })
- );
- const inputQuery = 'proj-1';
- await userEvent.type(
- screen.getByPlaceholderText('Filter your projects'),
- `${inputQuery}{enter}`
- );
- expect(router.push).toHaveBeenCalledWith(
- expect.objectContaining({
- query: {query: inputQuery},
- })
- );
- });
- it('does not leak query params onto next page links', () => {
- const dummyLocation = PAGE_QUERY_PARAMS.reduce(
- (location, param) => {
- location.query[param] = '';
- return location;
- },
- {query: {}}
- );
- render(<OrganizationStats {...defaultProps} location={dummyLocation as any} />, {
- context: routerContext,
- });
- const projectLinks = screen.getAllByTestId('badge-display-name');
- expect(projectLinks.length).toBeGreaterThan(0);
- const leakingRegex = PAGE_QUERY_PARAMS.join('|');
- for (const projectLink of projectLinks) {
- expect(projectLink.closest('a')).toHaveAttribute(
- 'href',
- expect.not.stringMatching(leakingRegex)
- );
- }
- });
- /**
- * Project Selection
- */
- it('renders single project without global-views', () => {
- const newOrg = initializeOrg();
- newOrg.organization.features = [
- 'team-insights',
- // TODO(Leander): Remove the following check once the project-stats flag is GA
- 'project-stats',
- ];
- render(<OrganizationStats {...defaultProps} organization={newOrg.organization} />, {
- context: newOrg.routerContext,
- organization: newOrg.organization,
- });
- expect(screen.queryByText('My Projects')).not.toBeInTheDocument();
- expect(screen.queryByTestId('usage-stats-chart')).toBeInTheDocument();
- expect(screen.queryByText('usage-stats-table')).not.toBeInTheDocument();
- });
- it('renders default projects with global-views', () => {
- const newOrg = initializeOrg();
- newOrg.organization.features = [
- 'global-views',
- 'team-insights',
- // TODO(Leander): Remove the following check once the project-stats flag is GA
- 'project-stats',
- ];
- OrganizationStore.onUpdate(newOrg.organization, {replace: true});
- render(<OrganizationStats {...defaultProps} organization={newOrg.organization} />, {
- context: newOrg.routerContext,
- organization: newOrg.organization,
- });
- expect(screen.getByText('All Projects')).toBeInTheDocument();
- expect(screen.getByTestId('usage-stats-chart')).toBeInTheDocument();
- expect(screen.getByTestId('usage-stats-table')).toBeInTheDocument();
- mockRequest.mock.calls.forEach(([_path, {query}]) => {
- // Ignore UsageStatsPerMin's query
- if (query?.statsPeriod === '5m') {
- return;
- }
- expect(query.project).toEqual([ALL_ACCESS_PROJECTS]);
- expect(defaultSelection.projects).toEqual([]);
- });
- });
- it('renders with multiple projects selected', () => {
- const newOrg = initializeOrg();
- newOrg.organization.features = [
- 'global-views',
- 'team-insights',
- // TODO(Leander): Remove the following check once the project-stats flag is GA
- 'project-stats',
- ];
- const selectedProjects = [1, 2];
- const newSelection = {
- ...defaultSelection,
- projects: selectedProjects,
- };
- render(
- <OrganizationStats
- {...defaultProps}
- organization={newOrg.organization}
- selection={newSelection}
- />,
- {
- context: newOrg.routerContext,
- organization: newOrg.organization,
- }
- );
- act(() => PageFiltersStore.updateProjects(selectedProjects, []));
- expect(screen.queryByText('My Projects')).not.toBeInTheDocument();
- expect(screen.getByTestId('usage-stats-chart')).toBeInTheDocument();
- expect(screen.getByTestId('usage-stats-table')).toBeInTheDocument();
- expect(mockRequest).toHaveBeenCalledWith(
- endpoint,
- expect.objectContaining({
- query: {
- statsPeriod: DEFAULT_STATS_PERIOD,
- interval: '1h',
- groupBy: ['category', 'outcome'],
- project: selectedProjects,
- field: ['sum(quantity)'],
- },
- })
- );
- });
- it('renders with a single project selected', () => {
- const newOrg = initializeOrg();
- newOrg.organization.features = [
- 'global-views',
- 'team-insights',
- // TODO(Leander): Remove the following check once the project-stats flag is GA
- 'project-stats',
- ];
- const selectedProject = [1];
- const newSelection = {
- ...defaultSelection,
- projects: selectedProject,
- };
- render(
- <OrganizationStats
- {...defaultProps}
- organization={newOrg.organization}
- selection={newSelection}
- />,
- {
- context: newOrg.routerContext,
- organization: newOrg.organization,
- }
- );
- act(() => PageFiltersStore.updateProjects(selectedProject, []));
- expect(screen.queryByText('My Projects')).not.toBeInTheDocument();
- expect(screen.getByTestId('usage-stats-chart')).toBeInTheDocument();
- expect(screen.getByTestId('usage-stats-table')).toBeInTheDocument();
- expect(screen.getByText('All Projects')).toBeInTheDocument();
- expect(mockRequest).toHaveBeenCalledWith(
- endpoint,
- expect.objectContaining({
- query: {
- statsPeriod: DEFAULT_STATS_PERIOD,
- interval: '1h',
- groupBy: ['category', 'outcome'],
- project: selectedProject,
- field: ['sum(quantity)'],
- },
- })
- );
- });
- it('renders a project when its graph icon is clicked', async () => {
- const newOrg = initializeOrg();
- newOrg.organization.features = [
- 'global-views',
- 'team-insights',
- // TODO(Leander): Remove the following check once the project-stats flag is GA
- 'project-stats',
- ];
- render(<OrganizationStats {...defaultProps} organization={newOrg.organization} />, {
- context: newOrg.routerContext,
- organization: newOrg.organization,
- });
- await userEvent.click(screen.getByTestId('proj-1'));
- expect(screen.queryByText('My Projects')).not.toBeInTheDocument();
- expect(screen.getAllByText('proj-1').length).toBe(2);
- });
- /**
- * Feature Flagging
- */
- it('renders legacy organization stats without appropriate flags', () => {
- const selectedProject = [1];
- const newSelection = {
- ...defaultSelection,
- projects: selectedProject,
- };
- for (const features of [['team-insights'], ['team-insights', 'project-stats']]) {
- const newOrg = initializeOrg();
- newOrg.organization.features = features;
- render(
- <OrganizationStats
- {...defaultProps}
- organization={newOrg.organization}
- selection={newSelection}
- />,
- {
- context: newOrg.routerContext,
- organization: newOrg.organization,
- }
- );
- act(() => PageFiltersStore.updateProjects(selectedProject, []));
- expect(screen.queryByText('My Projects')).not.toBeInTheDocument();
- cleanup();
- }
- });
- });
- const mockStatsResponse = {
- start: '2021-01-01T00:00:00Z',
- end: '2021-01-07T00:00:00Z',
- intervals: [
- '2021-01-01T00:00:00Z',
- '2021-01-02T00:00:00Z',
- '2021-01-03T00:00:00Z',
- '2021-01-04T00:00:00Z',
- '2021-01-05T00:00:00Z',
- '2021-01-06T00:00:00Z',
- '2021-01-07T00:00:00Z',
- ],
- groups: [
- {
- by: {
- project: 1,
- category: 'attachment',
- outcome: 'accepted',
- },
- totals: {
- 'sum(quantity)': 28000,
- },
- series: {
- 'sum(quantity)': [1000, 2000, 3000, 4000, 5000, 6000, 7000],
- },
- },
- {
- by: {
- project: 1,
- outcome: 'accepted',
- category: 'transaction',
- },
- totals: {
- 'sum(quantity)': 28,
- },
- series: {
- 'sum(quantity)': [1, 2, 3, 4, 5, 6, 7],
- },
- },
- {
- by: {
- project: 1,
- category: 'error',
- outcome: 'accepted',
- },
- totals: {
- 'sum(quantity)': 28,
- },
- series: {
- 'sum(quantity)': [1, 2, 3, 4, 5, 6, 7],
- },
- },
- {
- by: {
- project: 1,
- category: 'error',
- outcome: 'filtered',
- },
- totals: {
- 'sum(quantity)': 7,
- },
- series: {
- 'sum(quantity)': [1, 1, 1, 1, 1, 1, 1],
- },
- },
- {
- by: {
- project: 1,
- category: 'error',
- outcome: 'rate_limited',
- },
- totals: {
- 'sum(quantity)': 14,
- },
- series: {
- 'sum(quantity)': [2, 2, 2, 2, 2, 2, 2],
- },
- },
- {
- by: {
- project: 1,
- category: 'error',
- outcome: 'invalid',
- },
- totals: {
- 'sum(quantity)': 15,
- },
- series: {
- 'sum(quantity)': [2, 2, 2, 2, 2, 2, 3],
- },
- },
- {
- by: {
- project: 1,
- category: 'error',
- outcome: 'client_discard',
- },
- totals: {
- 'sum(quantity)': 15,
- },
- series: {
- 'sum(quantity)': [2, 2, 2, 2, 2, 2, 3],
- },
- },
- ],
- };
|