Skip to content
Snippets Groups Projects
Unverified Commit d5b8b96b authored by Nemanja Glumac's avatar Nemanja Glumac Committed by GitHub
Browse files

#15281 Repro: Users with read permissions are offered to save new dashboard in...

#15281 Repro: Users with read permissions are offered to save new dashboard in collections they only have read access to (#15282)
parent 44e0c5f3
No related branches found
No related tags found
No related merge requests found
import { onlyOn } from "@cypress/skip-test";
import { restore } from "__support__/cypress";
import { restore, popover } from "__support__/cypress";
import { USERS } from "__support__/cypress_data";
const PERMISSIONS = {
curate: ["admin", "normal", "nodata"],
......@@ -121,6 +122,39 @@ describe("collection permissions", () => {
});
});
});
onlyOn(permission === "view", () => {
beforeEach(() => {
cy.signIn(user);
});
["/", "/collection/root"].forEach(route => {
it.skip("should not be offered to save dashboard in collections they have `read` access to (metabase#15281)", () => {
const { first_name, last_name } = USERS[user];
cy.visit(route);
cy.icon("add").click();
cy.findByText("New dashboard").click();
cy.findByLabelText("Name")
.click()
.type("Foo");
// Coming from the root collection, the initial offered collection will be "Our analytics" (read-only access)
cy.findByText(
`${first_name} ${last_name}'s Personal Collection`,
).click();
popover().within(() => {
cy.findByText("My personal collection");
// Test will fail on this step first
cy.findByText("First collection").should("not.exist");
// This is the second step that makes sure not even search returns collections with read-only access
cy.icon("search").click();
cy.findByPlaceholderText("Search")
.click()
.type("third{Enter}");
cy.findByText("Third collection").should("not.exist");
});
});
});
});
});
});
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment