| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563 |
- import {describe, beforeEach, it, expect} from 'test/lib/common';
- import _ from 'lodash';
- import {DashboardModel} from '../dashboard_model';
- import {PanelModel} from '../panel_model';
- describe('DashboardModel', function() {
- describe('when creating new dashboard model defaults only', function() {
- var model;
- beforeEach(function() {
- model = new DashboardModel({}, {});
- });
- it('should have title', function() {
- expect(model.title).to.be('No Title');
- });
- it('should have meta', function() {
- expect(model.meta.canSave).to.be(true);
- expect(model.meta.canShare).to.be(true);
- });
- it('should have default properties', function() {
- expect(model.panels.length).to.be(0);
- });
- });
- describe('when getting next panel id', function() {
- var model;
- beforeEach(function() {
- model = new DashboardModel({
- panels: [{ id: 5 }]
- });
- });
- it('should return max id + 1', function() {
- expect(model.getNextPanelId()).to.be(6);
- });
- });
- describe('getSaveModelClone', function() {
- it('should sort keys', () => {
- var model = new DashboardModel({});
- var saveModel = model.getSaveModelClone();
- var keys = _.keys(saveModel);
- expect(keys[0]).to.be('annotations');
- expect(keys[1]).to.be('autoUpdate');
- });
- });
- describe('row and panel manipulation', function() {
- var dashboard;
- beforeEach(function() {
- dashboard = new DashboardModel({});
- });
- it('adding panel should new up panel model', function() {
- dashboard.addPanel({type: 'test', title: 'test'});
- expect(dashboard.panels[0] instanceof PanelModel).to.be(true);
- });
- it('duplicate panel should try to add to the right if there is space', function() {
- var panel = {id: 10, gridPos: {x: 0, y: 0, w: 6, h: 2}};
- dashboard.addPanel(panel);
- dashboard.duplicatePanel(dashboard.panels[0]);
- expect(dashboard.panels[1].gridPos).to.eql({x: 6, y: 0, h: 2, w: 6});
- });
- it('duplicate panel should remove repeat data', function() {
- var panel = {id: 10, gridPos: {x: 0, y: 0, w: 6, h: 2}, repeat: 'asd', scopedVars: {test: 'asd'}};
- dashboard.addPanel(panel);
- dashboard.duplicatePanel(dashboard.panels[0]);
- expect(dashboard.panels[1].repeat).to.be(undefined);
- expect(dashboard.panels[1].scopedVars).to.be(undefined);
- });
- });
- 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).to.be('No Title');
- });
- it('should have panel id', function() {
- expect(graph.id).to.be(1);
- });
- it('should move time and filtering list', function() {
- expect(model.time.from).to.be('now-1d');
- expect(model.templating.list[0].allFormat).to.be('glob');
- });
- it('graphite panel should change name too graph', function() {
- expect(graph.type).to.be('graph');
- });
- it('single stat panel should have two thresholds', function() {
- expect(singlestat.thresholds).to.be('20,30');
- });
- it('queries without refId should get it', function() {
- expect(graph.targets[1].refId).to.be('B');
- });
- it('update legend setting', function() {
- expect(graph.legend.show).to.be(true);
- });
- it('move aliasYAxis to series override', function() {
- expect(graph.seriesOverrides[0].alias).to.be("test");
- expect(graph.seriesOverrides[0].yaxis).to.be(2);
- });
- it('should move pulldowns to new schema', function() {
- expect(model.annotations.list[0].name).to.be('old');
- });
- it('table panel should only have two thresholds values', function() {
- expect(table.styles[0].thresholds[0]).to.be("20");
- expect(table.styles[0].thresholds[1]).to.be("30");
- expect(table.styles[1].thresholds[0]).to.be("200");
- expect(table.styles[1].thresholds[1]).to.be("300");
- });
- it('graph grid to yaxes options', function() {
- expect(graph.yaxes[0].min).to.be(1);
- expect(graph.yaxes[0].max).to.be(10);
- expect(graph.yaxes[0].format).to.be('kbyte');
- expect(graph.yaxes[0].label).to.be('left label');
- expect(graph.yaxes[0].logBase).to.be(1);
- expect(graph.yaxes[1].min).to.be(5);
- expect(graph.yaxes[1].max).to.be(15);
- expect(graph.yaxes[1].format).to.be('ms');
- expect(graph.yaxes[1].logBase).to.be(2);
- expect(graph.grid.rightMax).to.be(undefined);
- expect(graph.grid.rightLogBase).to.be(undefined);
- expect(graph.y_formats).to.be(undefined);
- });
- it('dashboard schema version should be set to latest', function() {
- expect(model.schemaVersion).to.be(16);
- });
- it('graph thresholds should be migrated', function() {
- expect(graph.thresholds.length).to.be(2);
- expect(graph.thresholds[0].op).to.be('gt');
- expect(graph.thresholds[0].value).to.be(200);
- expect(graph.thresholds[0].fillColor).to.be('yellow');
- expect(graph.thresholds[1].value).to.be(400);
- expect(graph.thresholds[1].fillColor).to.be('red');
- });
- });
- describe('Given editable false dashboard', function() {
- var model;
- beforeEach(function() {
- model = new DashboardModel({editable: false});
- });
- it('Should set meta canEdit and canSave to false', function() {
- expect(model.meta.canSave).to.be(false);
- expect(model.meta.canEdit).to.be(false);
- });
- it('getSaveModelClone should remove meta', function() {
- var clone = model.getSaveModelClone();
- expect(clone.meta).to.be(undefined);
- });
- });
- describe('when loading dashboard with old influxdb query schema', function() {
- var model;
- var target;
- beforeEach(function() {
- model = new DashboardModel({
- panels: [{
- type: 'graph',
- grid: {},
- yaxes: [{}, {}],
- targets: [{
- "alias": "$tag_datacenter $tag_source $col",
- "column": "value",
- "measurement": "logins.count",
- "fields": [
- {
- "func": "mean",
- "name": "value",
- "mathExpr": "*2",
- "asExpr": "value"
- },
- {
- "name": "one-minute",
- "func": "mean",
- "mathExpr": "*3",
- "asExpr": "one-minute"
- }
- ],
- "tags": [],
- "fill": "previous",
- "function": "mean",
- "groupBy": [
- {
- "interval": "auto",
- "type": "time"
- },
- {
- "key": "source",
- "type": "tag"
- },
- {
- "type": "tag",
- "key": "datacenter"
- }
- ],
- }]
- }]
- });
- target = model.panels[0].targets[0];
- });
- it('should update query schema', function() {
- expect(target.fields).to.be(undefined);
- expect(target.select.length).to.be(2);
- expect(target.select[0].length).to.be(4);
- expect(target.select[0][0].type).to.be('field');
- expect(target.select[0][1].type).to.be('mean');
- expect(target.select[0][2].type).to.be('math');
- expect(target.select[0][3].type).to.be('alias');
- });
- });
- describe('when creating dashboard model with missing list for annoations or templating', function() {
- var model;
- beforeEach(function() {
- model = new DashboardModel({
- annotations: {
- enable: true,
- },
- templating: {
- enable: true
- }
- });
- });
- it('should add empty list', function() {
- expect(model.annotations.list.length).to.be(1);
- expect(model.templating.list.length).to.be(0);
- });
- it('should add builtin annotation query', function() {
- expect(model.annotations.list[0].builtIn).to.be(1);
- expect(model.templating.list.length).to.be(0);
- });
- });
- describe('Formatting epoch timestamp when timezone is set as utc', function() {
- var dashboard;
- beforeEach(function() {
- dashboard = new DashboardModel({timezone: 'utc'});
- });
- it('Should format timestamp with second resolution by default', function() {
- expect(dashboard.formatDate(1234567890000)).to.be('2009-02-13 23:31:30');
- });
- it('Should format timestamp with second resolution even if second format is passed as parameter', function() {
- expect(dashboard.formatDate(1234567890007,'YYYY-MM-DD HH:mm:ss')).to.be('2009-02-13 23:31:30');
- });
- it('Should format timestamp with millisecond resolution if format is passed as parameter', function() {
- expect(dashboard.formatDate(1234567890007,'YYYY-MM-DD HH:mm:ss.SSS')).to.be('2009-02-13 23:31:30.007');
- });
- });
- describe('updateSubmenuVisibility with empty lists', function() {
- var model;
- beforeEach(function() {
- model = new DashboardModel({});
- model.updateSubmenuVisibility();
- });
- it('should not enable submmenu', function() {
- expect(model.meta.submenuEnabled).to.be(false);
- });
- });
- describe('updateSubmenuVisibility with annotation', function() {
- var model;
- beforeEach(function() {
- model = new DashboardModel({
- annotations: {
- list: [{}]
- }
- });
- model.updateSubmenuVisibility();
- });
- it('should enable submmenu', function() {
- expect(model.meta.submenuEnabled).to.be(true);
- });
- });
- describe('updateSubmenuVisibility with template var', function() {
- var model;
- beforeEach(function() {
- model = new DashboardModel({
- templating: {
- list: [{}]
- }
- });
- model.updateSubmenuVisibility();
- });
- it('should enable submmenu', function() {
- expect(model.meta.submenuEnabled).to.be(true);
- });
- });
- describe('updateSubmenuVisibility with hidden template var', function() {
- var model;
- beforeEach(function() {
- model = new DashboardModel({
- templating: {
- list: [{hide: 2}]
- }
- });
- model.updateSubmenuVisibility();
- });
- it('should not enable submmenu', function() {
- expect(model.meta.submenuEnabled).to.be(false);
- });
- });
- describe('updateSubmenuVisibility with hidden annotation toggle', function() {
- var dashboard;
- beforeEach(function() {
- dashboard = new DashboardModel({
- annotations: {
- list: [{hide: true}]
- }
- });
- dashboard.updateSubmenuVisibility();
- });
- it('should not enable submmenu', function() {
- expect(dashboard.meta.submenuEnabled).to.be(false);
- });
- });
- describe('given dashboard with panel repeat in horizontal direction', function(ctx) {
- var dashboard;
- beforeEach(function() {
- 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', function() {
- expect(dashboard.panels.length).to.be(3);
- });
- it('should mark panel repeated', function() {
- expect(dashboard.panels[0].repeat).to.be('apps');
- expect(dashboard.panels[1].repeatPanelId).to.be(2);
- });
- it('should set scopedVars on panels', function() {
- expect(dashboard.panels[0].scopedVars.apps.value).to.be('se1');
- expect(dashboard.panels[1].scopedVars.apps.value).to.be('se2');
- expect(dashboard.panels[2].scopedVars.apps.value).to.be('se3');
- });
- it('should place on first row and adjust width so all fit', function() {
- expect(dashboard.panels[0].gridPos).to.eql({x: 0, y: 0, h: 2, w: 8});
- expect(dashboard.panels[1].gridPos).to.eql({x: 8, y: 0, h: 2, w: 8});
- expect(dashboard.panels[2].gridPos).to.eql({x: 16, y: 0, h: 2, w: 8});
- });
- describe('After a second iteration', function() {
- var repeatedPanelAfterIteration1;
- beforeEach(function() {
- repeatedPanelAfterIteration1 = dashboard.panels[1];
- dashboard.panels[0].fill = 10;
- dashboard.processRepeats();
- });
- it('reused panel should copy properties from source', function() {
- expect(dashboard.panels[1].fill).to.be(10);
- });
- it('should have same panel count', function() {
- expect(dashboard.panels.length).to.be(3);
- });
- });
- describe('After a second iteration with different variable', function() {
- beforeEach(function() {
- 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', function() {
- expect(dashboard.panels[0].scopedVars.apps).to.be(undefined);
- });
- it('should have new variable value in scopedVars', function() {
- expect(dashboard.panels[0].scopedVars.server.value).to.be("se1");
- });
- });
- describe('After a second iteration and selected values reduced', function() {
- beforeEach(function() {
- dashboard.templating.list[0].options[1].selected = false;
- dashboard.processRepeats();
- });
- it('should clean up repeated panel', function() {
- expect(dashboard.panels.length).to.be(2);
- });
- });
- describe('After a second iteration and panel repeat is turned off', function() {
- beforeEach(function() {
- dashboard.panels[0].repeat = null;
- dashboard.processRepeats();
- });
- it('should clean up repeated panel', function() {
- expect(dashboard.panels.length).to.be(1);
- });
- it('should remove scoped vars from reused panel', function() {
- expect(dashboard.panels[0].scopedVars).to.be(undefined);
- });
- });
- });
- describe('given dashboard with panel repeat in vertical direction', function(ctx) {
- var dashboard;
- beforeEach(function() {
- dashboard = new DashboardModel({
- panels: [{id: 2, repeat: 'apps', repeatDirection: 'v', gridPos: {x: 5, y: 0, 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.processRepeats();
- });
- it('should place on items on top of each other and keep witdh', function() {
- expect(dashboard.panels[0].gridPos).to.eql({x: 5, y: 0, h: 2, w: 8});
- expect(dashboard.panels[1].gridPos).to.eql({x: 5, y: 2, h: 2, w: 8});
- expect(dashboard.panels[2].gridPos).to.eql({x: 5, y: 4, h: 2, w: 8});
- });
- });
- });
|