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
56c332a3
Commit
56c332a3
authored
Jul 07, 2015
by
Haneysmith, Nathan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more test updates for influxdb quoting
parent
cd53c784
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
public/test/specs/influx09-querybuilder-specs.js
+2
-2
No files found.
public/test/specs/influx09-querybuilder-specs.js
View file @
56c332a3
...
@@ -97,7 +97,7 @@ define([
...
@@ -97,7 +97,7 @@ define([
it
(
'should have where condition in tag keys query with tags'
,
function
()
{
it
(
'should have where condition in tag keys query with tags'
,
function
()
{
var
builder
=
new
InfluxQueryBuilder
({
measurement
:
''
,
tags
:
[{
key
:
'host'
,
value
:
'se1'
}]
});
var
builder
=
new
InfluxQueryBuilder
({
measurement
:
''
,
tags
:
[{
key
:
'host'
,
value
:
'se1'
}]
});
var
query
=
builder
.
buildExploreQuery
(
'TAG_KEYS'
);
var
query
=
builder
.
buildExploreQuery
(
'TAG_KEYS'
);
expect
(
query
).
to
.
be
(
"SHOW TAG KEYS WHERE
host
= 'se1'"
);
expect
(
query
).
to
.
be
(
"SHOW TAG KEYS WHERE
\"
host
\"
= 'se1'"
);
});
});
it
(
'should have no conditions in measurement query for query with no tags'
,
function
()
{
it
(
'should have no conditions in measurement query for query with no tags'
,
function
()
{
...
@@ -109,7 +109,7 @@ define([
...
@@ -109,7 +109,7 @@ define([
it
(
'should have where condition in measurement query for query with tags'
,
function
()
{
it
(
'should have where condition in measurement query for query with tags'
,
function
()
{
var
builder
=
new
InfluxQueryBuilder
({
measurement
:
''
,
tags
:
[{
key
:
'app'
,
value
:
'email'
}]});
var
builder
=
new
InfluxQueryBuilder
({
measurement
:
''
,
tags
:
[{
key
:
'app'
,
value
:
'email'
}]});
var
query
=
builder
.
buildExploreQuery
(
'MEASUREMENTS'
);
var
query
=
builder
.
buildExploreQuery
(
'MEASUREMENTS'
);
expect
(
query
).
to
.
be
(
"SHOW MEASUREMENTS WHERE
app
= 'email'"
);
expect
(
query
).
to
.
be
(
"SHOW MEASUREMENTS WHERE
\"
app
\"
= 'email'"
);
});
});
it
(
'should have where tag name IN filter in tag values query for query with one tag'
,
function
()
{
it
(
'should have where tag name IN filter in tag values query for query with one tag'
,
function
()
{
...
...
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