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
661a3aed
Unverified
Commit
661a3aed
authored
4 years ago
by
Nemanja Glumac
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
#13832 Repro: Filters should use cached results after the first DB call [ci skip] (#14571)
parent
21fe46e5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
frontend/test/__support__/cypress.js
+10
-0
10 additions, 0 deletions
frontend/test/__support__/cypress.js
frontend/test/metabase/scenarios/dashboard/dashboard.cy.spec.js
+71
-0
71 additions, 0 deletions
...nd/test/metabase/scenarios/dashboard/dashboard.cy.spec.js
with
81 additions
and
0 deletions
frontend/test/__support__/cypress.js
+
10
−
0
View file @
661a3aed
...
...
@@ -232,6 +232,16 @@ export function createBasicAlert({ firstAlert, includeNormal } = {}) {
cy
.
findByText
(
"
Let's set up your alert
"
).
should
(
"
not.exist
"
);
}
export
function
expectedRouteCalls
({
route_alias
,
calls
}
=
{})
{
const
requestsCount
=
alias
=>
cy
.
state
(
"
requests
"
).
filter
(
req
=>
req
.
alias
===
alias
);
// It is hard and unreliable to assert that something didn't happen in Cypress
// This solution was the only one that worked out of all others proposed in this SO topic: https://stackoverflow.com/a/59302542/8815185
cy
.
get
(
"
@
"
+
route_alias
).
then
(()
=>
{
expect
(
requestsCount
(
route_alias
)).
to
.
have
.
length
(
calls
);
});
}
/*****************************************
** QA DATABASES **
******************************************/
...
...
This diff is collapsed.
Click to expand it.
frontend/test/metabase/scenarios/dashboard/dashboard.cy.spec.js
+
71
−
0
View file @
661a3aed
...
...
@@ -6,6 +6,7 @@ import {
signIn
,
signInAsAdmin
,
selectDashboardFilter
,
expectedRouteCalls
,
}
from
"
__support__/cypress
"
;
import
{
SAMPLE_DATASET
}
from
"
__support__/cypress_sample_dataset
"
;
...
...
@@ -435,6 +436,76 @@ describe("scenarios > dashboard", () => {
}
});
it
.
skip
(
"
should cache filter results after the first DB call (metabase#13832)
"
,
()
=>
{
// In this test we're using already present dashboard ("Orders in a dashboard")
const
FILTER_ID
=
"
d7988e02
"
;
cy
.
log
(
"
**-- 1. Add filter to the dashboard --**
"
);
cy
.
request
(
"
PUT
"
,
"
/api/dashboard/1
"
,
{
parameters
:
[
{
id
:
FILTER_ID
,
name
:
"
Category
"
,
slug
:
"
category
"
,
type
:
"
category
"
,
},
],
});
cy
.
log
(
"
**-- 2. Connect filter to the existing card --**
"
);
cy
.
request
(
"
PUT
"
,
"
/api/dashboard/1/cards
"
,
{
cards
:
[
{
id
:
1
,
card_id
:
1
,
row
:
0
,
col
:
0
,
sizeX
:
12
,
sizeY
:
8
,
parameter_mappings
:
[
{
parameter_id
:
FILTER_ID
,
card_id
:
1
,
target
:
[
"
dimension
"
,
[
"
fk->
"
,
[
"
field-id
"
,
ORDERS
.
PRODUCT_ID
],
[
"
field-id
"
,
PRODUCTS
.
CATEGORY
],
],
],
},
],
visualization_settings
:
{},
},
],
});
cy
.
server
();
cy
.
route
(
`/api/dashboard/1/params/
${
FILTER_ID
}
/values`
).
as
(
"
fetchFromDB
"
);
cy
.
visit
(
"
/dashboard/1
"
);
cy
.
get
(
"
fieldset
"
)
.
as
(
"
filterWidget
"
)
.
click
();
expectedRouteCalls
({
route_alias
:
"
fetchFromDB
"
,
calls
:
1
});
// Make sure all filters were fetched (should be cached after this)
[
"
Doohickey
"
,
"
Gadget
"
,
"
Gizmo
"
,
"
Widget
"
].
forEach
(
category
=>
{
cy
.
findByText
(
category
);
});
// Get rid of the popover
cy
.
findByText
(
"
Orders in a dashboard
"
).
click
();
cy
.
log
(
"
**-- Clicking on the filter again should NOT send another query to the source DB again! Results should have been cached by now. --**
"
,
);
cy
.
get
(
"
@filterWidget
"
).
click
();
expectedRouteCalls
({
route_alias
:
"
fetchFromDB
"
,
calls
:
1
});
});
describe
(
"
revisions screen
"
,
()
=>
{
it
(
"
should open and close
"
,
()
=>
{
cy
.
visit
(
"
/dashboard/1
"
);
...
...
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