Skip to content
Snippets Groups Projects
Unverified Commit 1947328e authored by Kamil Mielnik's avatar Kamil Mielnik Committed by GitHub
Browse files

Repro #37380 - Users with no self-service access may update pivot tables and...

Repro #37380 - Users with no self-service access may update pivot tables and leave them in a non-working state (#43437)

* Fix crash and remove redundant casting

* Add repro for metabase#37380

* Be extra-safe with an empty array
parent 78db8c49
No related branches found
No related tags found
No related merge requests found
import { SAMPLE_DB_ID } from "e2e/support/cypress_data";
import { SAMPLE_DB_ID, USER_GROUPS } from "e2e/support/cypress_data";
import { SAMPLE_DATABASE } from "e2e/support/cypress_sample_database";
import {
restore,
......@@ -15,6 +15,7 @@ import {
openPublicLinkPopoverFromMenu,
openStaticEmbeddingModal,
modal,
createQuestion,
} from "e2e/support/helpers";
const {
......@@ -1140,6 +1141,74 @@ describe("scenarios > visualizations > pivot tables", { tags: "@slow" }, () => {
);
},
);
describe("issue 37380", () => {
beforeEach(() => {
const categoryField = [
"field",
PRODUCTS.CATEGORY,
{ "base-type": "type/Text" },
];
const createdAtField = [
"field",
PRODUCTS.CREATED_AT,
{
"base-type": "type/DateTime",
"temporal-unit": "month",
},
];
// to reproduce metabase#37380 it's important that user has access to the database, but not to the table
cy.updatePermissionsGraph({
[USER_GROUPS.DATA_GROUP]: {
[SAMPLE_DB_ID]: {
"create-queries": {
PUBLIC: {
[PRODUCTS_ID]: "no",
},
},
},
},
});
createQuestion(
{
query: {
"source-table": PRODUCTS_ID,
aggregation: ["count"],
breakout: [categoryField, createdAtField],
},
display: "pivot",
visualization_settings: {
"pivot_table.column_split": {
rows: [createdAtField],
columns: [categoryField],
values: [["aggregation", 0]],
},
"pivot_table.column_widths": {
leftHeaderWidths: [141],
totalLeftHeaderWidths: 141,
valueHeaderWidths: {},
},
},
},
{
wrapId: true,
idAlias: "questionId",
},
);
});
it("does not allow users with no table access to update pivot questions (metabase#37380)", () => {
cy.signInAsNormalUser();
visitQuestion("@questionId");
cy.findByTestId("viz-settings-button").click();
cy.findByLabelText("Show row totals").click();
cy.button("Save").should("have.attr", "disabled");
});
});
});
const testQuery = {
......
......@@ -195,12 +195,14 @@ export const settings = {
return hasOnlyFormattableColumns && !columnFormat.highlight_row;
});
},
getProps: (series: Series) => ({
canHighlightRow: false,
cols: (series[0].data.cols as DatasetColumn[]).filter(
isFormattablePivotColumn,
),
}),
getProps: (series: Series) => {
const cols = series[0].data?.cols ?? [];
return {
canHighlightRow: false,
cols: cols.filter(isFormattablePivotColumn),
};
},
getHidden: ([{ data }]: [{ data: DatasetData }]) =>
!data?.cols.some(col => isFormattablePivotColumn(col)),
},
......
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