2014-08-27 10:58:49 -05:00
|
|
|
define([
|
|
|
|
'mocks/dashboard-mock',
|
|
|
|
'lodash',
|
|
|
|
'services/templateSrv'
|
|
|
|
], function(dashboardMock) {
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
describe('templateSrv', function() {
|
|
|
|
var _templateSrv;
|
|
|
|
var _dashboard;
|
|
|
|
|
|
|
|
beforeEach(module('grafana.services'));
|
|
|
|
beforeEach(module(function() {
|
|
|
|
_dashboard = dashboardMock.create();
|
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(inject(function(templateSrv) {
|
|
|
|
_templateSrv = templateSrv;
|
|
|
|
}));
|
|
|
|
|
|
|
|
describe('init', function() {
|
|
|
|
beforeEach(function() {
|
2014-08-27 14:47:41 -05:00
|
|
|
_templateSrv.init([{ name: 'test', current: { value: 'oogle' } }]);
|
2014-08-27 10:58:49 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should initialize template data', function() {
|
|
|
|
var target = _templateSrv.replace('this.[[test]].filters');
|
|
|
|
expect(target).to.be('this.oogle.filters');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-09-05 01:26:50 -05:00
|
|
|
describe('can check if variable exists', function() {
|
|
|
|
beforeEach(function() {
|
|
|
|
_templateSrv.init([{ name: 'test', current: { value: 'oogle' } }]);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should return true if exists', function() {
|
|
|
|
var result = _templateSrv.variableExists('$test');
|
|
|
|
expect(result).to.be(true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('can hightlight variables in string', function() {
|
|
|
|
beforeEach(function() {
|
|
|
|
_templateSrv.init([{ name: 'test', current: { value: 'oogle' } }]);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should insert html', function() {
|
|
|
|
var result = _templateSrv.highlightVariablesAsHtml('$test');
|
|
|
|
expect(result).to.be('<span class="template-variable">$test</span>');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should insert html anywhere in string', function() {
|
|
|
|
var result = _templateSrv.highlightVariablesAsHtml('this $test ok');
|
|
|
|
expect(result).to.be('this <span class="template-variable">$test</span> ok');
|
|
|
|
});
|
|
|
|
|
2014-09-05 07:03:36 -05:00
|
|
|
it('should ignore if variables does not exist', function() {
|
|
|
|
var result = _templateSrv.highlightVariablesAsHtml('this $google ok');
|
|
|
|
expect(result).to.be('this $google ok');
|
|
|
|
});
|
|
|
|
|
2014-09-05 01:26:50 -05:00
|
|
|
});
|
|
|
|
|
2014-09-08 04:03:14 -05:00
|
|
|
describe('when checking if a string contains a variable', function() {
|
|
|
|
beforeEach(function() {
|
|
|
|
_templateSrv.init([{ name: 'test', current: { value: 'muuuu' } }]);
|
|
|
|
_templateSrv.updateTemplateData();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should find it with $var syntax', function() {
|
|
|
|
var contains = _templateSrv.containsVariable('this.$test.filters', 'test');
|
|
|
|
expect(contains).to.be(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should find it with [[var]] syntax', function() {
|
|
|
|
var contains = _templateSrv.containsVariable('this.[[test]].filters', 'test');
|
|
|
|
expect(contains).to.be(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2014-08-28 09:03:13 -05:00
|
|
|
describe('updateTemplateData with simple value', function() {
|
2014-08-27 10:58:49 -05:00
|
|
|
beforeEach(function() {
|
2014-08-28 09:03:13 -05:00
|
|
|
_templateSrv.init([{ name: 'test', current: { value: 'muuuu' } }]);
|
2014-08-27 10:58:49 -05:00
|
|
|
_templateSrv.updateTemplateData();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should set current value and update template data', function() {
|
|
|
|
var target = _templateSrv.replace('this.[[test]].filters');
|
|
|
|
expect(target).to.be('this.muuuu.filters');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-09-11 06:54:59 -05:00
|
|
|
describe('replaceWithText', function() {
|
|
|
|
beforeEach(function() {
|
|
|
|
_templateSrv.init([
|
|
|
|
{ name: 'server', current: { value: '{asd,asd2}', text: 'All' } },
|
|
|
|
{ name: 'period', current: { value: '$__auto_interval', text: 'auto' } }
|
|
|
|
]);
|
|
|
|
_templateSrv.setGrafanaVariable('$__auto_interval', '13m');
|
|
|
|
_templateSrv.updateTemplateData();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should replace with text except for grafanaVariables', function() {
|
|
|
|
var target = _templateSrv.replaceWithText('Server: $server, period: $period');
|
|
|
|
expect(target).to.be('Server: All, period: 13m');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2014-08-27 10:58:49 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|