The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/features/dashboard/state/utils.test.ts

62 lines
2.4 KiB

import { PanelModel } from './PanelModel';
import { deleteScopeVars, isOnTheSameGridRow } from './utils';
import { REPEAT_DIR_HORIZONTAL } from '../../../core/constants';
describe('isOnTheSameGridRow', () => {
describe('when source panel is next to a panel', () => {
it('then it should return true', () => {
const sourcePanel: PanelModel = ({ gridPos: { x: 0, y: 1, w: 4, h: 4 } } as unknown) as PanelModel;
const otherPanel: PanelModel = ({ gridPos: { x: 4, y: 1, w: 4, h: 4 } } as unknown) as PanelModel;
expect(isOnTheSameGridRow(sourcePanel, otherPanel)).toBe(true);
});
});
describe('when source panel is not next to a panel', () => {
it('then it should return false', () => {
const sourcePanel: PanelModel = ({ gridPos: { x: 0, y: 1, w: 4, h: 4 } } as unknown) as PanelModel;
const otherPanel: PanelModel = ({ gridPos: { x: 4, y: 5, w: 4, h: 4 } } as unknown) as PanelModel;
expect(isOnTheSameGridRow(sourcePanel, otherPanel)).toBe(false);
});
});
describe('when source panel is repeated horizontally', () => {
it('then it should return false', () => {
const sourcePanel: PanelModel = ({
gridPos: { x: 0, y: 1, w: 4, h: 4 },
repeatDirection: REPEAT_DIR_HORIZONTAL,
} as unknown) as PanelModel;
const otherPanel: PanelModel = ({ gridPos: { x: 4, y: 1, w: 4, h: 4 } } as unknown) as PanelModel;
expect(isOnTheSameGridRow(sourcePanel, otherPanel)).toBe(false);
});
});
});
describe('deleteScopeVars', () => {
describe('when called with a collapsed row with panels', () => {
it('then scopedVars should be deleted on the row and all collapsed panels', () => {
const panel1 = new PanelModel({
id: 1,
type: 'row',
collapsed: true,
scopedVars: { job: { value: 'myjob', text: 'myjob' } },
panels: [
{ id: 2, type: 'graph', title: 'Graph', scopedVars: { job: { value: 'myjob', text: 'myjob' } } },
{ id: 3, type: 'graph2', title: 'Graph2', scopedVars: { job: { value: 'myjob', text: 'myjob' } } },
],
});
expect(panel1.scopedVars).toBeDefined();
expect(panel1.panels[0].scopedVars).toBeDefined();
expect(panel1.panels[1].scopedVars).toBeDefined();
deleteScopeVars([panel1]);
expect(panel1.scopedVars).toBeUndefined();
expect(panel1.panels[0].scopedVars).toBeUndefined();
expect(panel1.panels[1].scopedVars).toBeUndefined();
});
});
});