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
a60cf948
Unverified
Commit
a60cf948
authored
3 years ago
by
Nemanja Glumac
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add initial set of e2e tests around sql field filter type of Number (#16852)
parent
6b8accf9
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/scenarios/filters/sql-field-filter-number.cy.spec.js
+171
-0
171 additions, 0 deletions
...base/scenarios/filters/sql-field-filter-number.cy.spec.js
with
171 additions
and
0 deletions
frontend/test/metabase/scenarios/filters/sql-field-filter-number.cy.spec.js
0 → 100644
+
171
−
0
View file @
a60cf948
import
{
restore
,
mockSessionProperty
,
openNativeEditor
,
popover
,
}
from
"
__support__/e2e/cypress
"
;
const
NUMBER_FILTER_SUBTYPES
=
{
"
Equal to
"
:
{
term
:
"
4.3
"
,
representativeResult
:
"
Aerodynamic Linen Coat
"
,
},
"
Not equal to
"
:
{
term
:
"
4.3
"
,
representativeResult
:
"
Rustic Paper Wallet
"
,
},
Between
:
{
term
:
[
"
4.3
"
,
"
5
"
],
representativeResult
:
"
Rustic Paper Wallet
"
,
},
"
Greater than or equal to
"
:
{
term
:
"
4.3
"
,
representativeResult
:
"
Rustic Paper Wallet
"
,
},
"
Less than or equal to
"
:
{
term
:
"
4.3
"
,
representativeResult
:
"
Small Marble Shoes
"
,
},
};
describe
(
"
scenarios > filters > sql filters > field filter > Number
"
,
()
=>
{
beforeEach
(()
=>
{
restore
();
cy
.
intercept
(
"
POST
"
,
"
api/dataset
"
).
as
(
"
dataset
"
);
cy
.
signInAsAdmin
();
// Make sure feature flag is on regardles of the environment where this is running.
mockSessionProperty
(
"
field-filter-operators-enabled?
"
,
true
);
openNativeEditor
();
enterNativeQuery
(
"
SELECT * FROM products WHERE {{filter}}
"
);
openPopoverFromDefaultFilterType
();
setFilterType
(
"
Field Filter
"
);
mapFieldFilterTo
({
table
:
"
Products
"
,
field
:
"
Rating
"
,
});
});
Object
.
entries
(
NUMBER_FILTER_SUBTYPES
).
forEach
(
([
subType
,
{
term
,
representativeResult
}])
=>
{
describe
(
`should work for
${
subType
}
`
,
()
=>
{
it
(
"
when set through the filter widget
"
,
()
=>
{
setFilterWidgetType
(
subType
);
setFieldFilterWidgetValue
(
term
);
runQuery
();
cy
.
get
(
"
.Visualization
"
).
within
(()
=>
{
cy
.
findByText
(
representativeResult
);
});
});
it
(
"
when set as the default value for a required filter
"
,
()
=>
{
setFilterWidgetType
(
subType
);
setRequiredFieldFilterDefaultValue
(
term
);
runQuery
();
cy
.
get
(
"
.Visualization
"
).
within
(()
=>
{
cy
.
findByText
(
representativeResult
);
});
});
});
},
);
});
function
openPopoverFromSelectedFilterType
(
filterType
)
{
cy
.
get
(
"
.AdminSelect-content
"
)
.
contains
(
filterType
)
.
click
();
}
function
openPopoverFromDefaultFilterType
()
{
openPopoverFromSelectedFilterType
(
"
Text
"
);
}
function
setFilterType
(
filterType
)
{
popover
().
within
(()
=>
{
cy
.
findByText
(
filterType
).
click
();
});
}
function
runQuery
(
xhrAlias
=
"
dataset
"
)
{
cy
.
get
(
"
.NativeQueryEditor .Icon-play
"
).
click
();
cy
.
wait
(
"
@
"
+
xhrAlias
);
cy
.
icon
(
"
play
"
).
should
(
"
not.exist
"
);
}
function
enterNativeQuery
(
query
)
{
cy
.
get
(
"
@editor
"
).
type
(
query
,
{
parseSpecialCharSequences
:
false
});
}
function
toggleRequiredFilter
()
{
cy
.
findByText
(
"
Required?
"
)
.
parent
()
.
find
(
"
a
"
)
.
click
();
}
function
setRequiredFieldFilterDefaultValue
(
value
)
{
toggleRequiredFilter
();
cy
.
findByText
(
"
Enter a default value...
"
).
click
();
if
(
Array
.
isArray
(
value
))
{
setBetweenFilterValue
(
value
);
}
else
{
cy
.
findByPlaceholderText
(
"
Enter a default value...
"
).
type
(
value
);
cy
.
button
(
"
Add filter
"
).
click
();
}
}
function
mapFieldFilterTo
({
table
,
field
}
=
{})
{
popover
()
.
contains
(
table
)
.
click
();
popover
()
.
contains
(
field
)
.
click
();
}
function
setFilterWidgetType
(
type
)
{
cy
.
findByText
(
"
Filter widget type
"
)
.
parent
()
.
find
(
"
.AdminSelect
"
)
.
click
();
popover
()
.
findByText
(
type
)
.
click
();
}
function
setFieldFilterWidgetValue
(
value
)
{
cy
.
get
(
"
fieldset
"
).
click
();
if
(
Array
.
isArray
(
value
))
{
setBetweenFilterValue
(
value
);
}
else
{
popover
()
.
find
(
"
input
"
)
.
type
(
value
);
cy
.
button
(
"
Add filter
"
).
click
();
}
}
function
setBetweenFilterValue
([
low
,
high
]
=
[])
{
popover
().
within
(()
=>
{
cy
.
get
(
"
input
"
)
.
first
()
.
type
(
low
);
cy
.
get
(
"
input
"
)
.
last
()
.
type
(
high
);
});
cy
.
button
(
"
Add filter
"
).
click
();
}
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