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
1a72347c
Unverified
Commit
1a72347c
authored
4 years ago
by
Nemanja Glumac
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
#1926 Repro: We shouldn't print revision history steps without description/diff (#15322)
parent
45f8d938
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/collections/permissions.cy.spec.js
+50
-23
50 additions, 23 deletions
...est/metabase/scenarios/collections/permissions.cy.spec.js
with
50 additions
and
23 deletions
frontend/test/metabase/scenarios/collections/permissions.cy.spec.js
+
50
−
23
View file @
1a72347c
...
...
@@ -403,29 +403,46 @@ describe("collection permissions", () => {
cy
.
route
(
"
POST
"
,
"
/api/revision/revert
"
).
as
(
"
revert
"
);
});
it
.
skip
(
"
dashboard should update properly on revert (metabase#6884)
"
,
()
=>
{
cy
.
signInAsAdmin
();
cy
.
visit
(
"
/dashboard/1
"
);
cy
.
icon
(
"
pencil
"
).
click
();
// Add another question without changing its size or moving it afterwards
cy
.
icon
(
"
add
"
)
.
last
()
.
click
();
cy
.
findByText
(
"
Orders, Count
"
).
click
();
clickButton
(
"
Save
"
);
cy
.
findByText
(
"
You're editing this dashboard.
"
).
should
(
"
not.exist
"
);
// Revert the card to the state when the second card was added
cy
.
icon
(
"
ellipsis
"
).
click
();
cy
.
findByText
(
"
Revision history
"
).
click
();
clickRevert
(
"
added a card.
"
,
0
);
// the top-most string or the latest card addition
cy
.
wait
(
"
@revert
"
);
cy
.
request
(
"
GET
"
,
"
/api/dashboard/1
"
).
then
(
xhr
=>
{
const
SECOND_CARD
=
xhr
.
body
.
ordered_cards
[
1
];
const
{
col
,
sizeX
,
sizeY
}
=
SECOND_CARD
;
// The second card shrunk its size and changed the position completely to the left covering the first one
expect
(
col
).
not
.
to
.
eq
(
0
);
expect
(
sizeX
).
to
.
eq
(
4
);
expect
(
sizeY
).
to
.
eq
(
4
);
describe
(
"
reproductions
"
,
()
=>
{
beforeEach
(()
=>
{
cy
.
signInAsAdmin
();
});
it
.
skip
(
"
shouldn't record history steps when there was no diff (metabase#1926)
"
,
()
=>
{
cy
.
signInAsAdmin
();
cy
.
createDashboard
(
"
foo
"
).
then
(({
body
})
=>
{
visitAndEditDashboard
(
body
.
id
);
});
// Save the dashboard without any changes made to it (TODO: we should probably disable "Save" button in the first place)
saveDashboard
();
// Take a look at the generated history - there shouldn't be anything other than "First revision" (dashboard created)
cy
.
icon
(
"
ellipsis
"
).
click
();
cy
.
findByText
(
"
Revision history
"
).
click
();
cy
.
findAllByRole
(
"
button
"
,
{
name
:
"
Revert
"
}).
should
(
"
not.exist
"
);
});
it
.
skip
(
"
dashboard should update properly on revert (metabase#6884)
"
,
()
=>
{
cy
.
signInAsAdmin
();
visitAndEditDashboard
(
1
);
// Add another question without changing its size or moving it afterwards
cy
.
icon
(
"
add
"
)
.
last
()
.
click
();
cy
.
findByText
(
"
Orders, Count
"
).
click
();
saveDashboard
();
// Revert the card to the state when the second card was added
cy
.
icon
(
"
ellipsis
"
).
click
();
cy
.
findByText
(
"
Revision history
"
).
click
();
clickRevert
(
"
added a card.
"
,
0
);
// the top-most string or the latest card addition
cy
.
wait
(
"
@revert
"
);
cy
.
request
(
"
GET
"
,
"
/api/dashboard/1
"
).
then
(
xhr
=>
{
const
SECOND_CARD
=
xhr
.
body
.
ordered_cards
[
1
];
const
{
col
,
sizeX
,
sizeY
}
=
SECOND_CARD
;
// The second card shrunk its size and changed the position completely to the left covering the first one
expect
(
col
).
not
.
to
.
eq
(
0
);
expect
(
sizeX
).
to
.
eq
(
4
);
expect
(
sizeY
).
to
.
eq
(
4
);
});
});
});
...
...
@@ -548,3 +565,13 @@ function assertOnRequest(xhr_alias) {
);
cy
.
get
(
"
.Modal
"
).
should
(
"
not.exist
"
);
}
function
visitAndEditDashboard
(
id
)
{
cy
.
visit
(
`/dashboard/
${
id
}
`
);
cy
.
icon
(
"
pencil
"
).
click
();
}
function
saveDashboard
()
{
clickButton
(
"
Save
"
);
cy
.
findByText
(
"
You're editing this dashboard.
"
).
should
(
"
not.exist
"
);
}
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