Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
fba329f3
Unverified
Commit
fba329f3
authored
Jul 20, 2020
by
Torkel Ödegaard
Committed by
GitHub
Jul 20, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BackendSrv: Fix error alert logic (#26453)
parent
9486f960
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
615 additions
and
5 deletions
+615
-5
public/app/features/templating/template_srv.test.ts
+609
-0
public/app/features/templating/template_srv.ts
+6
-5
No files found.
public/app/features/templating/template_srv.test.ts
0 → 100644
View file @
fba329f3
import
{
TemplateSrv
}
from
'./template_srv'
;
import
{
convertToStoreState
}
from
'test/helpers/convertToStoreState'
;
import
{
getTemplateSrvDependencies
}
from
'../../../test/helpers/getTemplateSrvDependencies'
;
import
{
variableAdapters
}
from
'../variables/adapters'
;
import
{
createQueryVariableAdapter
}
from
'../variables/query/adapter'
;
describe
(
'templateSrv'
,
()
=>
{
let
_templateSrv
:
any
;
function
initTemplateSrv
(
variables
:
any
[])
{
const
state
=
convertToStoreState
(
variables
);
_templateSrv
=
new
TemplateSrv
(
getTemplateSrvDependencies
(
state
));
_templateSrv
.
init
(
variables
);
}
describe
(
'init'
,
()
=>
{
beforeEach
(()
=>
{
initTemplateSrv
([{
type
:
'query'
,
name
:
'test'
,
current
:
{
value
:
'oogle'
}
}]);
});
it
(
'should initialize template data'
,
()
=>
{
const
target
=
_templateSrv
.
replace
(
'this.[[test]].filters'
);
expect
(
target
).
toBe
(
'this.oogle.filters'
);
});
});
describe
(
'replace can pass scoped vars'
,
()
=>
{
beforeEach
(()
=>
{
initTemplateSrv
([{
type
:
'query'
,
name
:
'test'
,
current
:
{
value
:
'oogle'
}
}]);
});
it
(
'scoped vars should support objects'
,
()
=>
{
const
target
=
_templateSrv
.
replace
(
'${series.name} ${series.nested.field}'
,
{
series
:
{
value
:
{
name
:
'Server1'
,
nested
:
{
field
:
'nested'
}
}
},
});
expect
(
target
).
toBe
(
'Server1 nested'
);
});
it
(
'built in vars should support objects'
,
()
=>
{
_templateSrv
.
setGlobalVariable
(
'__dashboard'
,
{
value
:
{
name
:
'hello'
},
});
const
target
=
_templateSrv
.
replace
(
'${__dashboard.name}'
);
expect
(
target
).
toBe
(
'hello'
);
});
it
(
'scoped vars should support objects with propert names with dot'
,
()
=>
{
const
target
=
_templateSrv
.
replace
(
'${series.name} ${series.nested["field.with.dot"]}'
,
{
series
:
{
value
:
{
name
:
'Server1'
,
nested
:
{
'field.with.dot'
:
'nested'
}
}
},
});
expect
(
target
).
toBe
(
'Server1 nested'
);
});
it
(
'scoped vars should support arrays of objects'
,
()
=>
{
const
target
=
_templateSrv
.
replace
(
'${series.rows[0].name} ${series.rows[1].name}'
,
{
series
:
{
value
:
{
rows
:
[{
name
:
'first'
},
{
name
:
'second'
}]
}
},
});
expect
(
target
).
toBe
(
'first second'
);
});
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'
,
()
=>
{
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'
,
()
=>
{
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'
,
()
=>
{
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'
,
()
=>
{
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'
,
()
=>
{
const
target
=
_templateSrv
.
replaceWithText
(
'this.${test:glob}.filters'
,
{
test
:
{
value
:
'mupp'
,
text
:
'asd'
},
});
expect
(
target
).
toBe
(
'this.asd.filters'
);
});
});
describe
(
'getAdhocFilters'
,
()
=>
{
beforeEach
(()
=>
{
initTemplateSrv
([
{
type
:
'datasource'
,
name
:
'ds'
,
current
:
{
value
:
'logstash'
,
text
:
'logstash'
},
},
{
type
:
'adhoc'
,
name
:
'test'
,
datasource
:
'oogle'
,
filters
:
[
1
]
},
{
type
:
'adhoc'
,
name
:
'test2'
,
datasource
:
'$ds'
,
filters
:
[
2
]
},
]);
});
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'
,
()
=>
{
const
filters
=
_templateSrv
.
getAdhocFilters
(
'oogleasdasd'
);
expect
(
filters
).
toMatchObject
([]);
});
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'
,
()
=>
{
beforeEach
(()
=>
{
initTemplateSrv
([
{
type
:
'query'
,
name
:
'test'
,
current
:
{
value
:
[
'value1'
,
'value2'
]
},
},
]);
});
it
(
'should replace $test with globbed value'
,
()
=>
{
const
target
=
_templateSrv
.
replace
(
'this.$test.filters'
,
{},
'glob'
);
expect
(
target
).
toBe
(
'this.{value1,value2}.filters'
);
});
describe
(
'when the globbed variable only has one value'
,
()
=>
{
beforeEach
(()
=>
{
initTemplateSrv
([
{
type
:
'query'
,
name
:
'test'
,
current
:
{
value
:
[
'value1'
]
},
},
]);
});
it
(
'should not glob the value'
,
()
=>
{
const
target
=
_templateSrv
.
replace
(
'this.$test.filters'
,
{},
'glob'
);
expect
(
target
).
toBe
(
'this.value1.filters'
);
});
});
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'
,
()
=>
{
const
target
=
_templateSrv
.
replace
(
'this.${test:glob}.filters'
,
{});
expect
(
target
).
toBe
(
'this.{value1,value2}.filters'
);
});
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'
,
()
=>
{
const
target
=
_templateSrv
.
replace
(
'this=${test}'
,
{},
'pipe'
);
expect
(
target
).
toBe
(
'this=value1|value2'
);
});
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'
,
()
=>
{
const
target
=
_templateSrv
.
replace
(
'${test:pipe},$test'
,
{},
'glob'
);
expect
(
target
).
toBe
(
'value1|value2,{value1,value2}'
);
});
});
describe
(
'variable with all option'
,
()
=>
{
beforeEach
(()
=>
{
initTemplateSrv
([
{
type
:
'query'
,
name
:
'test'
,
current
:
{
value
:
'$__all'
},
options
:
[{
value
:
'$__all'
},
{
value
:
'value1'
},
{
value
:
'value2'
}],
},
]);
});
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'
,
()
=>
{
const
target
=
_templateSrv
.
replace
(
'this.${test}.filters'
,
{},
'glob'
);
expect
(
target
).
toBe
(
'this.{value1,value2}.filters'
);
});
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'
,
()
=>
{
const
target
=
_templateSrv
.
replace
(
'${test:pipe},$test'
,
{},
'glob'
);
expect
(
target
).
toBe
(
'value1|value2,{value1,value2}'
);
});
});
describe
(
'variable with all option and custom value'
,
()
=>
{
beforeEach
(()
=>
{
initTemplateSrv
([
{
type
:
'query'
,
name
:
'test'
,
current
:
{
value
:
'$__all'
},
allValue
:
'*'
,
options
:
[{
value
:
'value1'
},
{
value
:
'value2'
}],
},
]);
});
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'
,
()
=>
{
const
target
=
_templateSrv
.
replace
(
'this.${test}.filters'
,
{},
'glob'
);
expect
(
target
).
toBe
(
'this.*.filters'
);
});
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'
,
()
=>
{
const
target
=
_templateSrv
.
replace
(
'this.$test'
,
{},
'regex'
);
expect
(
target
).
toBe
(
'this.*'
);
});
});
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'
,
()
=>
{
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'
,
()
=>
{
initTemplateSrv
([{
type
:
'query'
,
name
:
'test'
,
current
:
{
value
:
'value/4'
}
}]);
const
target
=
_templateSrv
.
replace
(
'this:${test:lucene}'
,
{});
expect
(
target
).
toBe
(
'this:value
\\
/4'
);
});
});
describe
(
'html format'
,
()
=>
{
it
(
'should encode values html escape sequences'
,
()
=>
{
initTemplateSrv
([{
type
:
'query'
,
name
:
'test'
,
current
:
{
value
:
'<script>alert(asd)</script>'
}
}]);
const
target
=
_templateSrv
.
replace
(
'$test'
,
{},
'html'
);
expect
(
target
).
toBe
(
'<script>alert(asd)</script>'
);
});
});
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'
,
()
=>
{
const
result
=
_templateSrv
.
formatValue
([
'test'
,
'test2'
],
'glob'
);
expect
(
result
).
toBe
(
'{test,test2}'
);
});
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'
,
()
=>
{
const
result
=
_templateSrv
.
formatValue
([
'test.'
,
'test2'
],
'regex'
);
expect
(
result
).
toBe
(
'(test
\\
.|test2)'
);
});
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'
,
()
=>
{
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'
,
()
=>
{
const
result
=
_templateSrv
.
formatValue
([
'test'
],
'distributed'
,
{
name
:
'build'
,
});
expect
(
result
).
toBe
(
'test'
);
});
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'
,
()
=>
{
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'
,
()
=>
{
const
result
=
_templateSrv
.
formatValue
(
'Gi3/14'
,
'regex'
);
expect
(
result
).
toBe
(
'Gi3
\\
/14'
);
});
it
(
'single value and singlequote format should render string with value enclosed in single quotes'
,
()
=>
{
const
result
=
_templateSrv
.
formatValue
(
'test'
,
'singlequote'
);
expect
(
result
).
toBe
(
"'test'"
);
});
it
(
'multi value and singlequote format should render string with values enclosed in single quotes'
,
()
=>
{
const
result
=
_templateSrv
.
formatValue
([
'test'
,
"test'2"
],
'singlequote'
);
expect
(
result
).
toBe
(
"'test','test
\\
'2'"
);
});
it
(
'single value and doublequote format should render string with value enclosed in double quotes'
,
()
=>
{
const
result
=
_templateSrv
.
formatValue
(
'test'
,
'doublequote'
);
expect
(
result
).
toBe
(
'"test"'
);
});
it
(
'multi value and doublequote format should render string with values enclosed in double quotes'
,
()
=>
{
const
result
=
_templateSrv
.
formatValue
([
'test'
,
'test"2'
],
'doublequote'
);
expect
(
result
).
toBe
(
'"test","test
\\
"2"'
);
});
it
(
'single value and sqlstring format should render string with value enclosed in single quotes'
,
()
=>
{
const
result
=
_templateSrv
.
formatValue
(
"test'value"
,
'sqlstring'
);
expect
(
result
).
toBe
(
`'test''value'`
);
});
it
(
'multi value and sqlstring format should render string with values enclosed in single quotes'
,
()
=>
{
const
result
=
_templateSrv
.
formatValue
([
'test'
,
"test'value2"
],
'sqlstring'
);
expect
(
result
).
toBe
(
`'test','test''value2'`
);
});
});
describe
(
'can check if variable exists'
,
()
=>
{
beforeEach
(()
=>
{
initTemplateSrv
([{
type
:
'query'
,
name
:
'test'
,
current
:
{
value
:
'oogle'
}
}]);
});
it
(
'should return true if $test exists'
,
()
=>
{
const
result
=
_templateSrv
.
variableExists
(
'$test'
);
expect
(
result
).
toBe
(
true
);
});
it
(
'should return true if $test exists in string'
,
()
=>
{
const
result
=
_templateSrv
.
variableExists
(
'something $test something'
);
expect
(
result
).
toBe
(
true
);
});
it
(
'should return true if [[test]] exists in string'
,
()
=>
{
const
result
=
_templateSrv
.
variableExists
(
'something [[test]] something'
);
expect
(
result
).
toBe
(
true
);
});
it
(
'should return true if [[test:csv]] exists in string'
,
()
=>
{
const
result
=
_templateSrv
.
variableExists
(
'something [[test:csv]] something'
);
expect
(
result
).
toBe
(
true
);
});
it
(
'should return true if ${test} exists in string'
,
()
=>
{
const
result
=
_templateSrv
.
variableExists
(
'something ${test} something'
);
expect
(
result
).
toBe
(
true
);
});
it
(
'should return true if ${test:raw} exists in string'
,
()
=>
{
const
result
=
_templateSrv
.
variableExists
(
'something ${test:raw} something'
);
expect
(
result
).
toBe
(
true
);
});
it
(
'should return null if there are no variables in string'
,
()
=>
{
const
result
=
_templateSrv
.
variableExists
(
'string without variables'
);
expect
(
result
).
toBe
(
false
);
});
});
describe
(
'can highlight variables in string'
,
()
=>
{
beforeEach
(()
=>
{
initTemplateSrv
([{
type
:
'query'
,
name
:
'test'
,
current
:
{
value
:
'oogle'
}
}]);
});
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'
,
()
=>
{
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'
,
()
=>
{
const
result
=
_templateSrv
.
highlightVariablesAsHtml
(
'this $google ok'
);
expect
(
result
).
toBe
(
'this $google ok'
);
});
});
describe
(
'updateIndex with simple value'
,
()
=>
{
beforeEach
(()
=>
{
initTemplateSrv
([{
type
:
'query'
,
name
:
'test'
,
current
:
{
value
:
'muuuu'
}
}]);
});
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'
,
()
=>
{
beforeAll
(()
=>
{
variableAdapters
.
register
(
createQueryVariableAdapter
());
});
beforeEach
(()
=>
{
initTemplateSrv
([
{
type
:
'query'
,
name
:
'test'
,
current
:
{
value
:
[
'val1'
,
'val2'
]
},
getValueForUrl
:
function
()
{
return
this
.
current
.
value
;
},
},
]);
});
it
(
'should set multiple url params'
,
()
=>
{
const
params
:
any
=
{};
_templateSrv
.
fillVariableValuesForUrl
(
params
);
expect
(
params
[
'var-test'
]).
toMatchObject
([
'val1'
,
'val2'
]);
});
});
describe
(
'fillVariableValuesForUrl skip url sync'
,
()
=>
{
beforeEach
(()
=>
{
initTemplateSrv
([
{
name
:
'test'
,
skipUrlSync
:
true
,
current
:
{
value
:
'value'
},
getValueForUrl
:
function
()
{
return
this
.
current
.
value
;
},
},
]);
});
it
(
'should not include template variable value in url'
,
()
=>
{
const
params
:
any
=
{};
_templateSrv
.
fillVariableValuesForUrl
(
params
);
expect
(
params
[
'var-test'
]).
toBe
(
undefined
);
});
});
describe
(
'fillVariableValuesForUrl with multi value with skip url sync'
,
()
=>
{
beforeEach
(()
=>
{
initTemplateSrv
([
{
type
:
'query'
,
name
:
'test'
,
skipUrlSync
:
true
,
current
:
{
value
:
[
'val1'
,
'val2'
]
},
getValueForUrl
:
function
()
{
return
this
.
current
.
value
;
},
},
]);
});
it
(
'should not include template variable value in url'
,
()
=>
{
const
params
:
any
=
{};
_templateSrv
.
fillVariableValuesForUrl
(
params
);
expect
(
params
[
'var-test'
]).
toBe
(
undefined
);
});
});
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'
,
()
=>
{
const
params
:
any
=
{};
_templateSrv
.
fillVariableValuesForUrl
(
params
,
{
test
:
{
value
:
'val1'
},
});
expect
(
params
[
'var-test'
]).
toBe
(
'val1'
);
});
});
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'
,
()
=>
{
const
params
:
any
=
{};
_templateSrv
.
fillVariableValuesForUrl
(
params
,
{
test
:
{
name
:
'test'
,
value
:
'val1'
,
skipUrlSync
:
true
},
});
expect
(
params
[
'var-test'
]).
toBe
(
undefined
);
});
});
describe
(
'replaceWithText'
,
()
=>
{
beforeEach
(()
=>
{
initTemplateSrv
([
{
type
:
'query'
,
name
:
'server'
,
current
:
{
value
:
'{asd,asd2}'
,
text
:
'All'
},
},
{
type
:
'interval'
,
name
:
'period'
,
current
:
{
value
:
'$__auto_interval_interval'
,
text
:
'auto'
},
},
{
type
:
'textbox'
,
name
:
'empty_on_init'
,
current
:
{
value
:
''
,
text
:
''
},
},
{
type
:
'custom'
,
name
:
'foo'
,
current
:
{
value
:
'constructor'
,
text
:
'constructor'
},
},
]);
_templateSrv
.
setGrafanaVariable
(
'$__auto_interval_interval'
,
'13m'
);
_templateSrv
.
updateIndex
();
});
it
(
'should replace with text except for grafanaVariables'
,
()
=>
{
const
target
=
_templateSrv
.
replaceWithText
(
'Server: $server, period: $period'
);
expect
(
target
).
toBe
(
'Server: All, period: 13m'
);
});
it
(
'should replace empty string-values with an empty string'
,
()
=>
{
const
target
=
_templateSrv
.
replaceWithText
(
'Hello $empty_on_init'
);
expect
(
target
).
toBe
(
'Hello '
);
});
it
(
'should not return a string representation of a constructor property'
,
()
=>
{
const
target
=
_templateSrv
.
replaceWithText
(
'$foo'
);
expect
(
target
).
not
.
toBe
(
'function Object() { [native code] }'
);
expect
(
target
).
toBe
(
'constructor'
);
});
});
describe
(
'built in interval variables'
,
()
=>
{
beforeEach
(()
=>
{
initTemplateSrv
([]);
});
it
(
'should be possible to fetch value with getBuilInIntervalValue'
,
()
=>
{
const
val
=
_templateSrv
.
getBuiltInIntervalValue
();
expect
(
val
).
toBe
(
'1s'
);
});
it
(
'should replace $__interval_ms with interval milliseconds'
,
()
=>
{
const
target
=
_templateSrv
.
replace
(
'10 * $__interval_ms'
,
{
__interval_ms
:
{
text
:
'100'
,
value
:
'100'
},
});
expect
(
target
).
toBe
(
'10 * 100'
);
});
});
});
public/app/features/templating/template_srv.ts
View file @
fba329f3
...
@@ -267,7 +267,8 @@ export class TemplateSrv implements BaseTemplateSrv {
...
@@ -267,7 +267,8 @@ export class TemplateSrv implements BaseTemplateSrv {
variableExists
(
expression
:
string
):
boolean
{
variableExists
(
expression
:
string
):
boolean
{
const
name
=
this
.
getVariableName
(
expression
);
const
name
=
this
.
getVariableName
(
expression
);
return
(
name
&&
this
.
getVariableAtIndex
(
name
))
!==
undefined
;
const
variable
=
name
&&
this
.
getVariableAtIndex
(
name
);
return
variable
!==
null
&&
variable
!==
undefined
;
}
}
highlightVariablesAsHtml
(
str
:
string
)
{
highlightVariablesAsHtml
(
str
:
string
)
{
...
@@ -427,7 +428,7 @@ export class TemplateSrv implements BaseTemplateSrv {
...
@@ -427,7 +428,7 @@ export class TemplateSrv implements BaseTemplateSrv {
return
value
.
join
(
','
);
return
value
.
join
(
','
);
}
}
private
getVariableAtIndex
=
(
name
:
string
):
any
=>
{
private
getVariableAtIndex
(
name
:
string
)
{
if
(
!
name
)
{
if
(
!
name
)
{
return
;
return
;
}
}
...
@@ -437,11 +438,11 @@ export class TemplateSrv implements BaseTemplateSrv {
...
@@ -437,11 +438,11 @@ export class TemplateSrv implements BaseTemplateSrv {
}
}
return
this
.
index
[
name
];
return
this
.
index
[
name
];
}
;
}
private
getAdHocVariables
=
():
any
[]
=>
{
private
getAdHocVariables
():
any
[]
{
return
this
.
dependencies
.
getFilteredVariables
(
isAdHoc
);
return
this
.
dependencies
.
getFilteredVariables
(
isAdHoc
);
}
;
}
}
}
// Expose the template srv
// Expose the template srv
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment