| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423 |
- import _ from "lodash";
- import { DashboardModel } from "../dashboard_model";
- import { PanelModel } from "../panel_model";
- import { GRID_CELL_HEIGHT, GRID_CELL_VMARGIN } from "app/core/constants";
- import { expect } from "test/lib/common";
- jest.mock("app/core/services/context_srv", () => ({}));
- describe("DashboardModel", function() {
- describe("when creating dashboard with old schema", function() {
- var model;
- var graph;
- var singlestat;
- var table;
- beforeEach(function() {
- model = new DashboardModel({
- services: {
- filter: { time: { from: "now-1d", to: "now" }, list: [{}] }
- },
- pulldowns: [
- { type: "filtering", enable: true },
- { type: "annotations", enable: true, annotations: [{ name: "old" }] }
- ],
- panels: [
- {
- type: "graph",
- legend: true,
- aliasYAxis: { test: 2 },
- y_formats: ["kbyte", "ms"],
- grid: {
- min: 1,
- max: 10,
- rightMin: 5,
- rightMax: 15,
- leftLogBase: 1,
- rightLogBase: 2,
- threshold1: 200,
- threshold2: 400,
- threshold1Color: "yellow",
- threshold2Color: "red"
- },
- leftYAxisLabel: "left label",
- targets: [{ refId: "A" }, {}]
- },
- {
- type: "singlestat",
- legend: true,
- thresholds: "10,20,30",
- aliasYAxis: { test: 2 },
- grid: { min: 1, max: 10 },
- targets: [{ refId: "A" }, {}]
- },
- {
- type: "table",
- legend: true,
- styles: [
- { thresholds: ["10", "20", "30"] },
- { thresholds: ["100", "200", "300"] }
- ],
- targets: [{ refId: "A" }, {}]
- }
- ]
- });
- graph = model.panels[0];
- singlestat = model.panels[1];
- table = model.panels[2];
- });
- it("should have title", function() {
- expect(model.title).toBe("No Title");
- });
- it("should have panel id", function() {
- expect(graph.id).toBe(1);
- });
- it("should move time and filtering list", function() {
- expect(model.time.from).toBe("now-1d");
- expect(model.templating.list[0].allFormat).toBe("glob");
- });
- it("graphite panel should change name too graph", function() {
- expect(graph.type).toBe("graph");
- });
- it("single stat panel should have two thresholds", function() {
- expect(singlestat.thresholds).toBe("20,30");
- });
- it("queries without refId should get it", function() {
- expect(graph.targets[1].refId).toBe("B");
- });
- it("update legend setting", function() {
- expect(graph.legend.show).toBe(true);
- });
- it("move aliasYAxis to series override", function() {
- expect(graph.seriesOverrides[0].alias).toBe("test");
- expect(graph.seriesOverrides[0].yaxis).toBe(2);
- });
- it("should move pulldowns to new schema", function() {
- expect(model.annotations.list[1].name).toBe("old");
- });
- it("table panel should only have two thresholds values", function() {
- expect(table.styles[0].thresholds[0]).toBe("20");
- expect(table.styles[0].thresholds[1]).toBe("30");
- expect(table.styles[1].thresholds[0]).toBe("200");
- expect(table.styles[1].thresholds[1]).toBe("300");
- });
- it("graph grid to yaxes options", function() {
- expect(graph.yaxes[0].min).toBe(1);
- expect(graph.yaxes[0].max).toBe(10);
- expect(graph.yaxes[0].format).toBe("kbyte");
- expect(graph.yaxes[0].label).toBe("left label");
- expect(graph.yaxes[0].logBase).toBe(1);
- expect(graph.yaxes[1].min).toBe(5);
- expect(graph.yaxes[1].max).toBe(15);
- expect(graph.yaxes[1].format).toBe("ms");
- expect(graph.yaxes[1].logBase).toBe(2);
- expect(graph.grid.rightMax).toBe(undefined);
- expect(graph.grid.rightLogBase).toBe(undefined);
- expect(graph.y_formats).toBe(undefined);
- });
- it("dashboard schema version should be set to latest", function() {
- expect(model.schemaVersion).toBe(16);
- });
- it("graph thresholds should be migrated", function() {
- expect(graph.thresholds.length).toBe(2);
- expect(graph.thresholds[0].op).toBe("gt");
- expect(graph.thresholds[0].value).toBe(200);
- expect(graph.thresholds[0].fillColor).toBe("yellow");
- expect(graph.thresholds[1].value).toBe(400);
- expect(graph.thresholds[1].fillColor).toBe("red");
- });
- });
- describe("when migrating to the grid layout", function() {
- let model;
- beforeEach(function() {
- model = {
- rows: []
- };
- });
- it("should create proper grid", function() {
- model.rows = [createRow({ collapse: false, height: 8 }, [[6], [6]])];
- let dashboard = new DashboardModel(model);
- let panelGridPos = getGridPositions(dashboard);
- let expectedGrid = [
- { x: 0, y: 0, w: 12, h: 8 },
- { x: 12, y: 0, w: 12, h: 8 }
- ];
- expect(panelGridPos).toEqual(expectedGrid);
- });
- it('should add special "row" panel if row is collapsed', function() {
- model.rows = [
- createRow({ collapse: true, height: 8 }, [[6], [6]]),
- createRow({ height: 8 }, [[12]])
- ];
- let dashboard = new DashboardModel(model);
- let panelGridPos = getGridPositions(dashboard);
- let expectedGrid = [
- { x: 0, y: 0, w: 24, h: 8 }, // row
- { x: 0, y: 1, w: 24, h: 8 }, // row
- { x: 0, y: 2, w: 24, h: 8 }
- ];
- expect(panelGridPos).toEqual(expectedGrid);
- });
- it('should add special "row" panel if row has visible title', function() {
- model.rows = [
- createRow({ showTitle: true, title: "Row", height: 8 }, [[6], [6]]),
- createRow({ height: 8 }, [[12]])
- ];
- let dashboard = new DashboardModel(model);
- let panelGridPos = getGridPositions(dashboard);
- let expectedGrid = [
- { x: 0, y: 0, w: 24, h: 8 }, // row
- { x: 0, y: 1, w: 12, h: 8 },
- { x: 12, y: 1, w: 12, h: 8 },
- { x: 0, y: 9, w: 24, h: 8 }, // row
- { x: 0, y: 10, w: 24, h: 8 }
- ];
- expect(panelGridPos).toEqual(expectedGrid);
- });
- it('should not add "row" panel if row has not visible title or not collapsed', function() {
- model.rows = [
- createRow({ collapse: true, height: 8 }, [[12]]),
- createRow({ height: 8 }, [[12]]),
- createRow({ height: 8 }, [[12], [6], [6]]),
- createRow({ collapse: true, height: 8 }, [[12]])
- ];
- let dashboard = new DashboardModel(model);
- let panelGridPos = getGridPositions(dashboard);
- let expectedGrid = [
- { x: 0, y: 0, w: 24, h: 8 }, // row
- { x: 0, y: 1, w: 24, h: 8 }, // row
- { x: 0, y: 2, w: 24, h: 8 },
- { x: 0, y: 10, w: 24, h: 8 }, // row
- { x: 0, y: 11, w: 24, h: 8 },
- { x: 0, y: 19, w: 12, h: 8 },
- { x: 12, y: 19, w: 12, h: 8 },
- { x: 0, y: 27, w: 24, h: 8 } // row
- ];
- expect(panelGridPos).toEqual(expectedGrid);
- });
- it("should add all rows if even one collapsed or titled row is present", function() {
- model.rows = [
- createRow({ collapse: true, height: 8 }, [[6], [6]]),
- createRow({ height: 8 }, [[12]])
- ];
- let dashboard = new DashboardModel(model);
- let panelGridPos = getGridPositions(dashboard);
- let expectedGrid = [
- { x: 0, y: 0, w: 24, h: 8 }, // row
- { x: 0, y: 1, w: 24, h: 8 }, // row
- { x: 0, y: 2, w: 24, h: 8 }
- ];
- expect(panelGridPos).toEqual(expectedGrid);
- });
- it("should properly place panels with fixed height", function() {
- model.rows = [
- createRow({ height: 6 }, [[6], [6, 3], [6, 3]]),
- createRow({ height: 6 }, [[4], [4], [4, 3], [4, 3]])
- ];
- let dashboard = new DashboardModel(model);
- let panelGridPos = getGridPositions(dashboard);
- let expectedGrid = [
- { x: 0, y: 0, w: 12, h: 6 },
- { x: 12, y: 0, w: 12, h: 3 },
- { x: 12, y: 3, w: 12, h: 3 },
- { x: 0, y: 6, w: 8, h: 6 },
- { x: 8, y: 6, w: 8, h: 6 },
- { x: 16, y: 6, w: 8, h: 3 },
- { x: 16, y: 9, w: 8, h: 3 }
- ];
- expect(panelGridPos).toEqual(expectedGrid);
- });
- it("should place panel to the right side of panel having bigger height", function() {
- model.rows = [
- createRow({ height: 6 }, [[4], [2, 3], [4, 6], [2, 3], [2, 3]])
- ];
- let dashboard = new DashboardModel(model);
- let panelGridPos = getGridPositions(dashboard);
- let expectedGrid = [
- { x: 0, y: 0, w: 8, h: 6 },
- { x: 8, y: 0, w: 4, h: 3 },
- { x: 12, y: 0, w: 8, h: 6 },
- { x: 20, y: 0, w: 4, h: 3 },
- { x: 20, y: 3, w: 4, h: 3 }
- ];
- expect(panelGridPos).toEqual(expectedGrid);
- });
- it("should fill current row if it possible", function() {
- model.rows = [
- createRow({ height: 9 }, [[4], [2, 3], [4, 6], [2, 3], [2, 3], [8, 3]])
- ];
- let dashboard = new DashboardModel(model);
- let panelGridPos = getGridPositions(dashboard);
- let expectedGrid = [
- { x: 0, y: 0, w: 8, h: 9 },
- { x: 8, y: 0, w: 4, h: 3 },
- { x: 12, y: 0, w: 8, h: 6 },
- { x: 20, y: 0, w: 4, h: 3 },
- { x: 20, y: 3, w: 4, h: 3 },
- { x: 8, y: 6, w: 16, h: 3 }
- ];
- expect(panelGridPos).toEqual(expectedGrid);
- });
- it("should fill current row if it possible (2)", function() {
- model.rows = [
- createRow({ height: 8 }, [[4], [2, 3], [4, 6], [2, 3], [2, 3], [8, 3]])
- ];
- let dashboard = new DashboardModel(model);
- let panelGridPos = getGridPositions(dashboard);
- let expectedGrid = [
- { x: 0, y: 0, w: 8, h: 8 },
- { x: 8, y: 0, w: 4, h: 3 },
- { x: 12, y: 0, w: 8, h: 6 },
- { x: 20, y: 0, w: 4, h: 3 },
- { x: 20, y: 3, w: 4, h: 3 },
- { x: 8, y: 6, w: 16, h: 3 }
- ];
- expect(panelGridPos).toEqual(expectedGrid);
- });
- it("should fill current row if panel height more than row height", function() {
- model.rows = [
- createRow({ height: 6 }, [[4], [2, 3], [4, 8], [2, 3], [2, 3]])
- ];
- let dashboard = new DashboardModel(model);
- let panelGridPos = getGridPositions(dashboard);
- let expectedGrid = [
- { x: 0, y: 0, w: 8, h: 6 },
- { x: 8, y: 0, w: 4, h: 3 },
- { x: 12, y: 0, w: 8, h: 8 },
- { x: 20, y: 0, w: 4, h: 3 },
- { x: 20, y: 3, w: 4, h: 3 }
- ];
- expect(panelGridPos).toEqual(expectedGrid);
- });
- it("should wrap panels to multiple rows", function() {
- model.rows = [createRow({ height: 6 }, [[6], [6], [12], [6], [3], [3]])];
- let dashboard = new DashboardModel(model);
- let panelGridPos = getGridPositions(dashboard);
- let expectedGrid = [
- { x: 0, y: 0, w: 12, h: 6 },
- { x: 12, y: 0, w: 12, h: 6 },
- { x: 0, y: 6, w: 24, h: 6 },
- { x: 0, y: 12, w: 12, h: 6 },
- { x: 12, y: 12, w: 6, h: 6 },
- { x: 18, y: 12, w: 6, h: 6 }
- ];
- expect(panelGridPos).toEqual(expectedGrid);
- });
- it("should add repeated row if repeat set", function() {
- model.rows = [
- createRow(
- { showTitle: true, title: "Row", height: 8, repeat: "server" },
- [[6]]
- ),
- createRow({ height: 8 }, [[12]])
- ];
- let dashboard = new DashboardModel(model);
- let panelGridPos = getGridPositions(dashboard);
- let expectedGrid = [
- { x: 0, y: 0, w: 24, h: 8 },
- { x: 0, y: 1, w: 12, h: 8 },
- { x: 0, y: 9, w: 24, h: 8 },
- { x: 0, y: 10, w: 24, h: 8 }
- ];
- expect(panelGridPos).toEqual(expectedGrid);
- expect(dashboard.panels[0].repeat).toBe("server");
- expect(dashboard.panels[1].repeat).toBeUndefined();
- expect(dashboard.panels[2].repeat).toBeUndefined();
- expect(dashboard.panels[3].repeat).toBeUndefined();
- });
- it("should ignore repeated row", function() {
- model.rows = [
- createRow(
- { showTitle: true, title: "Row1", height: 8, repeat: "server" },
- [[6]]
- ),
- createRow(
- {
- showTitle: true,
- title: "Row2",
- height: 8,
- repeatIteration: 12313,
- repeatRowId: 1
- },
- [[6]]
- )
- ];
- let dashboard = new DashboardModel(model);
- expect(dashboard.panels[0].repeat).toBe("server");
- expect(dashboard.panels.length).toBe(2);
- });
- });
- });
- function createRow(options, panelDescriptions: any[]) {
- const PANEL_HEIGHT_STEP = GRID_CELL_HEIGHT + GRID_CELL_VMARGIN;
- let { collapse, height, showTitle, title, repeat, repeatIteration } = options;
- height = height * PANEL_HEIGHT_STEP;
- let panels = [];
- _.each(panelDescriptions, panelDesc => {
- let panel = { span: panelDesc[0] };
- if (panelDesc.length > 1) {
- panel["height"] = panelDesc[1] * PANEL_HEIGHT_STEP;
- }
- panels.push(panel);
- });
- let row = {
- collapse,
- height,
- showTitle,
- title,
- panels,
- repeat,
- repeatIteration
- };
- return row;
- }
- function getGridPositions(dashboard: DashboardModel) {
- return _.map(dashboard.panels, (panel: PanelModel) => {
- return panel.gridPos;
- });
- }
|