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

#15279 Repro: Dashboard filters not working if one of them is corrupted (#15398)

parent aabf30e0
No related branches found
No related tags found
No related merge requests found
......@@ -654,6 +654,101 @@ describe("scenarios > dashboard", () => {
cy.findByText("Orders in a dashboard");
cy.contains("37.65");
});
["normal", "corrupted"].forEach(test => {
it(`${test.toUpperCase()} version:\n filters should work even if one of them is corrupted (metabase #15279)`, () => {
cy.skipOn(test === "corrupted"); // Remove this line when the issue is fixed
cy.createQuestion({
name: "15279",
query: { "source-table": PEOPLE_ID },
}).then(({ body: { id: QUESTION_ID } }) => {
cy.createDashboard("15279D").then(({ body: { id: DASHBOARD_ID } }) => {
const parameters = [
{
name: "List",
slug: "list",
id: "6fe14171",
type: "category",
},
{
name: "Search",
slug: "search",
id: "4db4913a",
type: "category",
},
];
if (test === "corrupted") {
// This filter is corrupted because it's missing `name` and the `slug`
parameters.push({
name: "",
slug: "",
id: "af72ce9c",
type: "category",
});
}
// Add filters to the dashboard
cy.request("PUT", `/api/dashboard/${DASHBOARD_ID}`, {
parameters,
});
// Add previously created question to the dashboard
cy.request("POST", `/api/dashboard/${DASHBOARD_ID}/cards`, {
cardId: QUESTION_ID,
}).then(({ body: { id: DASH_CARD_ID } }) => {
// Connect filters to that question
cy.request("PUT", `/api/dashboard/${DASHBOARD_ID}/cards`, {
cards: [
{
id: DASH_CARD_ID,
card_id: QUESTION_ID,
row: 0,
col: 0,
sizeX: 18,
sizeY: 8,
series: [],
visualization_settings: {},
parameter_mappings: [
{
parameter_id: "6fe14171",
card_id: QUESTION_ID,
target: ["dimension", ["field-id", PEOPLE.SOURCE]],
},
{
parameter_id: "4db4913a",
card_id: QUESTION_ID,
target: ["dimension", ["field-id", PEOPLE.NAME]],
},
],
},
],
});
});
cy.visit(`/dashboard/${DASHBOARD_ID}`);
});
});
// Check that dropdown list works
cy.get("fieldset")
.contains("List")
.click();
popover()
.findByText("Organic")
.click();
cy.findByRole("button", { name: "Add filter" }).click();
// Check that the search works
cy.get("fieldset")
.contains("Search")
.click();
cy.findByPlaceholderText("Search by Name")
.click()
.type("Lor", { delay: 50 });
popover().within(() => {
cy.get(".LoadingSpinner").should("not.exist");
cy.findByText("Lora Cronin");
});
});
});
});
function checkOptionsForFilter(filter) {
......
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