1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018 |
- import {enforceActOnUseLegacyStoreHook, mountWithTheme} from 'sentry-test/enzyme';
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {
- act,
- render,
- renderGlobalModal,
- screen,
- userEvent,
- within,
- } from 'sentry-test/reactTestingLibrary';
- import * as modals from 'sentry/actionCreators/modal';
- import ProjectsStore from 'sentry/stores/projectsStore';
- import CreateDashboard from 'sentry/views/dashboardsV2/create';
- import {constructGridItemKey} from 'sentry/views/dashboardsV2/layoutUtils';
- import {DashboardWidgetSource} from 'sentry/views/dashboardsV2/types';
- import * as types from 'sentry/views/dashboardsV2/types';
- import ViewEditDashboard from 'sentry/views/dashboardsV2/view';
- import {OrganizationContext} from 'sentry/views/organizationContext';
- describe('Dashboards > Detail', function () {
- enforceActOnUseLegacyStoreHook();
- const organization = TestStubs.Organization({
- features: [
- 'global-views',
- 'dashboards-basic',
- 'dashboards-edit',
- 'discover-query',
- 'dashboard-grid-layout',
- ],
- });
- const projects = [TestStubs.Project()];
- describe('prebuilt dashboards', function () {
- let wrapper, initialData;
- beforeEach(function () {
- act(() => ProjectsStore.loadInitialData(projects));
- initialData = initializeOrg({organization});
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/tags/',
- body: [],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/projects/',
- body: [TestStubs.Project()],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/dashboards/',
- body: [
- TestStubs.Dashboard([], {id: 'default-overview', title: 'Default'}),
- TestStubs.Dashboard([], {id: '1', title: 'Custom Errors'}),
- ],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/dashboards/default-overview/',
- body: TestStubs.Dashboard([], {id: 'default-overview', title: 'Default'}),
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/dashboards/1/visit/',
- method: 'POST',
- body: [],
- statusCode: 200,
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/users/',
- method: 'GET',
- body: [],
- });
- });
- afterEach(function () {
- MockApiClient.clearMockResponses();
- if (wrapper) {
- wrapper.unmount();
- }
- });
- it('assigns unique IDs to all widgets so grid keys are unique', async function () {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events-stats/',
- body: {data: []},
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/dashboards/default-overview/',
- body: TestStubs.Dashboard(
- [
- TestStubs.Widget(
- [
- {
- name: '',
- conditions: 'event.type:error',
- fields: ['count()'],
- aggregates: ['count()'],
- columns: [],
- },
- ],
- {
- title: 'Default Widget 1',
- interval: '1d',
- }
- ),
- TestStubs.Widget(
- [
- {
- name: '',
- conditions: 'event.type:transaction',
- fields: ['count()'],
- aggregates: ['count()'],
- columns: [],
- },
- ],
- {
- title: 'Default Widget 2',
- interval: '1d',
- }
- ),
- ],
- {id: 'default-overview', title: 'Default'}
- ),
- });
- initialData = initializeOrg({
- organization: TestStubs.Organization({
- features: [
- 'global-views',
- 'dashboards-basic',
- 'discover-query',
- 'dashboard-grid-layout',
- ],
- projects: [TestStubs.Project()],
- }),
- });
- wrapper = mountWithTheme(
- <OrganizationContext.Provider value={initialData.organization}>
- <ViewEditDashboard
- organization={initialData.organization}
- params={{orgId: 'org-slug', dashboardId: 'default-overview'}}
- router={initialData.router}
- location={initialData.router.location}
- />
- </OrganizationContext.Provider>,
- initialData.routerContext
- );
- await tick();
- wrapper.update();
- const dashboardInstance = wrapper.find('Dashboard').instance();
- const assignedIds = new Set(
- dashboardInstance.props.dashboard.widgets.map(constructGridItemKey)
- );
- expect(assignedIds.size).toBe(dashboardInstance.props.dashboard.widgets.length);
- });
- });
- describe('custom dashboards', function () {
- let wrapper, initialData, widgets, mockVisit, mockPut;
- const openEditModal = jest.spyOn(modals, 'openAddDashboardWidgetModal');
- beforeEach(function () {
- window.confirm = jest.fn();
- initialData = initializeOrg({organization});
- widgets = [
- TestStubs.Widget(
- [
- {
- name: '',
- conditions: 'event.type:error',
- fields: ['count()'],
- columns: [],
- aggregates: ['count()'],
- },
- ],
- {
- title: 'Errors',
- interval: '1d',
- id: '1',
- }
- ),
- TestStubs.Widget(
- [
- {
- name: '',
- conditions: 'event.type:transaction',
- fields: ['count()'],
- columns: [],
- aggregates: ['count()'],
- },
- ],
- {
- title: 'Transactions',
- interval: '1d',
- id: '2',
- }
- ),
- TestStubs.Widget(
- [
- {
- name: '',
- conditions: 'event.type:transaction transaction:/api/cats',
- fields: ['p50()'],
- columns: [],
- aggregates: ['p50()'],
- },
- ],
- {
- title: 'p50 of /api/cats',
- interval: '1d',
- id: '3',
- }
- ),
- ];
- mockVisit = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/dashboards/1/visit/',
- method: 'POST',
- body: [],
- statusCode: 200,
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/tags/',
- body: [],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/projects/',
- body: [TestStubs.Project()],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/dashboards/',
- body: [
- TestStubs.Dashboard([], {
- id: 'default-overview',
- title: 'Default',
- widgetDisplay: ['area'],
- }),
- TestStubs.Dashboard([], {
- id: '1',
- title: 'Custom Errors',
- widgetDisplay: ['area'],
- }),
- ],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/dashboards/1/',
- body: TestStubs.Dashboard(widgets, {
- id: '1',
- title: 'Custom Errors',
- filters: {release: ['abc@1.2.0']},
- }),
- });
- mockPut = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/dashboards/1/',
- method: 'PUT',
- body: TestStubs.Dashboard(widgets, {id: '1', title: 'Custom Errors'}),
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events-stats/',
- body: {data: []},
- });
- MockApiClient.addMockResponse({
- method: 'POST',
- url: '/organizations/org-slug/dashboards/widgets/',
- body: [],
- });
- MockApiClient.addMockResponse({
- method: 'GET',
- url: '/organizations/org-slug/recent-searches/',
- body: [],
- });
- MockApiClient.addMockResponse({
- method: 'GET',
- url: '/organizations/org-slug/issues/',
- body: [],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/eventsv2/',
- method: 'GET',
- body: [],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/users/',
- method: 'GET',
- body: [],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events-geo/',
- body: {data: [], meta: {}},
- });
- });
- afterEach(function () {
- MockApiClient.clearMockResponses();
- jest.clearAllMocks();
- if (wrapper) {
- wrapper.unmount();
- wrapper = null;
- }
- });
- it('can remove widgets', async function () {
- const updateMock = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/dashboards/1/',
- method: 'PUT',
- body: TestStubs.Dashboard([widgets[0]], {id: '1', title: 'Custom Errors'}),
- });
- wrapper = mountWithTheme(
- <OrganizationContext.Provider value={initialData.organization}>
- <ViewEditDashboard
- organization={initialData.organization}
- params={{orgId: 'org-slug', dashboardId: '1'}}
- router={initialData.router}
- location={initialData.router.location}
- />
- </OrganizationContext.Provider>,
- initialData.routerContext
- );
- await tick();
- wrapper.update();
- expect(mockVisit).toHaveBeenCalledTimes(1);
- // Enter edit mode.
- wrapper.find('Controls Button[data-test-id="dashboard-edit"]').simulate('click');
- // Remove the second and third widgets
- wrapper
- .find('WidgetCard')
- .at(1)
- .find('Button[data-test-id="widget-delete"]')
- .simulate('click');
- wrapper
- .find('WidgetCard')
- .at(1)
- .find('Button[data-test-id="widget-delete"]')
- .simulate('click');
- // Save changes
- wrapper.find('Controls Button[data-test-id="dashboard-commit"]').simulate('click');
- await tick();
- expect(updateMock).toHaveBeenCalled();
- expect(updateMock).toHaveBeenCalledWith(
- '/organizations/org-slug/dashboards/1/',
- expect.objectContaining({
- data: expect.objectContaining({
- title: 'Custom Errors',
- widgets: [expect.objectContaining(widgets[0])],
- }),
- })
- );
- // Visit should not be called again on dashboard update
- expect(mockVisit).toHaveBeenCalledTimes(1);
- });
- it('appends dashboard-level filters to series request', async function () {
- const mock = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events-stats/',
- body: [],
- });
- wrapper = mountWithTheme(
- <OrganizationContext.Provider value={initialData.organization}>
- <ViewEditDashboard
- organization={initialData.organization}
- params={{orgId: 'org-slug', dashboardId: '1'}}
- router={initialData.router}
- location={initialData.router.location}
- />
- </OrganizationContext.Provider>,
- initialData.routerContext
- );
- await tick();
- wrapper.update();
- expect(mock).toHaveBeenLastCalledWith(
- '/organizations/org-slug/events-stats/',
- expect.objectContaining({
- query: expect.objectContaining({
- query: 'event.type:transaction transaction:/api/cats release:abc@1.2.0 ',
- }),
- })
- );
- });
- it('can enter edit mode for widgets', async function () {
- wrapper = mountWithTheme(
- <OrganizationContext.Provider value={initialData.organization}>
- <ViewEditDashboard
- organization={initialData.organization}
- params={{orgId: 'org-slug', dashboardId: '1'}}
- router={initialData.router}
- location={initialData.router.location}
- />
- </OrganizationContext.Provider>,
- initialData.routerContext
- );
- await tick();
- wrapper.update();
- // Enter edit mode.
- wrapper.find('Controls Button[data-test-id="dashboard-edit"]').simulate('click');
- wrapper.update();
- const card = wrapper.find('WidgetCard').first();
- card.find('WidgetCardPanel').simulate('mouseOver');
- // Edit the first widget
- wrapper
- .find('WidgetCard')
- .first()
- .find('Button[data-test-id="widget-edit"]')
- .simulate('click');
- expect(openEditModal).toHaveBeenCalledTimes(1);
- expect(openEditModal).toHaveBeenCalledWith(
- expect.objectContaining({
- widget: {
- id: '1',
- interval: '1d',
- layout: {h: 2, minH: 2, w: 2, x: 0, y: 0},
- queries: [
- {
- conditions: 'event.type:error',
- fields: ['count()'],
- aggregates: ['count()'],
- columns: [],
- name: '',
- },
- ],
- title: 'Errors',
- type: 'line',
- },
- })
- );
- });
- it('shows add widget option', async function () {
- wrapper = mountWithTheme(
- <OrganizationContext.Provider value={initialData.organization}>
- <ViewEditDashboard
- organization={initialData.organization}
- params={{orgId: 'org-slug', dashboardId: '1'}}
- router={initialData.router}
- location={initialData.router.location}
- />
- </OrganizationContext.Provider>,
- initialData.routerContext
- );
- await tick();
- wrapper.update();
- // Enter edit mode.
- wrapper.find('Controls Button[data-test-id="dashboard-edit"]').simulate('click');
- wrapper.update();
- expect(wrapper.find('AddWidget').exists()).toBe(true);
- });
- it('opens custom modal when add widget option is clicked', async function () {
- wrapper = mountWithTheme(
- <OrganizationContext.Provider value={initialData.organization}>
- <ViewEditDashboard
- organization={initialData.organization}
- params={{orgId: 'org-slug', dashboardId: '1'}}
- router={initialData.router}
- location={initialData.router.location}
- />
- </OrganizationContext.Provider>,
- initialData.routerContext
- );
- await tick();
- wrapper.update();
- // Enter edit mode.
- wrapper.find('Controls Button[data-test-id="dashboard-edit"]').simulate('click');
- wrapper.update();
- wrapper.find('AddButton[data-test-id="widget-add"]').simulate('click');
- expect(openEditModal).toHaveBeenCalledTimes(1);
- });
- // eslint-disable-next-line jest/no-disabled-tests
- it.skip('shows top level release filter', async function () {
- const mockReleases = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/releases/',
- body: [TestStubs.Release()],
- });
- initialData = initializeOrg({
- organization: TestStubs.Organization({
- features: [
- 'global-views',
- 'dashboards-basic',
- 'dashboards-edit',
- 'discover-query',
- 'dashboards-top-level-filter',
- ],
- projects: [TestStubs.Project()],
- }),
- });
- wrapper = mountWithTheme(
- <OrganizationContext.Provider value={initialData.organization}>
- <ViewEditDashboard
- organization={initialData.organization}
- params={{orgId: 'org-slug', dashboardId: '1'}}
- router={initialData.router}
- location={initialData.router.location}
- />
- </OrganizationContext.Provider>,
- initialData.routerContext
- );
- await act(async () => {
- await tick();
- wrapper.update();
- });
- expect(wrapper.find('ReleasesSelectControl').exists()).toBe(true);
- expect(mockReleases).toHaveBeenCalledTimes(1);
- });
- it('opens widget library when add widget option is clicked', async function () {
- initialData = initializeOrg({
- organization: TestStubs.Organization({
- features: [
- 'global-views',
- 'dashboards-basic',
- 'dashboards-edit',
- 'discover-query',
- ],
- projects: [TestStubs.Project()],
- }),
- });
- wrapper = mountWithTheme(
- <OrganizationContext.Provider value={initialData.organization}>
- <ViewEditDashboard
- organization={initialData.organization}
- params={{orgId: 'org-slug', dashboardId: '1'}}
- router={initialData.router}
- location={initialData.router.location}
- />
- </OrganizationContext.Provider>,
- initialData.routerContext
- );
- await tick();
- wrapper.update();
- // Enter edit mode.
- wrapper.find('Controls Button[data-test-id="dashboard-edit"]').simulate('click');
- wrapper.update();
- wrapper.find('AddButton[data-test-id="widget-add"]').simulate('click');
- expect(openEditModal).toHaveBeenCalledTimes(1);
- expect(openEditModal).toHaveBeenCalledWith(
- expect.objectContaining({
- source: types.DashboardWidgetSource.LIBRARY,
- })
- );
- });
- it('hides add widget option', async function () {
- types.MAX_WIDGETS = 1;
- wrapper = mountWithTheme(
- <OrganizationContext.Provider value={initialData.organization}>
- <ViewEditDashboard
- organization={initialData.organization}
- params={{orgId: 'org-slug', dashboardId: '1'}}
- router={initialData.router}
- location={initialData.router.location}
- />
- </OrganizationContext.Provider>,
- initialData.routerContext
- );
- await tick();
- wrapper.update();
- // Enter edit mode.
- wrapper.find('Controls Button[data-test-id="dashboard-edit"]').simulate('click');
- wrapper.update();
- expect(wrapper.find('AddWidget').exists()).toBe(false);
- });
- it('renders successfully if more widgets than stored layouts', async function () {
- // A case where someone has async added widgets to a dashboard
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/dashboards/1/',
- body: TestStubs.Dashboard(
- [
- TestStubs.Widget(
- [
- {
- name: '',
- conditions: 'event.type:error',
- fields: ['count()'],
- aggregates: ['count()'],
- columns: [],
- },
- ],
- {
- title: 'First Widget',
- interval: '1d',
- id: '1',
- layout: {i: 'grid-item-1', x: 0, y: 0, w: 2, h: 6},
- }
- ),
- TestStubs.Widget(
- [
- {
- name: '',
- conditions: 'event.type:error',
- fields: ['count()'],
- aggregates: ['count()'],
- columns: [],
- },
- ],
- {
- title: 'Second Widget',
- interval: '1d',
- id: '2',
- }
- ),
- ],
- {id: '1', title: 'Custom Errors'}
- ),
- });
- render(
- <ViewEditDashboard
- organization={initialData.organization}
- params={{orgId: 'org-slug', dashboardId: '1'}}
- router={initialData.router}
- location={initialData.router.location}
- />,
- {context: initialData.routerContext, organization: initialData.organization}
- );
- await tick();
- await screen.findByText('First Widget');
- await screen.findByText('Second Widget');
- });
- it('does not trigger request if layout not updated', async () => {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/dashboards/1/',
- body: TestStubs.Dashboard(
- [
- TestStubs.Widget(
- [
- {
- name: '',
- conditions: 'event.type:error',
- fields: ['count()'],
- aggregates: ['count()'],
- columns: [],
- },
- ],
- {
- title: 'First Widget',
- interval: '1d',
- id: '1',
- layout: {i: 'grid-item-1', x: 0, y: 0, w: 2, h: 6},
- }
- ),
- ],
- {id: '1', title: 'Custom Errors'}
- ),
- });
- render(
- <ViewEditDashboard
- organization={initialData.organization}
- params={{orgId: 'org-slug', dashboardId: '1'}}
- router={initialData.router}
- location={initialData.router.location}
- />,
- {context: initialData.routerContext, organization: initialData.organization}
- );
- await tick();
- userEvent.click(screen.getByText('Edit Dashboard'));
- userEvent.click(screen.getByText('Save and Finish'));
- await tick();
- expect(screen.getByText('Edit Dashboard')).toBeInTheDocument();
- expect(mockPut).not.toHaveBeenCalled();
- });
- it('renders the custom resize handler for a widget', async () => {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/dashboards/1/',
- body: TestStubs.Dashboard(
- [
- TestStubs.Widget(
- [
- {
- name: '',
- conditions: 'event.type:error',
- fields: ['count()'],
- aggregates: ['count()'],
- columns: [],
- },
- ],
- {
- title: 'First Widget',
- interval: '1d',
- id: '1',
- layout: {i: 'grid-item-1', x: 0, y: 0, w: 2, h: 6},
- }
- ),
- ],
- {id: '1', title: 'Custom Errors'}
- ),
- });
- render(
- <ViewEditDashboard
- organization={initialData.organization}
- params={{orgId: 'org-slug', dashboardId: '1'}}
- router={initialData.router}
- location={initialData.router.location}
- />,
- {context: initialData.routerContext, organization: initialData.organization}
- );
- await tick();
- userEvent.click(await screen.findByText('Edit Dashboard'));
- const widget = screen.getByText('First Widget').closest('.react-grid-item');
- const resizeHandle = within(widget).getByTestId('custom-resize-handle');
- expect(resizeHandle).toBeVisible();
- });
- it('does not trigger an alert when the widgets have no layout and user cancels without changes', async () => {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/dashboards/1/',
- body: TestStubs.Dashboard(
- [
- TestStubs.Widget(
- [
- {
- name: '',
- conditions: 'event.type:error',
- fields: ['count()'],
- aggregates: ['count()'],
- columns: [],
- },
- ],
- {
- title: 'First Widget',
- interval: '1d',
- id: '1',
- layout: null,
- }
- ),
- ],
- {id: '1', title: 'Custom Errors'}
- ),
- });
- render(
- <ViewEditDashboard
- organization={initialData.organization}
- params={{orgId: 'org-slug', dashboardId: '1'}}
- router={initialData.router}
- location={initialData.router.location}
- />,
- {context: initialData.routerContext, organization: initialData.organization}
- );
- await tick();
- userEvent.click(await screen.findByText('Edit Dashboard'));
- userEvent.click(await screen.findByText('Cancel'));
- expect(window.confirm).not.toHaveBeenCalled();
- });
- it('opens the widget viewer modal using the widget id specified in the url', () => {
- const openWidgetViewerModal = jest.spyOn(modals, 'openWidgetViewerModal');
- const widget = TestStubs.Widget(
- [
- {
- name: '',
- conditions: 'event.type:error',
- fields: ['count()'],
- aggregates: ['count()'],
- columns: [],
- orderby: '',
- },
- ],
- {
- title: 'First Widget',
- interval: '1d',
- id: '1',
- layout: null,
- }
- );
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/dashboards/1/',
- body: TestStubs.Dashboard([widget], {id: '1', title: 'Custom Errors'}),
- });
- render(
- <ViewEditDashboard
- organization={initialData.organization}
- params={{orgId: 'org-slug', dashboardId: '1', widgetId: '1'}}
- router={initialData.router}
- location={{...initialData.router.location, pathname: '/widget/123/'}}
- />,
- {context: initialData.routerContext, organization: initialData.organization}
- );
- expect(openWidgetViewerModal).toHaveBeenCalledWith(
- expect.objectContaining({
- organization: initialData.organization,
- widget,
- onClose: expect.anything(),
- })
- );
- });
- it('redirects user to dashboard url if widget is not found', () => {
- const openWidgetViewerModal = jest.spyOn(modals, 'openWidgetViewerModal');
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/dashboards/1/',
- body: TestStubs.Dashboard([], {id: '1', title: 'Custom Errors'}),
- });
- render(
- <ViewEditDashboard
- organization={initialData.organization}
- params={{orgId: 'org-slug', dashboardId: '1', widgetId: '123'}}
- router={initialData.router}
- location={{...initialData.router.location, pathname: '/widget/123/'}}
- />,
- {context: initialData.routerContext, organization: initialData.organization}
- );
- expect(openWidgetViewerModal).not.toHaveBeenCalled();
- expect(initialData.router.replace).toHaveBeenCalledWith(
- expect.objectContaining({
- pathname: '/organizations/org-slug/dashboard/1/',
- query: {},
- })
- );
- });
- it('opens the edit widget modal when clicking the edit button', async () => {
- const widget = TestStubs.Widget(
- [
- {
- name: '',
- conditions: 'event.type:error',
- fields: ['count()'],
- aggregates: ['count()'],
- columns: [],
- orderby: '',
- },
- ],
- {
- title: 'First Widget',
- interval: '1d',
- id: '1',
- layout: null,
- }
- );
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/dashboards/1/',
- body: TestStubs.Dashboard([widget], {id: '1', title: 'Custom Errors'}),
- });
- render(
- <ViewEditDashboard
- organization={initialData.organization}
- params={{orgId: 'org-slug', dashboardId: '1', widgetId: '1'}}
- router={initialData.router}
- location={{...initialData.router.location, pathname: '/widget/123/'}}
- />,
- {context: initialData.routerContext, organization: initialData.organization}
- );
- renderGlobalModal({context: initialData.routerContext});
- userEvent.click(await screen.findByRole('button', {name: 'Edit Widget'}));
- expect(openEditModal).toHaveBeenCalledWith(
- expect.objectContaining({
- widget,
- organization: initialData.organization,
- source: DashboardWidgetSource.DASHBOARDS,
- })
- );
- });
- it('opens the widget viewer modal in a prebuilt dashboard using the widget id specified in the url', () => {
- const openWidgetViewerModal = jest.spyOn(modals, 'openWidgetViewerModal');
- render(
- <CreateDashboard
- organization={initialData.organization}
- params={{orgId: 'org-slug', templateId: 'default-template', widgetId: '2'}}
- router={initialData.router}
- location={{...initialData.router.location, pathname: '/widget/2/'}}
- />,
- {context: initialData.routerContext, organization: initialData.organization}
- );
- expect(openWidgetViewerModal).toHaveBeenCalledWith(
- expect.objectContaining({
- organization: initialData.organization,
- widget: expect.objectContaining({
- displayType: 'line',
- interval: '5m',
- queries: [
- {
- aggregates: ['count()'],
- columns: [],
- conditions: '!event.type:transaction',
- fields: ['count()'],
- name: 'Events',
- orderby: 'count()',
- },
- ],
- title: 'Events',
- widgetType: 'discover',
- }),
- onClose: expect.anything(),
- })
- );
- });
- it('saves a new dashboard with the page filters', async () => {
- const mockPOST = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/dashboards/',
- method: 'POST',
- body: [],
- });
- render(
- <CreateDashboard
- organization={{
- ...initialData.organization,
- features: [
- ...initialData.organization.features,
- 'dashboards-top-level-filter',
- ],
- }}
- params={{orgId: 'org-slug'}}
- router={initialData.router}
- location={{
- ...initialData.router.location,
- query: {
- ...initialData.router.location.query,
- statsPeriod: '7d',
- project: [2],
- environment: ['alpha', 'beta'],
- },
- }}
- />,
- {
- context: initialData.routerContext,
- organization: initialData.organization,
- }
- );
- userEvent.click(await screen.findByText('Save and Finish'));
- expect(mockPOST).toHaveBeenCalledWith(
- '/organizations/org-slug/dashboards/',
- expect.objectContaining({
- data: expect.objectContaining({
- projects: [2],
- environment: ['alpha', 'beta'],
- period: '7d',
- }),
- })
- );
- });
- it('saves a template with the page filters', async () => {
- const mockPOST = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/dashboards/',
- method: 'POST',
- body: [],
- });
- render(
- <CreateDashboard
- organization={{
- ...initialData.organization,
- features: [
- ...initialData.organization.features,
- 'dashboards-top-level-filter',
- ],
- }}
- params={{orgId: 'org-slug', templateId: 'default-template'}}
- router={initialData.router}
- location={{
- ...initialData.router.location,
- query: {
- ...initialData.router.location.query,
- statsPeriod: '7d',
- project: [2],
- environment: ['alpha', 'beta'],
- },
- }}
- />,
- {
- context: initialData.routerContext,
- organization: initialData.organization,
- }
- );
- userEvent.click(await screen.findByText('Add Dashboard'));
- expect(mockPOST).toHaveBeenCalledWith(
- '/organizations/org-slug/dashboards/',
- expect.objectContaining({
- data: expect.objectContaining({
- projects: [2],
- environment: ['alpha', 'beta'],
- period: '7d',
- }),
- })
- );
- });
- });
- });
|