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
450bbfd2
Unverified
Commit
450bbfd2
authored
3 years ago
by
Nemanja Glumac
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
#18063 Repro: Pin map with null locations shows tooltip of the wrong row (#18070)
parent
8fd9318e
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/visualizations/reproductions/18063-maps-null-location-wrong-tooltip.cy.spec.js
+68
-0
68 additions, 0 deletions
...uctions/18063-maps-null-location-wrong-tooltip.cy.spec.js
with
68 additions
and
0 deletions
frontend/test/metabase/scenarios/visualizations/reproductions/18063-maps-null-location-wrong-tooltip.cy.spec.js
0 → 100644
+
68
−
0
View file @
450bbfd2
import
{
restore
,
popover
}
from
"
__support__/e2e/cypress
"
;
const
questionDetails
=
{
name
:
"
18063
"
,
native
:
{
query
:
'
select null "LATITUDE", null "LONGITUDE", null "COUNT",
\'
NULL ROW
\'
"NAME"
\n
union all select 55.6761, 12.5683, 1,
\'
Copenhagen
\'\n
'
,
"
template-tags
"
:
{},
},
display
:
"
map
"
,
};
describe
.
skip
(
"
issue 18063
"
,
()
=>
{
beforeEach
(()
=>
{
restore
();
cy
.
signInAsAdmin
();
cy
.
createNativeQuestion
(
questionDetails
,
{
visitQuestion
:
true
});
// Select a Pin map
cy
.
findByTestId
(
"
viz-settings-button
"
).
click
();
cy
.
get
(
"
.AdminSelect
"
)
.
contains
(
"
Region map
"
)
.
click
();
popover
()
.
contains
(
"
Pin map
"
)
.
click
();
// Click anywhere to close both popovers that open automatically.
// Please see: https://github.com/metabase/metabase/issues/18063#issuecomment-927836691
cy
.
findByText
(
"
Map type
"
).
click
();
cy
.
findByText
(
"
Map type
"
).
click
();
});
it
(
"
should show the correct tooltip details for pin map even when some locations are null (metabase#18063)
"
,
()
=>
{
selectFieldValue
(
"
Latitude field
"
,
"
LATITUDE
"
);
selectFieldValue
(
"
Longitude field
"
,
"
LONGITUDE
"
);
cy
.
get
(
"
.leaflet-marker-icon
"
).
trigger
(
"
mousemove
"
);
popover
().
within
(()
=>
{
testPairedTooltipValues
(
"
LATITUDE
"
,
"
55.6761
"
);
testPairedTooltipValues
(
"
LONGITUDE
"
,
"
12.5683
"
);
testPairedTooltipValues
(
"
COUNT
"
,
"
1
"
);
testPairedTooltipValues
(
"
NAME
"
,
"
Copenhagen
"
);
});
});
});
function
selectFieldValue
(
field
,
value
)
{
cy
.
findByText
(
field
)
.
parent
()
.
within
(()
=>
{
cy
.
findByText
(
"
Select a field
"
).
click
();
});
popover
()
.
contains
(
value
)
.
click
();
}
function
testPairedTooltipValues
(
val1
,
val2
)
{
cy
.
contains
(
val1
)
.
closest
(
"
td
"
)
.
siblings
(
"
td
"
)
.
findByText
(
val2
);
}
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