From ce5e64af87872170677014e4a155c2dd1de3ec36 Mon Sep 17 00:00:00 2001 From: Nemanja Glumac <31325167+nemanjaglumac@users.noreply.github.com> Date: Thu, 24 Feb 2022 11:28:48 +0100 Subject: [PATCH] Repro #19744: Custom Column after aggregation causes dashboard filtering to be very limited (#20696) --- ...ter-aggregation-limited-filters.cy.spec.js | 87 +++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 frontend/test/metabase/scenarios/custom-column/reproductions/19744-cc-after-aggregation-limited-filters.cy.spec.js diff --git a/frontend/test/metabase/scenarios/custom-column/reproductions/19744-cc-after-aggregation-limited-filters.cy.spec.js b/frontend/test/metabase/scenarios/custom-column/reproductions/19744-cc-after-aggregation-limited-filters.cy.spec.js new file mode 100644 index 00000000000..05af4275716 --- /dev/null +++ b/frontend/test/metabase/scenarios/custom-column/reproductions/19744-cc-after-aggregation-limited-filters.cy.spec.js @@ -0,0 +1,87 @@ +import { + restore, + editDashboard, + visitQuestionAdhoc, + popover, +} from "__support__/e2e/cypress"; +import { SAMPLE_DATABASE } from "__support__/e2e/cypress_sample_database"; + +const { PRODUCTS_ID, PRODUCTS } = SAMPLE_DATABASE; + +const questionDetails = { + dataset_query: { + type: "query", + query: { + "source-query": { + "source-table": PRODUCTS_ID, + aggregation: [ + ["count"], + ["sum", ["field", PRODUCTS.PRICE, null]], + ["sum", ["field", PRODUCTS.RATING, null]], + ], + breakout: [["field", PRODUCTS.CATEGORY, null]], + }, + expressions: { Math: ["+", 1, 1] }, + }, + database: 1, + }, + display: "bar", +}; + +describe.skip("issue 19744", () => { + beforeEach(() => { + restore(); + cy.signInAsAdmin(); + + // For this specific repro, it's crucial to first visit the question in order to load the `results_metadata`... + visitQuestionAdhoc(questionDetails); + // ...and then to save it using the UI + saveQuestion("19744"); + + addQuestionToDashboardAndVisit(); + }); + + it("custom column after aggregation shouldn't limit or change the behavior of dashboard filters (metabase#19744)", () => { + editDashboard(); + cy.icon("filter").click(); + + cy.findByText("Time").click(); + cy.findByText("All Options").click(); + + cy.get(".DashCard") + .contains("Select…") + .click(); + popover().contains("Created At"); + }); +}); + +function saveQuestion(name) { + cy.intercept("POST", "/api/card").as("saveQuestion"); + + cy.findByText("Save").click(); + cy.findByLabelText("Name").type(name); + + cy.get(".Modal") + .button("Save") + .click(); + + cy.findByText("Not now").click(); + + cy.wait("@saveQuestion").then(({ response: { body } }) => { + cy.wrap(body.id).as("questionId"); + }); +} + +function addQuestionToDashboardAndVisit() { + cy.createDashboard().then(({ body: { id } }) => { + cy.get("@questionId").then(cardId => { + cy.request("POST", `/api/dashboard/${id}/cards`, { + cardId, + sizeX: 16, + sizeY: 10, + }); + }); + + cy.visit(`/dashboard/${id}`); + }); +} -- GitLab