| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667 |
- import _ from 'lodash';
- import { DashboardModel } from '../state/DashboardModel';
- import { expect } from 'test/lib/common';
- jest.mock('app/core/services/context_srv', () => ({}));
- describe('given dashboard with panel repeat', () => {
- let dashboard;
- beforeEach(() => {
- const dashboardJSON = {
- panels: [
- { id: 1, type: 'row', gridPos: { x: 0, y: 0, h: 1, w: 24 } },
- { id: 2, repeat: 'apps', repeatDirection: 'h', gridPos: { x: 0, y: 1, h: 2, w: 8 } },
- ],
- templating: {
- list: [
- {
- name: 'apps',
- current: {
- text: 'se1, se2, se3',
- value: ['se1', 'se2', 'se3'],
- },
- options: [
- { text: 'se1', value: 'se1', selected: true },
- { text: 'se2', value: 'se2', selected: true },
- { text: 'se3', value: 'se3', selected: true },
- { text: 'se4', value: 'se4', selected: false },
- ],
- },
- ],
- },
- };
- dashboard = new DashboardModel(dashboardJSON);
- dashboard.processRepeats();
- });
- it('should repeat panels when row is expanding', () => {
- expect(dashboard.panels.length).toBe(4);
- // toggle row
- dashboard.toggleRow(dashboard.panels[0]);
- expect(dashboard.panels.length).toBe(1);
- // change variable
- dashboard.templating.list[0].options[2].selected = false;
- dashboard.templating.list[0].current = {
- text: 'se1, se2',
- value: ['se1', 'se2'],
- };
- // toggle row back
- dashboard.toggleRow(dashboard.panels[0]);
- expect(dashboard.panels.length).toBe(3);
- });
- });
- describe('given dashboard with panel repeat in horizontal direction', () => {
- let dashboard;
- beforeEach(() => {
- dashboard = new DashboardModel({
- panels: [
- {
- id: 2,
- repeat: 'apps',
- repeatDirection: 'h',
- gridPos: { x: 0, y: 0, h: 2, w: 24 },
- },
- ],
- templating: {
- list: [
- {
- name: 'apps',
- current: {
- text: 'se1, se2, se3',
- value: ['se1', 'se2', 'se3'],
- },
- options: [
- { text: 'se1', value: 'se1', selected: true },
- { text: 'se2', value: 'se2', selected: true },
- { text: 'se3', value: 'se3', selected: true },
- { text: 'se4', value: 'se4', selected: false },
- ],
- },
- ],
- },
- });
- dashboard.processRepeats();
- });
- it('should repeat panel 3 times', () => {
- expect(dashboard.panels.length).toBe(3);
- });
- it('should mark panel repeated', () => {
- expect(dashboard.panels[0].repeat).toBe('apps');
- expect(dashboard.panels[1].repeatPanelId).toBe(2);
- });
- it('should set scopedVars on panels', () => {
- expect(dashboard.panels[0].scopedVars.apps.value).toBe('se1');
- expect(dashboard.panels[1].scopedVars.apps.value).toBe('se2');
- expect(dashboard.panels[2].scopedVars.apps.value).toBe('se3');
- });
- it('should place on first row and adjust width so all fit', () => {
- expect(dashboard.panels[0].gridPos).toMatchObject({
- x: 0,
- y: 0,
- h: 2,
- w: 8,
- });
- expect(dashboard.panels[1].gridPos).toMatchObject({
- x: 8,
- y: 0,
- h: 2,
- w: 8,
- });
- expect(dashboard.panels[2].gridPos).toMatchObject({
- x: 16,
- y: 0,
- h: 2,
- w: 8,
- });
- });
- describe('After a second iteration', () => {
- beforeEach(() => {
- dashboard.panels[0].fill = 10;
- dashboard.processRepeats();
- });
- it('reused panel should copy properties from source', () => {
- expect(dashboard.panels[1].fill).toBe(10);
- });
- it('should have same panel count', () => {
- expect(dashboard.panels.length).toBe(3);
- });
- });
- describe('After a second iteration with different variable', () => {
- beforeEach(() => {
- dashboard.templating.list.push({
- name: 'server',
- current: { text: 'se1, se2, se3', value: ['se1'] },
- options: [{ text: 'se1', value: 'se1', selected: true }],
- });
- dashboard.panels[0].repeat = 'server';
- dashboard.processRepeats();
- });
- it('should remove scopedVars value for last variable', () => {
- expect(dashboard.panels[0].scopedVars.apps).toBe(undefined);
- });
- it('should have new variable value in scopedVars', () => {
- expect(dashboard.panels[0].scopedVars.server.value).toBe('se1');
- });
- });
- describe('After a second iteration and selected values reduced', () => {
- beforeEach(() => {
- dashboard.templating.list[0].options[1].selected = false;
- dashboard.processRepeats();
- });
- it('should clean up repeated panel', () => {
- expect(dashboard.panels.length).toBe(2);
- });
- });
- describe('After a second iteration and panel repeat is turned off', () => {
- beforeEach(() => {
- dashboard.panels[0].repeat = null;
- dashboard.processRepeats();
- });
- it('should clean up repeated panel', () => {
- expect(dashboard.panels.length).toBe(1);
- });
- it('should remove scoped vars from reused panel', () => {
- expect(dashboard.panels[0].scopedVars).toBe(undefined);
- });
- });
- });
- describe('given dashboard with panel repeat in vertical direction', () => {
- let dashboard;
- beforeEach(() => {
- dashboard = new DashboardModel({
- panels: [
- { id: 1, type: 'row', gridPos: { x: 0, y: 0, h: 1, w: 24 } },
- { id: 2, repeat: 'apps', repeatDirection: 'v', gridPos: { x: 5, y: 1, h: 2, w: 8 } },
- { id: 3, type: 'row', gridPos: { x: 0, y: 3, h: 1, w: 24 } },
- ],
- templating: {
- list: [
- {
- name: 'apps',
- current: {
- text: 'se1, se2, se3',
- value: ['se1', 'se2', 'se3'],
- },
- options: [
- { text: 'se1', value: 'se1', selected: true },
- { text: 'se2', value: 'se2', selected: true },
- { text: 'se3', value: 'se3', selected: true },
- { text: 'se4', value: 'se4', selected: false },
- ],
- },
- ],
- },
- });
- dashboard.processRepeats();
- });
- it('should place on items on top of each other and keep witdh', () => {
- expect(dashboard.panels[0].gridPos).toMatchObject({ x: 0, y: 0, h: 1, w: 24 }); // first row
- expect(dashboard.panels[1].gridPos).toMatchObject({ x: 5, y: 1, h: 2, w: 8 });
- expect(dashboard.panels[2].gridPos).toMatchObject({ x: 5, y: 3, h: 2, w: 8 });
- expect(dashboard.panels[3].gridPos).toMatchObject({ x: 5, y: 5, h: 2, w: 8 });
- expect(dashboard.panels[4].gridPos).toMatchObject({ x: 0, y: 7, h: 1, w: 24 }); // last row
- });
- });
- describe('given dashboard with row repeat and panel repeat in horizontal direction', () => {
- let dashboard, dashboardJSON;
- beforeEach(() => {
- dashboardJSON = {
- panels: [
- { id: 1, type: 'row', repeat: 'region', gridPos: { x: 0, y: 0, h: 1, w: 24 } },
- { id: 2, type: 'graph', repeat: 'app', gridPos: { x: 0, y: 1, h: 2, w: 6 } },
- ],
- templating: {
- list: [
- {
- name: 'region',
- current: {
- text: 'reg1, reg2',
- value: ['reg1', 'reg2'],
- },
- options: [{ text: 'reg1', value: 'reg1', selected: true }, { text: 'reg2', value: 'reg2', selected: true }],
- },
- {
- name: 'app',
- current: {
- text: 'se1, se2, se3, se4, se5, se6',
- value: ['se1', 'se2', 'se3', 'se4', 'se5', 'se6'],
- },
- options: [
- { text: 'se1', value: 'se1', selected: true },
- { text: 'se2', value: 'se2', selected: true },
- { text: 'se3', value: 'se3', selected: true },
- { text: 'se4', value: 'se4', selected: true },
- { text: 'se5', value: 'se5', selected: true },
- { text: 'se6', value: 'se6', selected: true },
- ],
- },
- ],
- },
- };
- dashboard = new DashboardModel(dashboardJSON);
- dashboard.processRepeats(false);
- });
- it('should panels in self row', () => {
- const panelTypes = _.map(dashboard.panels, 'type');
- expect(panelTypes).toEqual([
- 'row',
- 'graph',
- 'graph',
- 'graph',
- 'graph',
- 'graph',
- 'graph',
- 'row',
- 'graph',
- 'graph',
- 'graph',
- 'graph',
- 'graph',
- 'graph',
- ]);
- });
- it('should be placed in their places', () => {
- expect(dashboard.panels[0].gridPos).toMatchObject({ x: 0, y: 0, h: 1, w: 24 }); // 1st row
- expect(dashboard.panels[1].gridPos).toMatchObject({ x: 0, y: 1, h: 2, w: 6 });
- expect(dashboard.panels[2].gridPos).toMatchObject({ x: 6, y: 1, h: 2, w: 6 });
- expect(dashboard.panels[3].gridPos).toMatchObject({ x: 12, y: 1, h: 2, w: 6 });
- expect(dashboard.panels[4].gridPos).toMatchObject({ x: 18, y: 1, h: 2, w: 6 });
- expect(dashboard.panels[5].gridPos).toMatchObject({ x: 0, y: 3, h: 2, w: 6 }); // next row
- expect(dashboard.panels[6].gridPos).toMatchObject({ x: 6, y: 3, h: 2, w: 6 });
- expect(dashboard.panels[7].gridPos).toMatchObject({ x: 0, y: 5, h: 1, w: 24 });
- expect(dashboard.panels[8].gridPos).toMatchObject({ x: 0, y: 6, h: 2, w: 6 }); // 2nd row
- expect(dashboard.panels[9].gridPos).toMatchObject({ x: 6, y: 6, h: 2, w: 6 });
- expect(dashboard.panels[10].gridPos).toMatchObject({ x: 12, y: 6, h: 2, w: 6 });
- expect(dashboard.panels[11].gridPos).toMatchObject({ x: 18, y: 6, h: 2, w: 6 }); // next row
- expect(dashboard.panels[12].gridPos).toMatchObject({ x: 0, y: 8, h: 2, w: 6 });
- expect(dashboard.panels[13].gridPos).toMatchObject({ x: 6, y: 8, h: 2, w: 6 });
- });
- });
- describe('given dashboard with row repeat', () => {
- let dashboard, dashboardJSON;
- beforeEach(() => {
- dashboardJSON = {
- panels: [
- {
- id: 1,
- type: 'row',
- gridPos: { x: 0, y: 0, h: 1, w: 24 },
- repeat: 'apps',
- },
- { id: 2, type: 'graph', gridPos: { x: 0, y: 1, h: 1, w: 6 } },
- { id: 3, type: 'graph', gridPos: { x: 6, y: 1, h: 1, w: 6 } },
- { id: 4, type: 'row', gridPos: { x: 0, y: 2, h: 1, w: 24 } },
- { id: 5, type: 'graph', gridPos: { x: 0, y: 3, h: 1, w: 12 } },
- ],
- templating: {
- list: [
- {
- name: 'apps',
- current: {
- text: 'se1, se2',
- value: ['se1', 'se2'],
- },
- options: [
- { text: 'se1', value: 'se1', selected: true },
- { text: 'se2', value: 'se2', selected: true },
- { text: 'se3', value: 'se3', selected: false },
- ],
- },
- ],
- },
- };
- dashboard = new DashboardModel(dashboardJSON);
- dashboard.processRepeats();
- });
- it('should not repeat only row', () => {
- const panelTypes = _.map(dashboard.panels, 'type');
- expect(panelTypes).toEqual(['row', 'graph', 'graph', 'row', 'graph', 'graph', 'row', 'graph']);
- });
- it('should set scopedVars for each panel', () => {
- dashboardJSON.templating.list[0].options[2].selected = true;
- dashboard = new DashboardModel(dashboardJSON);
- dashboard.processRepeats();
- expect(dashboard.panels[1].scopedVars).toMatchObject({
- apps: { text: 'se1', value: 'se1' },
- });
- expect(dashboard.panels[4].scopedVars).toMatchObject({
- apps: { text: 'se2', value: 'se2' },
- });
- const scopedVars = _.compact(
- _.map(dashboard.panels, panel => {
- return panel.scopedVars ? panel.scopedVars.apps.value : null;
- })
- );
- expect(scopedVars).toEqual(['se1', 'se1', 'se1', 'se2', 'se2', 'se2', 'se3', 'se3', 'se3']);
- });
- it('should repeat only configured row', () => {
- expect(dashboard.panels[6].id).toBe(4);
- expect(dashboard.panels[7].id).toBe(5);
- });
- it('should repeat only row if it is collapsed', () => {
- dashboardJSON.panels = [
- {
- id: 1,
- type: 'row',
- collapsed: true,
- repeat: 'apps',
- gridPos: { x: 0, y: 0, h: 1, w: 24 },
- panels: [
- { id: 2, type: 'graph', gridPos: { x: 0, y: 1, h: 1, w: 6 } },
- { id: 3, type: 'graph', gridPos: { x: 6, y: 1, h: 1, w: 6 } },
- ],
- },
- { id: 4, type: 'row', gridPos: { x: 0, y: 1, h: 1, w: 24 } },
- { id: 5, type: 'graph', gridPos: { x: 0, y: 2, h: 1, w: 12 } },
- ];
- dashboard = new DashboardModel(dashboardJSON);
- dashboard.processRepeats();
- const panelTypes = _.map(dashboard.panels, 'type');
- expect(panelTypes).toEqual(['row', 'row', 'row', 'graph']);
- expect(dashboard.panels[0].panels).toHaveLength(2);
- expect(dashboard.panels[1].panels).toHaveLength(2);
- });
- it('should properly repeat multiple rows', () => {
- dashboardJSON.panels = [
- {
- id: 1,
- type: 'row',
- gridPos: { x: 0, y: 0, h: 1, w: 24 },
- repeat: 'apps',
- }, // repeat
- { id: 2, type: 'graph', gridPos: { x: 0, y: 1, h: 1, w: 6 } },
- { id: 3, type: 'graph', gridPos: { x: 6, y: 1, h: 1, w: 6 } },
- { id: 4, type: 'row', gridPos: { x: 0, y: 2, h: 1, w: 24 } }, // don't touch
- { id: 5, type: 'graph', gridPos: { x: 0, y: 3, h: 1, w: 12 } },
- {
- id: 6,
- type: 'row',
- gridPos: { x: 0, y: 4, h: 1, w: 24 },
- repeat: 'hosts',
- }, // repeat
- { id: 7, type: 'graph', gridPos: { x: 0, y: 5, h: 1, w: 6 } },
- { id: 8, type: 'graph', gridPos: { x: 6, y: 5, h: 1, w: 6 } },
- ];
- dashboardJSON.templating.list.push({
- name: 'hosts',
- current: {
- text: 'backend01, backend02',
- value: ['backend01', 'backend02'],
- },
- options: [
- { text: 'backend01', value: 'backend01', selected: true },
- { text: 'backend02', value: 'backend02', selected: true },
- { text: 'backend03', value: 'backend03', selected: false },
- ],
- });
- dashboard = new DashboardModel(dashboardJSON);
- dashboard.processRepeats();
- const panelTypes = _.map(dashboard.panels, 'type');
- expect(panelTypes).toEqual([
- 'row',
- 'graph',
- 'graph',
- 'row',
- 'graph',
- 'graph',
- 'row',
- 'graph',
- 'row',
- 'graph',
- 'graph',
- 'row',
- 'graph',
- 'graph',
- ]);
- expect(dashboard.panels[0].scopedVars['apps'].value).toBe('se1');
- expect(dashboard.panels[1].scopedVars['apps'].value).toBe('se1');
- expect(dashboard.panels[3].scopedVars['apps'].value).toBe('se2');
- expect(dashboard.panels[4].scopedVars['apps'].value).toBe('se2');
- expect(dashboard.panels[8].scopedVars['hosts'].value).toBe('backend01');
- expect(dashboard.panels[9].scopedVars['hosts'].value).toBe('backend01');
- expect(dashboard.panels[11].scopedVars['hosts'].value).toBe('backend02');
- expect(dashboard.panels[12].scopedVars['hosts'].value).toBe('backend02');
- });
- it('should assign unique ids for repeated panels', () => {
- dashboardJSON.panels = [
- {
- id: 1,
- type: 'row',
- collapsed: true,
- repeat: 'apps',
- gridPos: { x: 0, y: 0, h: 1, w: 24 },
- panels: [
- { id: 2, type: 'graph', gridPos: { x: 0, y: 1, h: 1, w: 6 } },
- { id: 3, type: 'graph', gridPos: { x: 6, y: 1, h: 1, w: 6 } },
- ],
- },
- { id: 4, type: 'row', gridPos: { x: 0, y: 1, h: 1, w: 24 } },
- { id: 5, type: 'graph', gridPos: { x: 0, y: 2, h: 1, w: 12 } },
- ];
- dashboard = new DashboardModel(dashboardJSON);
- dashboard.processRepeats();
- const panelIds = _.flattenDeep(
- _.map(dashboard.panels, panel => {
- let ids = [];
- if (panel.panels && panel.panels.length) {
- ids = _.map(panel.panels, 'id');
- }
- ids.push(panel.id);
- return ids;
- })
- );
- expect(panelIds.length).toEqual(_.uniq(panelIds).length);
- });
- it('should place new panels in proper order', () => {
- dashboardJSON.panels = [
- { id: 1, type: 'row', gridPos: { x: 0, y: 0, h: 1, w: 24 }, repeat: 'apps' },
- { id: 2, type: 'graph', gridPos: { x: 0, y: 1, h: 3, w: 12 } },
- { id: 3, type: 'graph', gridPos: { x: 6, y: 1, h: 4, w: 12 } },
- { id: 4, type: 'graph', gridPos: { x: 0, y: 5, h: 2, w: 12 } },
- ];
- dashboard = new DashboardModel(dashboardJSON);
- dashboard.processRepeats();
- const panelTypes = _.map(dashboard.panels, 'type');
- expect(panelTypes).toEqual(['row', 'graph', 'graph', 'graph', 'row', 'graph', 'graph', 'graph']);
- const panelYPositions = _.map(dashboard.panels, p => p.gridPos.y);
- expect(panelYPositions).toEqual([0, 1, 1, 5, 7, 8, 8, 12]);
- });
- });
- describe('given dashboard with row and panel repeat', () => {
- let dashboard, dashboardJSON;
- beforeEach(() => {
- dashboardJSON = {
- panels: [
- {
- id: 1,
- type: 'row',
- repeat: 'region',
- gridPos: { x: 0, y: 0, h: 1, w: 24 },
- },
- { id: 2, type: 'graph', repeat: 'app', gridPos: { x: 0, y: 1, h: 1, w: 6 } },
- ],
- templating: {
- list: [
- {
- name: 'region',
- current: {
- text: 'reg1, reg2',
- value: ['reg1', 'reg2'],
- },
- options: [
- { text: 'reg1', value: 'reg1', selected: true },
- { text: 'reg2', value: 'reg2', selected: true },
- { text: 'reg3', value: 'reg3', selected: false },
- ],
- },
- {
- name: 'app',
- current: {
- text: 'se1, se2',
- value: ['se1', 'se2'],
- },
- options: [
- { text: 'se1', value: 'se1', selected: true },
- { text: 'se2', value: 'se2', selected: true },
- { text: 'se3', value: 'se3', selected: false },
- ],
- },
- ],
- },
- };
- dashboard = new DashboardModel(dashboardJSON);
- dashboard.processRepeats();
- });
- it('should repeat row and panels for each row', () => {
- const panelTypes = _.map(dashboard.panels, 'type');
- expect(panelTypes).toEqual(['row', 'graph', 'graph', 'row', 'graph', 'graph']);
- });
- it('should clean up old repeated panels', () => {
- dashboardJSON.panels = [
- {
- id: 1,
- type: 'row',
- repeat: 'region',
- gridPos: { x: 0, y: 0, h: 1, w: 24 },
- },
- { id: 2, type: 'graph', repeat: 'app', gridPos: { x: 0, y: 1, h: 1, w: 6 } },
- { id: 3, type: 'graph', repeatPanelId: 2, repeatIteration: 101, gridPos: { x: 7, y: 1, h: 1, w: 6 } },
- {
- id: 11,
- type: 'row',
- repeatPanelId: 1,
- repeatIteration: 101,
- gridPos: { x: 0, y: 2, h: 1, w: 24 },
- },
- { id: 12, type: 'graph', repeatPanelId: 2, repeatIteration: 101, gridPos: { x: 0, y: 3, h: 1, w: 6 } },
- ];
- dashboard = new DashboardModel(dashboardJSON);
- dashboard.processRepeats();
- const panelTypes = _.map(dashboard.panels, 'type');
- expect(panelTypes).toEqual(['row', 'graph', 'graph', 'row', 'graph', 'graph']);
- });
- it('should set scopedVars for each row', () => {
- dashboard = new DashboardModel(dashboardJSON);
- dashboard.processRepeats();
- expect(dashboard.panels[0].scopedVars).toMatchObject({
- region: { text: 'reg1', value: 'reg1' },
- });
- expect(dashboard.panels[3].scopedVars).toMatchObject({
- region: { text: 'reg2', value: 'reg2' },
- });
- });
- it('should set panel-repeat variable for each panel', () => {
- dashboard = new DashboardModel(dashboardJSON);
- dashboard.processRepeats();
- expect(dashboard.panels[1].scopedVars).toMatchObject({
- app: { text: 'se1', value: 'se1' },
- });
- expect(dashboard.panels[2].scopedVars).toMatchObject({
- app: { text: 'se2', value: 'se2' },
- });
- expect(dashboard.panels[4].scopedVars).toMatchObject({
- app: { text: 'se1', value: 'se1' },
- });
- expect(dashboard.panels[5].scopedVars).toMatchObject({
- app: { text: 'se2', value: 'se2' },
- });
- });
- it('should set row-repeat variable for each panel', () => {
- dashboard = new DashboardModel(dashboardJSON);
- dashboard.processRepeats();
- expect(dashboard.panels[1].scopedVars).toMatchObject({
- region: { text: 'reg1', value: 'reg1' },
- });
- expect(dashboard.panels[2].scopedVars).toMatchObject({
- region: { text: 'reg1', value: 'reg1' },
- });
- expect(dashboard.panels[4].scopedVars).toMatchObject({
- region: { text: 'reg2', value: 'reg2' },
- });
- expect(dashboard.panels[5].scopedVars).toMatchObject({
- region: { text: 'reg2', value: 'reg2' },
- });
- });
- it('should repeat panels when row is expanding', () => {
- dashboard = new DashboardModel(dashboardJSON);
- dashboard.processRepeats();
- expect(dashboard.panels.length).toBe(6);
- // toggle row
- dashboard.toggleRow(dashboard.panels[0]);
- dashboard.toggleRow(dashboard.panels[1]);
- expect(dashboard.panels.length).toBe(2);
- // change variable
- dashboard.templating.list[1].current.value = ['se1', 'se2', 'se3'];
- // toggle row back
- dashboard.toggleRow(dashboard.panels[1]);
- expect(dashboard.panels.length).toBe(4);
- });
- });
|