Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
171613e0
Unverified
Commit
171613e0
authored
4 years ago
by
Ariya Hidayat
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Custom expression parser: add more tests (#15117)
parent
328a55d0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
frontend/test/metabase/lib/expressions/parser.unit.spec.js
+138
-23
138 additions, 23 deletions
frontend/test/metabase/lib/expressions/parser.unit.spec.js
with
138 additions
and
23 deletions
frontend/test/metabase/lib/expressions/parser.unit.spec.js
+
138
−
23
View file @
171613e0
import
{
parse
}
from
"
metabase/lib/expressions/parser
"
;
describe
(
"
metabase/lib/expressions/parser
"
,
()
=>
{
describe
(
"
in aggregation mode
"
,
()
=>
{
function
parseAggregation
(
source
)
{
const
tokenVector
=
null
;
const
startRule
=
"
aggregation
"
;
return
parse
({
source
,
tokenVector
,
startRule
});
function
parseSource
(
source
,
startRule
)
{
let
result
=
null
;
try
{
result
=
parse
({
source
,
tokenVector
:
null
,
startRule
});
if
(
result
.
typeErrors
.
length
>
0
)
{
throw
new
Error
(
result
.
typeErrors
);
}
}
catch
(
e
)
{
let
err
=
e
;
if
(
err
.
length
&&
err
.
length
>
0
)
{
err
=
err
[
0
];
if
(
typeof
err
.
message
===
"
string
"
)
{
err
=
err
.
message
;
}
}
throw
err
;
}
it
(
"
should handle a simple aggregation
"
,
()
=>
{
expect
(()
=>
parseAggregation
(
"
Sum([Price])
"
)).
not
.
toThrow
();
return
result
.
cst
;
}
function
parseExpression
(
expr
)
{
return
parseSource
(
expr
,
"
expression
"
);
}
function
parseAggregation
(
aggregation
)
{
return
parseSource
(
aggregation
,
"
aggregation
"
);
}
function
parseFilter
(
filter
)
{
return
parseSource
(
filter
,
"
boolean
"
);
}
describe
(
"
(in expression mode)
"
,
()
=>
{
it
(
"
should accept a number
"
,
()
=>
{
expect
(()
=>
parseExpression
(
"
42
"
)).
not
.
toThrow
();
});
it
(
"
should accept a single-quoted string
"
,
()
=>
{
expect
(()
=>
parseExpression
(
"
'Answer'
"
)).
not
.
toThrow
();
});
it
(
"
should accept a double-quoted string
"
,
()
=>
{
expect
(()
=>
parseExpression
(
'
"Answer"
'
)).
not
.
toThrow
();
});
it
(
"
should accept a group expression (in parentheses)
"
,
()
=>
{
expect
(()
=>
parseExpression
(
"
(42)
"
)).
not
.
toThrow
();
});
it
(
"
should accept the function lower
"
,
()
=>
{
expect
(()
=>
parseExpression
(
"
Lower([Title])
"
)).
not
.
toThrow
();
});
it
(
"
should accept the function upper
"
,
()
=>
{
expect
(()
=>
parseExpression
(
"
Upper([Title])
"
)).
not
.
toThrow
();
});
it
(
"
should accept the function CASE
"
,
()
=>
{
expect
(()
=>
parseExpression
(
"
Case([Z]>7, 'X', 'Y')
"
)).
not
.
toThrow
();
});
it
(
"
should accept the function CASE with multiple cases
"
,
()
=>
{
expect
(()
=>
parseExpression
(
"
Case([X]>5,5,[X]>3,3,0)
"
)).
not
.
toThrow
();
});
it
(
"
should reject an unclosed single-quoted string
"
,
()
=>
{
expect
(()
=>
parseExpression
(
'
"Answer
'
)).
toThrow
();
});
it
(
"
should reject an unclosed double-quoted string
"
,
()
=>
{
expect
(()
=>
parseExpression
(
'
"Answer
'
)).
toThrow
();
});
it
(
"
should
handle a conditional aggregation
"
,
()
=>
{
expect
(()
=>
parse
Aggregation
(
"
CountIf( [Discount] > 0 )
"
)).
not
.
toThrow
();
it
(
"
should
reject a mismatched quoted string
"
,
()
=>
{
expect
(()
=>
parse
Expression
(
"
\"
Answer'
"
))
.
toThrow
();
});
it
(
"
should handle a
complex
conditional
aggregation
"
,
()
=>
{
it
(
"
should handle a conditional
with ISEMPTY
"
,
()
=>
{
expect
(()
=>
parse
Aggregation
(
"
CountIf( ( [Subtotal] + [Tax] ) > 100
)
"
),
parse
Expression
(
"
case(isempty([Discount]),[P]
)
"
),
).
not
.
toThrow
();
});
it
(
"
should reject CASE with only one argument
"
,
()
=>
{
expect
(()
=>
parseExpression
(
"
case([Deal])
"
)).
toThrow
();
});
it
(
"
should accept CASE with two arguments
"
,
()
=>
{
expect
(()
=>
parseExpression
(
"
case([Deal],x)
"
)).
not
.
toThrow
();
});
});
describe
(
"
in expression mode
"
,
()
=>
{
function
parseExpression
(
source
)
{
const
tokenVector
=
null
;
const
startRule
=
"
expression
"
;
return
parse
({
source
,
tokenVector
,
startRule
});
}
it
(
"
should handle a conditional using CASE
"
,
()
=>
{
expect
(()
=>
parseExpression
(
"
Case( [Discount] > 0, 'Sale', 'Normal' )
"
),
).
not
.
toThrow
();
describe
(
"
(in aggregation mode)
"
,
()
=>
{
it
(
"
should accept an aggregration with COUNT
"
,
()
=>
{
expect
(()
=>
parseAggregation
(
"
Count()
"
)).
not
.
toThrow
();
});
it
(
"
should accept an aggregration with SUM
"
,
()
=>
{
expect
(()
=>
parseAggregation
(
"
Sum([Price])
"
)).
not
.
toThrow
();
});
it
(
"
should accept an aggregration with DISTINCT
"
,
()
=>
{
expect
(()
=>
parseAggregation
(
"
Distinct([Supplier])
"
)).
not
.
toThrow
();
});
it
(
"
should accept an aggregration with STANDARDDEVIATION
"
,
()
=>
{
expect
(()
=>
parseAggregation
(
"
StandardDeviation([Debt])
"
)).
not
.
toThrow
();
});
it
(
"
should accept an aggregration with AVERAGE
"
,
()
=>
{
expect
(()
=>
parseAggregation
(
"
Average([Height])
"
)).
not
.
toThrow
();
});
it
(
"
should accept an aggregration with MAX
"
,
()
=>
{
expect
(()
=>
parseAggregation
(
"
Max([Discount])
"
)).
not
.
toThrow
();
});
it
(
"
should accept an aggregration with MIN
"
,
()
=>
{
expect
(()
=>
parseAggregation
(
"
Min([Rating])
"
)).
not
.
toThrow
();
});
it
(
"
should handle a complex conditional using CASE
"
,
()
=>
{
it
(
"
should accept an aggregration with MEDIAN
"
,
()
=>
{
expect
(()
=>
parseAggregation
(
"
Median([Total])
"
)).
not
.
toThrow
();
});
it
(
"
should accept an aggregration with VAR
"
,
()
=>
{
expect
(()
=>
parseAggregation
(
"
Variance([Tax])
"
)).
not
.
toThrow
();
});
it
(
"
should accept a conditional aggregration with COUNTIF
"
,
()
=>
{
expect
(()
=>
parseAggregation
(
"
CountIf([Discount] > 0)
"
)).
not
.
toThrow
();
});
it
(
"
should accept a conditional aggregration with COUNTIF containing an expression
"
,
()
=>
{
expect
(()
=>
parseAggregation
(
"
CountIf(([A]+[B]) > 1)
"
)).
not
.
toThrow
();
expect
(()
=>
parse
Expression
(
"
Case( [Price]-[Discount] > 50, 'Deal', 'Regular'
)
"
),
parse
Aggregation
(
"
CountIf( 1.2 * [Price] > 37
)
"
),
).
not
.
toThrow
();
});
});
describe
(
"
(in filter mode)
"
,
()
=>
{
it
(
"
should accept a simple comparison
"
,
()
=>
{
expect
(()
=>
parseFilter
(
"
[Total] > 12
"
)).
not
.
toThrow
();
});
it
(
"
should accept another simple comparison
"
,
()
=>
{
expect
(()
=>
parseFilter
(
"
10 < [DiscountPercent]
"
)).
not
.
toThrow
();
});
it
(
"
should accept a logical NOT
"
,
()
=>
{
expect
(()
=>
parseFilter
(
"
NOT [Debt] > 5
"
)).
not
.
toThrow
();
});
it
(
"
should accept a segment
"
,
()
=>
{
expect
(()
=>
parseFilter
(
"
[SpecialDeal]
"
)).
not
.
toThrow
();
});
it
(
"
should accept a logical NOT on segment
"
,
()
=>
{
expect
(()
=>
parseFilter
(
"
NOT [Clearance]
"
)).
not
.
toThrow
();
});
it
(
"
should accept multiple logical NOTs on segment
"
,
()
=>
{
expect
(()
=>
parseFilter
(
"
NOT NOT [Clearance]
"
)).
not
.
toThrow
();
});
it
(
"
should accept a relational between a segment and a dimension
"
,
()
=>
{
expect
(()
=>
parseFilter
(
"
([Shipping] < 2) AND [Sale]
"
)).
not
.
toThrow
();
});
it
(
"
should accept a function
"
,
()
=>
{
expect
(()
=>
parseFilter
(
"
between([Subtotal], 1, 2)
"
)).
not
.
toThrow
();
});
it
(
"
should reject CASE with only one argument
"
,
()
=>
{
expect
(()
=>
parseFilter
(
"
case([Deal])
"
)).
toThrow
();
});
});
});
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment