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

#13347 Repro: Cannot select "Saved Questions", which belongs to database user...

#13347 Repro: Cannot select "Saved Questions", which belongs to database user doesn't have Data-permissions for (#15177)
parent 8844f1e0
No related branches found
No related tags found
No related merge requests found
import {
restore,
addPostgresDatabase,
withDatabase,
} from "__support__/cypress";
import { USER_GROUPS } from "__support__/cypress_data";
const { ALL_USERS_GROUP } = USER_GROUPS;
const PG_DB_NAME = "QA Postgres12";
const PG_DB_ID = 2;
describe("postgres > permissions", () => {
beforeEach(() => {
restore();
cy.signInAsAdmin();
addPostgresDatabase(PG_DB_NAME);
cy.server();
});
// NOTE: This issue wasn't specifically related to PostgreSQL. We simply needed to add another DB to reproduce it.
["QB", "Native"].forEach(test => {
it.skip(`${test.toUpperCase()} version:\n should be able to select question (from "Saved Questions") which belongs to the database user doesn't have data-permissions for (metabase#13347)`, () => {
cy.route("POST", "/api/dataset").as("dataset");
cy.updatePermissionsGraph({
[ALL_USERS_GROUP]: {
1: { schemas: "all", native: "write" },
[PG_DB_ID]: { schemas: "none", native: "none" },
},
});
cy.updateCollectionGraph({
[ALL_USERS_GROUP]: { root: "read" },
});
withDatabase(
PG_DB_ID,
({ ORDERS_ID }) =>
cy.createQuestion({
name: "Q1",
query: { "source-table": ORDERS_ID },
database: PG_DB_ID,
}),
cy.createNativeQuestion({
name: "Q2",
native: { query: "SELECT * FROM ORDERS" },
database: PG_DB_ID,
}),
);
cy.signIn("none");
cy.visit("/question/new");
cy.findByText("Simple question").click();
cy.findByText("Saved Questions").click();
test === "QB" ? cy.findByText("Q1").click() : cy.findByText("Q2").click();
cy.wait("@dataset", { timeout: 5000 });
cy.contains("37.65");
});
});
});
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