mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 00:41:08 +08:00

* chore(dsahboard-datasource): delete barrel file * refactor(dashboards): update paths for dashboard ds imports * chore(betterer): update file * style(dashboard-datasource): fix linting errors
99 lines
3.9 KiB
TypeScript
99 lines
3.9 KiB
TypeScript
import { screen, render } from '@testing-library/react';
|
|
import userEvent from '@testing-library/user-event';
|
|
|
|
import { createTheme } from '@grafana/data';
|
|
import { selectors } from '@grafana/e2e-selectors';
|
|
import { SHARED_DASHBOARD_QUERY } from 'app/plugins/datasource/dashboard/constants';
|
|
|
|
import { PanelModel } from '../../state/PanelModel';
|
|
|
|
import { DashboardRow, UnthemedDashboardRow } from './DashboardRow';
|
|
|
|
describe('DashboardRow', () => {
|
|
let panel: PanelModel, dashboardMock: any;
|
|
|
|
beforeEach(() => {
|
|
dashboardMock = {
|
|
toggleRow: jest.fn(),
|
|
on: jest.fn(),
|
|
meta: {
|
|
canEdit: true,
|
|
},
|
|
events: { subscribe: jest.fn() },
|
|
getRowPanels: () => [],
|
|
};
|
|
|
|
panel = new PanelModel({ collapsed: false });
|
|
});
|
|
|
|
it('Should correctly show expanded state when the panel is expanded', () => {
|
|
render(<DashboardRow panel={panel} dashboard={dashboardMock} />);
|
|
const row = screen.getByTestId(selectors.components.DashboardRow.title(''));
|
|
expect(row).toBeInTheDocument();
|
|
expect(row).toHaveAttribute('aria-expanded', 'true');
|
|
});
|
|
|
|
it('Should correctly show expanded state when the panel is collapsed', async () => {
|
|
const panel = new PanelModel({ collapsed: true });
|
|
render(<DashboardRow panel={panel} dashboard={dashboardMock} />);
|
|
const row = screen.getByTestId(selectors.components.DashboardRow.title(''));
|
|
expect(row).toHaveAttribute('aria-expanded', 'false');
|
|
});
|
|
|
|
it('Should collapse after clicking title', async () => {
|
|
render(<DashboardRow panel={panel} dashboard={dashboardMock} />);
|
|
await userEvent.click(screen.getByTestId('data-testid dashboard-row-title-'));
|
|
expect(dashboardMock.toggleRow.mock.calls).toHaveLength(1);
|
|
});
|
|
|
|
it('Should subscribe to event during mount', () => {
|
|
render(<DashboardRow panel={panel} dashboard={dashboardMock} />);
|
|
expect(dashboardMock.events.subscribe.mock.calls).toHaveLength(1);
|
|
});
|
|
|
|
it('should have a row options and delete row button', () => {
|
|
render(<DashboardRow panel={panel} dashboard={dashboardMock} />);
|
|
expect(screen.getByRole('button', { name: 'Delete row' })).toBeInTheDocument();
|
|
expect(screen.getByRole('button', { name: 'Row options' })).toBeInTheDocument();
|
|
});
|
|
|
|
it('should not show row drag handle when cannot edit', () => {
|
|
dashboardMock.meta.canEdit = false;
|
|
render(<DashboardRow panel={panel} dashboard={dashboardMock} />);
|
|
expect(screen.queryByTestId('dashboard-row-container')).toBeInTheDocument();
|
|
expect(screen.queryByTestId('dashboard-row-drag')).not.toBeInTheDocument();
|
|
});
|
|
|
|
it('should have zero actions when cannot edit', () => {
|
|
dashboardMock.meta.canEdit = false;
|
|
panel = new PanelModel({ collapsed: false });
|
|
render(<DashboardRow panel={panel} dashboard={dashboardMock} />);
|
|
expect(screen.queryByRole('button', { name: 'Delete row' })).not.toBeInTheDocument();
|
|
expect(screen.queryByRole('button', { name: 'Row options' })).not.toBeInTheDocument();
|
|
});
|
|
|
|
it('Should return warning message when row panel has a panel with dashboard ds set', async () => {
|
|
const panel = new PanelModel({
|
|
datasource: {
|
|
type: 'datasource',
|
|
uid: SHARED_DASHBOARD_QUERY,
|
|
},
|
|
});
|
|
const rowPanel = new PanelModel({ collapsed: true, panels: [panel] });
|
|
const dashboardRow = new UnthemedDashboardRow({ panel: rowPanel, dashboard: dashboardMock, theme: createTheme() });
|
|
expect(dashboardRow.getWarning()).toBeDefined();
|
|
});
|
|
|
|
it('Should not return warning message when row panel does not have a panel with dashboard ds set', async () => {
|
|
const panel = new PanelModel({
|
|
datasource: {
|
|
type: 'datasource',
|
|
uid: 'ds-uid',
|
|
},
|
|
});
|
|
const rowPanel = new PanelModel({ collapsed: true, panels: [panel] });
|
|
const dashboardRow = new UnthemedDashboardRow({ panel: rowPanel, dashboard: dashboardMock, theme: createTheme() });
|
|
expect(dashboardRow.getWarning()).not.toBeDefined();
|
|
});
|
|
});
|