|
|
@@ -1,6 +1,6 @@
|
|
|
import { TemplateSrv } from '../template_srv';
|
|
|
|
|
|
-describe('templateSrv', function() {
|
|
|
+describe('templateSrv', () => {
|
|
|
let _templateSrv;
|
|
|
|
|
|
function initTemplateSrv(variables) {
|
|
|
@@ -8,58 +8,58 @@ describe('templateSrv', function() {
|
|
|
_templateSrv.init(variables);
|
|
|
}
|
|
|
|
|
|
- describe('init', function() {
|
|
|
- beforeEach(function() {
|
|
|
+ describe('init', () => {
|
|
|
+ beforeEach(() => {
|
|
|
initTemplateSrv([{ type: 'query', name: 'test', current: { value: 'oogle' } }]);
|
|
|
});
|
|
|
|
|
|
- it('should initialize template data', function() {
|
|
|
+ it('should initialize template data', () => {
|
|
|
const target = _templateSrv.replace('this.[[test]].filters');
|
|
|
expect(target).toBe('this.oogle.filters');
|
|
|
});
|
|
|
});
|
|
|
|
|
|
- describe('replace can pass scoped vars', function() {
|
|
|
- beforeEach(function() {
|
|
|
+ describe('replace can pass scoped vars', () => {
|
|
|
+ beforeEach(() => {
|
|
|
initTemplateSrv([{ type: 'query', name: 'test', current: { value: 'oogle' } }]);
|
|
|
});
|
|
|
|
|
|
- it('should replace $test with scoped value', function() {
|
|
|
+ it('should replace $test with scoped value', () => {
|
|
|
const target = _templateSrv.replace('this.$test.filters', {
|
|
|
test: { value: 'mupp', text: 'asd' },
|
|
|
});
|
|
|
expect(target).toBe('this.mupp.filters');
|
|
|
});
|
|
|
|
|
|
- it('should replace ${test} with scoped value', function() {
|
|
|
+ it('should replace ${test} with scoped value', () => {
|
|
|
const target = _templateSrv.replace('this.${test}.filters', {
|
|
|
test: { value: 'mupp', text: 'asd' },
|
|
|
});
|
|
|
expect(target).toBe('this.mupp.filters');
|
|
|
});
|
|
|
|
|
|
- it('should replace ${test:glob} with scoped value', function() {
|
|
|
+ it('should replace ${test:glob} with scoped value', () => {
|
|
|
const target = _templateSrv.replace('this.${test:glob}.filters', {
|
|
|
test: { value: 'mupp', text: 'asd' },
|
|
|
});
|
|
|
expect(target).toBe('this.mupp.filters');
|
|
|
});
|
|
|
|
|
|
- it('should replace $test with scoped text', function() {
|
|
|
+ it('should replace $test with scoped text', () => {
|
|
|
const target = _templateSrv.replaceWithText('this.$test.filters', {
|
|
|
test: { value: 'mupp', text: 'asd' },
|
|
|
});
|
|
|
expect(target).toBe('this.asd.filters');
|
|
|
});
|
|
|
|
|
|
- it('should replace ${test} with scoped text', function() {
|
|
|
+ it('should replace ${test} with scoped text', () => {
|
|
|
const target = _templateSrv.replaceWithText('this.${test}.filters', {
|
|
|
test: { value: 'mupp', text: 'asd' },
|
|
|
});
|
|
|
expect(target).toBe('this.asd.filters');
|
|
|
});
|
|
|
|
|
|
- it('should replace ${test:glob} with scoped text', function() {
|
|
|
+ it('should replace ${test:glob} with scoped text', () => {
|
|
|
const target = _templateSrv.replaceWithText('this.${test:glob}.filters', {
|
|
|
test: { value: 'mupp', text: 'asd' },
|
|
|
});
|
|
|
@@ -67,8 +67,8 @@ describe('templateSrv', function() {
|
|
|
});
|
|
|
});
|
|
|
|
|
|
- describe('getAdhocFilters', function() {
|
|
|
- beforeEach(function() {
|
|
|
+ describe('getAdhocFilters', () => {
|
|
|
+ beforeEach(() => {
|
|
|
initTemplateSrv([
|
|
|
{
|
|
|
type: 'datasource',
|
|
|
@@ -80,24 +80,24 @@ describe('templateSrv', function() {
|
|
|
]);
|
|
|
});
|
|
|
|
|
|
- it('should return filters if datasourceName match', function() {
|
|
|
+ it('should return filters if datasourceName match', () => {
|
|
|
const filters = _templateSrv.getAdhocFilters('oogle');
|
|
|
expect(filters).toMatchObject([1]);
|
|
|
});
|
|
|
|
|
|
- it('should return empty array if datasourceName does not match', function() {
|
|
|
+ it('should return empty array if datasourceName does not match', () => {
|
|
|
const filters = _templateSrv.getAdhocFilters('oogleasdasd');
|
|
|
expect(filters).toMatchObject([]);
|
|
|
});
|
|
|
|
|
|
- it('should return filters when datasourceName match via data source variable', function() {
|
|
|
+ it('should return filters when datasourceName match via data source variable', () => {
|
|
|
const filters = _templateSrv.getAdhocFilters('logstash');
|
|
|
expect(filters).toMatchObject([2]);
|
|
|
});
|
|
|
});
|
|
|
|
|
|
- describe('replace can pass multi / all format', function() {
|
|
|
- beforeEach(function() {
|
|
|
+ describe('replace can pass multi / all format', () => {
|
|
|
+ beforeEach(() => {
|
|
|
initTemplateSrv([
|
|
|
{
|
|
|
type: 'query',
|
|
|
@@ -107,44 +107,44 @@ describe('templateSrv', function() {
|
|
|
]);
|
|
|
});
|
|
|
|
|
|
- it('should replace $test with globbed value', function() {
|
|
|
+ it('should replace $test with globbed value', () => {
|
|
|
const target = _templateSrv.replace('this.$test.filters', {}, 'glob');
|
|
|
expect(target).toBe('this.{value1,value2}.filters');
|
|
|
});
|
|
|
|
|
|
- it('should replace ${test} with globbed value', function() {
|
|
|
+ it('should replace ${test} with globbed value', () => {
|
|
|
const target = _templateSrv.replace('this.${test}.filters', {}, 'glob');
|
|
|
expect(target).toBe('this.{value1,value2}.filters');
|
|
|
});
|
|
|
|
|
|
- it('should replace ${test:glob} with globbed value', function() {
|
|
|
+ it('should replace ${test:glob} with globbed value', () => {
|
|
|
const target = _templateSrv.replace('this.${test:glob}.filters', {});
|
|
|
expect(target).toBe('this.{value1,value2}.filters');
|
|
|
});
|
|
|
|
|
|
- it('should replace $test with piped value', function() {
|
|
|
+ it('should replace $test with piped value', () => {
|
|
|
const target = _templateSrv.replace('this=$test', {}, 'pipe');
|
|
|
expect(target).toBe('this=value1|value2');
|
|
|
});
|
|
|
|
|
|
- it('should replace ${test} with piped value', function() {
|
|
|
+ it('should replace ${test} with piped value', () => {
|
|
|
const target = _templateSrv.replace('this=${test}', {}, 'pipe');
|
|
|
expect(target).toBe('this=value1|value2');
|
|
|
});
|
|
|
|
|
|
- it('should replace ${test:pipe} with piped value', function() {
|
|
|
+ it('should replace ${test:pipe} with piped value', () => {
|
|
|
const target = _templateSrv.replace('this=${test:pipe}', {});
|
|
|
expect(target).toBe('this=value1|value2');
|
|
|
});
|
|
|
|
|
|
- it('should replace ${test:pipe} with piped value and $test with globbed value', function() {
|
|
|
+ it('should replace ${test:pipe} with piped value and $test with globbed value', () => {
|
|
|
const target = _templateSrv.replace('${test:pipe},$test', {}, 'glob');
|
|
|
expect(target).toBe('value1|value2,{value1,value2}');
|
|
|
});
|
|
|
});
|
|
|
|
|
|
- describe('variable with all option', function() {
|
|
|
- beforeEach(function() {
|
|
|
+ describe('variable with all option', () => {
|
|
|
+ beforeEach(() => {
|
|
|
initTemplateSrv([
|
|
|
{
|
|
|
type: 'query',
|
|
|
@@ -155,29 +155,29 @@ describe('templateSrv', function() {
|
|
|
]);
|
|
|
});
|
|
|
|
|
|
- it('should replace $test with formatted all value', function() {
|
|
|
+ it('should replace $test with formatted all value', () => {
|
|
|
const target = _templateSrv.replace('this.$test.filters', {}, 'glob');
|
|
|
expect(target).toBe('this.{value1,value2}.filters');
|
|
|
});
|
|
|
|
|
|
- it('should replace ${test} with formatted all value', function() {
|
|
|
+ it('should replace ${test} with formatted all value', () => {
|
|
|
const target = _templateSrv.replace('this.${test}.filters', {}, 'glob');
|
|
|
expect(target).toBe('this.{value1,value2}.filters');
|
|
|
});
|
|
|
|
|
|
- it('should replace ${test:glob} with formatted all value', function() {
|
|
|
+ it('should replace ${test:glob} with formatted all value', () => {
|
|
|
const target = _templateSrv.replace('this.${test:glob}.filters', {});
|
|
|
expect(target).toBe('this.{value1,value2}.filters');
|
|
|
});
|
|
|
|
|
|
- it('should replace ${test:pipe} with piped value and $test with globbed value', function() {
|
|
|
+ it('should replace ${test:pipe} with piped value and $test with globbed value', () => {
|
|
|
const target = _templateSrv.replace('${test:pipe},$test', {}, 'glob');
|
|
|
expect(target).toBe('value1|value2,{value1,value2}');
|
|
|
});
|
|
|
});
|
|
|
|
|
|
- describe('variable with all option and custom value', function() {
|
|
|
- beforeEach(function() {
|
|
|
+ describe('variable with all option and custom value', () => {
|
|
|
+ beforeEach(() => {
|
|
|
initTemplateSrv([
|
|
|
{
|
|
|
type: 'query',
|
|
|
@@ -189,148 +189,148 @@ describe('templateSrv', function() {
|
|
|
]);
|
|
|
});
|
|
|
|
|
|
- it('should replace $test with formatted all value', function() {
|
|
|
+ it('should replace $test with formatted all value', () => {
|
|
|
const target = _templateSrv.replace('this.$test.filters', {}, 'glob');
|
|
|
expect(target).toBe('this.*.filters');
|
|
|
});
|
|
|
|
|
|
- it('should replace ${test} with formatted all value', function() {
|
|
|
+ it('should replace ${test} with formatted all value', () => {
|
|
|
const target = _templateSrv.replace('this.${test}.filters', {}, 'glob');
|
|
|
expect(target).toBe('this.*.filters');
|
|
|
});
|
|
|
|
|
|
- it('should replace ${test:glob} with formatted all value', function() {
|
|
|
+ it('should replace ${test:glob} with formatted all value', () => {
|
|
|
const target = _templateSrv.replace('this.${test:glob}.filters', {});
|
|
|
expect(target).toBe('this.*.filters');
|
|
|
});
|
|
|
|
|
|
- it('should not escape custom all value', function() {
|
|
|
+ it('should not escape custom all value', () => {
|
|
|
const target = _templateSrv.replace('this.$test', {}, 'regex');
|
|
|
expect(target).toBe('this.*');
|
|
|
});
|
|
|
});
|
|
|
|
|
|
- describe('lucene format', function() {
|
|
|
- it('should properly escape $test with lucene escape sequences', function() {
|
|
|
+ describe('lucene format', () => {
|
|
|
+ it('should properly escape $test with lucene escape sequences', () => {
|
|
|
initTemplateSrv([{ type: 'query', name: 'test', current: { value: 'value/4' } }]);
|
|
|
const target = _templateSrv.replace('this:$test', {}, 'lucene');
|
|
|
expect(target).toBe('this:value\\/4');
|
|
|
});
|
|
|
|
|
|
- it('should properly escape ${test} with lucene escape sequences', function() {
|
|
|
+ it('should properly escape ${test} with lucene escape sequences', () => {
|
|
|
initTemplateSrv([{ type: 'query', name: 'test', current: { value: 'value/4' } }]);
|
|
|
const target = _templateSrv.replace('this:${test}', {}, 'lucene');
|
|
|
expect(target).toBe('this:value\\/4');
|
|
|
});
|
|
|
|
|
|
- it('should properly escape ${test:lucene} with lucene escape sequences', function() {
|
|
|
+ it('should properly escape ${test:lucene} with lucene escape sequences', () => {
|
|
|
initTemplateSrv([{ type: 'query', name: 'test', current: { value: 'value/4' } }]);
|
|
|
const target = _templateSrv.replace('this:${test:lucene}', {});
|
|
|
expect(target).toBe('this:value\\/4');
|
|
|
});
|
|
|
});
|
|
|
|
|
|
- describe('format variable to string values', function() {
|
|
|
- it('single value should return value', function() {
|
|
|
+ describe('format variable to string values', () => {
|
|
|
+ it('single value should return value', () => {
|
|
|
const result = _templateSrv.formatValue('test');
|
|
|
expect(result).toBe('test');
|
|
|
});
|
|
|
|
|
|
- it('multi value and glob format should render glob string', function() {
|
|
|
+ it('multi value and glob format should render glob string', () => {
|
|
|
const result = _templateSrv.formatValue(['test', 'test2'], 'glob');
|
|
|
expect(result).toBe('{test,test2}');
|
|
|
});
|
|
|
|
|
|
- it('multi value and lucene should render as lucene expr', function() {
|
|
|
+ it('multi value and lucene should render as lucene expr', () => {
|
|
|
const result = _templateSrv.formatValue(['test', 'test2'], 'lucene');
|
|
|
expect(result).toBe('("test" OR "test2")');
|
|
|
});
|
|
|
|
|
|
- it('multi value and regex format should render regex string', function() {
|
|
|
+ it('multi value and regex format should render regex string', () => {
|
|
|
const result = _templateSrv.formatValue(['test.', 'test2'], 'regex');
|
|
|
expect(result).toBe('(test\\.|test2)');
|
|
|
});
|
|
|
|
|
|
- it('multi value and pipe should render pipe string', function() {
|
|
|
+ it('multi value and pipe should render pipe string', () => {
|
|
|
const result = _templateSrv.formatValue(['test', 'test2'], 'pipe');
|
|
|
expect(result).toBe('test|test2');
|
|
|
});
|
|
|
|
|
|
- it('multi value and distributed should render distributed string', function() {
|
|
|
+ it('multi value and distributed should render distributed string', () => {
|
|
|
const result = _templateSrv.formatValue(['test', 'test2'], 'distributed', {
|
|
|
name: 'build',
|
|
|
});
|
|
|
expect(result).toBe('test,build=test2');
|
|
|
});
|
|
|
|
|
|
- it('multi value and distributed should render when not string', function() {
|
|
|
+ it('multi value and distributed should render when not string', () => {
|
|
|
const result = _templateSrv.formatValue(['test'], 'distributed', {
|
|
|
name: 'build',
|
|
|
});
|
|
|
expect(result).toBe('test');
|
|
|
});
|
|
|
|
|
|
- it('multi value and csv format should render csv string', function() {
|
|
|
+ it('multi value and csv format should render csv string', () => {
|
|
|
const result = _templateSrv.formatValue(['test', 'test2'], 'csv');
|
|
|
expect(result).toBe('test,test2');
|
|
|
});
|
|
|
|
|
|
- it('multi value and percentencode format should render percent-encoded string', function() {
|
|
|
+ it('multi value and percentencode format should render percent-encoded string', () => {
|
|
|
const result = _templateSrv.formatValue(['foo()bar BAZ', 'test2'], 'percentencode');
|
|
|
expect(result).toBe('%7bfoo%28%29bar%20BAZ%2ctest2%7d');
|
|
|
});
|
|
|
|
|
|
- it('slash should be properly escaped in regex format', function() {
|
|
|
+ it('slash should be properly escaped in regex format', () => {
|
|
|
const result = _templateSrv.formatValue('Gi3/14', 'regex');
|
|
|
expect(result).toBe('Gi3\\/14');
|
|
|
});
|
|
|
});
|
|
|
|
|
|
- describe('can check if variable exists', function() {
|
|
|
- beforeEach(function() {
|
|
|
+ describe('can check if variable exists', () => {
|
|
|
+ beforeEach(() => {
|
|
|
initTemplateSrv([{ type: 'query', name: 'test', current: { value: 'oogle' } }]);
|
|
|
});
|
|
|
|
|
|
- it('should return true if exists', function() {
|
|
|
+ it('should return true if exists', () => {
|
|
|
const result = _templateSrv.variableExists('$test');
|
|
|
expect(result).toBe(true);
|
|
|
});
|
|
|
});
|
|
|
|
|
|
- describe('can highlight variables in string', function() {
|
|
|
- beforeEach(function() {
|
|
|
+ describe('can highlight variables in string', () => {
|
|
|
+ beforeEach(() => {
|
|
|
initTemplateSrv([{ type: 'query', name: 'test', current: { value: 'oogle' } }]);
|
|
|
});
|
|
|
|
|
|
- it('should insert html', function() {
|
|
|
+ it('should insert html', () => {
|
|
|
const result = _templateSrv.highlightVariablesAsHtml('$test');
|
|
|
expect(result).toBe('<span class="template-variable">$test</span>');
|
|
|
});
|
|
|
|
|
|
- it('should insert html anywhere in string', function() {
|
|
|
+ it('should insert html anywhere in string', () => {
|
|
|
const result = _templateSrv.highlightVariablesAsHtml('this $test ok');
|
|
|
expect(result).toBe('this <span class="template-variable">$test</span> ok');
|
|
|
});
|
|
|
|
|
|
- it('should ignore if variables does not exist', function() {
|
|
|
+ it('should ignore if variables does not exist', () => {
|
|
|
const result = _templateSrv.highlightVariablesAsHtml('this $google ok');
|
|
|
expect(result).toBe('this $google ok');
|
|
|
});
|
|
|
});
|
|
|
|
|
|
- describe('updateTemplateData with simple value', function() {
|
|
|
- beforeEach(function() {
|
|
|
+ describe('updateTemplateData with simple value', () => {
|
|
|
+ beforeEach(() => {
|
|
|
initTemplateSrv([{ type: 'query', name: 'test', current: { value: 'muuuu' } }]);
|
|
|
});
|
|
|
|
|
|
- it('should set current value and update template data', function() {
|
|
|
+ it('should set current value and update template data', () => {
|
|
|
const target = _templateSrv.replace('this.[[test]].filters');
|
|
|
expect(target).toBe('this.muuuu.filters');
|
|
|
});
|
|
|
});
|
|
|
|
|
|
- describe('fillVariableValuesForUrl with multi value', function() {
|
|
|
- beforeEach(function() {
|
|
|
+ describe('fillVariableValuesForUrl with multi value', () => {
|
|
|
+ beforeEach(() => {
|
|
|
initTemplateSrv([
|
|
|
{
|
|
|
type: 'query',
|
|
|
@@ -343,15 +343,15 @@ describe('templateSrv', function() {
|
|
|
]);
|
|
|
});
|
|
|
|
|
|
- it('should set multiple url params', function() {
|
|
|
+ it('should set multiple url params', () => {
|
|
|
const params = {};
|
|
|
_templateSrv.fillVariableValuesForUrl(params);
|
|
|
expect(params['var-test']).toMatchObject(['val1', 'val2']);
|
|
|
});
|
|
|
});
|
|
|
|
|
|
- describe('fillVariableValuesForUrl skip url sync', function() {
|
|
|
- beforeEach(function() {
|
|
|
+ describe('fillVariableValuesForUrl skip url sync', () => {
|
|
|
+ beforeEach(() => {
|
|
|
initTemplateSrv([
|
|
|
{
|
|
|
name: 'test',
|
|
|
@@ -364,15 +364,15 @@ describe('templateSrv', function() {
|
|
|
]);
|
|
|
});
|
|
|
|
|
|
- it('should not include template variable value in url', function() {
|
|
|
+ it('should not include template variable value in url', () => {
|
|
|
const params = {};
|
|
|
_templateSrv.fillVariableValuesForUrl(params);
|
|
|
expect(params['var-test']).toBe(undefined);
|
|
|
});
|
|
|
});
|
|
|
|
|
|
- describe('fillVariableValuesForUrl with multi value with skip url sync', function() {
|
|
|
- beforeEach(function() {
|
|
|
+ describe('fillVariableValuesForUrl with multi value with skip url sync', () => {
|
|
|
+ beforeEach(() => {
|
|
|
initTemplateSrv([
|
|
|
{
|
|
|
type: 'query',
|
|
|
@@ -386,19 +386,19 @@ describe('templateSrv', function() {
|
|
|
]);
|
|
|
});
|
|
|
|
|
|
- it('should not include template variable value in url', function() {
|
|
|
+ it('should not include template variable value in url', () => {
|
|
|
const params = {};
|
|
|
_templateSrv.fillVariableValuesForUrl(params);
|
|
|
expect(params['var-test']).toBe(undefined);
|
|
|
});
|
|
|
});
|
|
|
|
|
|
- describe('fillVariableValuesForUrl with multi value and scopedVars', function() {
|
|
|
- beforeEach(function() {
|
|
|
+ describe('fillVariableValuesForUrl with multi value and scopedVars', () => {
|
|
|
+ beforeEach(() => {
|
|
|
initTemplateSrv([{ type: 'query', name: 'test', current: { value: ['val1', 'val2'] } }]);
|
|
|
});
|
|
|
|
|
|
- it('should set scoped value as url params', function() {
|
|
|
+ it('should set scoped value as url params', () => {
|
|
|
const params = {};
|
|
|
_templateSrv.fillVariableValuesForUrl(params, {
|
|
|
test: { value: 'val1' },
|
|
|
@@ -407,12 +407,12 @@ describe('templateSrv', function() {
|
|
|
});
|
|
|
});
|
|
|
|
|
|
- describe('fillVariableValuesForUrl with multi value, scopedVars and skip url sync', function() {
|
|
|
- beforeEach(function() {
|
|
|
+ describe('fillVariableValuesForUrl with multi value, scopedVars and skip url sync', () => {
|
|
|
+ beforeEach(() => {
|
|
|
initTemplateSrv([{ type: 'query', name: 'test', current: { value: ['val1', 'val2'] } }]);
|
|
|
});
|
|
|
|
|
|
- it('should not set scoped value as url params', function() {
|
|
|
+ it('should not set scoped value as url params', () => {
|
|
|
const params = {};
|
|
|
_templateSrv.fillVariableValuesForUrl(params, {
|
|
|
test: { name: 'test', value: 'val1', skipUrlSync: true },
|
|
|
@@ -421,8 +421,8 @@ describe('templateSrv', function() {
|
|
|
});
|
|
|
});
|
|
|
|
|
|
- describe('replaceWithText', function() {
|
|
|
- beforeEach(function() {
|
|
|
+ describe('replaceWithText', () => {
|
|
|
+ beforeEach(() => {
|
|
|
initTemplateSrv([
|
|
|
{
|
|
|
type: 'query',
|
|
|
@@ -439,18 +439,18 @@ describe('templateSrv', function() {
|
|
|
_templateSrv.updateTemplateData();
|
|
|
});
|
|
|
|
|
|
- it('should replace with text except for grafanaVariables', function() {
|
|
|
+ it('should replace with text except for grafanaVariables', () => {
|
|
|
const target = _templateSrv.replaceWithText('Server: $server, period: $period');
|
|
|
expect(target).toBe('Server: All, period: 13m');
|
|
|
});
|
|
|
});
|
|
|
|
|
|
- describe('built in interval variables', function() {
|
|
|
- beforeEach(function() {
|
|
|
+ describe('built in interval variables', () => {
|
|
|
+ beforeEach(() => {
|
|
|
initTemplateSrv([]);
|
|
|
});
|
|
|
|
|
|
- it('should replace $__interval_ms with interval milliseconds', function() {
|
|
|
+ it('should replace $__interval_ms with interval milliseconds', () => {
|
|
|
const target = _templateSrv.replace('10 * $__interval_ms', {
|
|
|
__interval_ms: { text: '100', value: '100' },
|
|
|
});
|