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

[Dashboard filters coverage] Add initial set of tests for dashboard text/category filters (#17192)

parent 2a51e379
No related branches found
No related tags found
No related merge requests found
import {
restore,
popover,
mockSessionProperty,
filterWidget,
editDashboard,
saveDashboard,
setFilter,
} from "__support__/e2e/cypress";
import { DASHBOARD_TEXT_FILTERS } from "./helpers/e2e-dashboard-filter-data-objects";
import { addWidgetStringFilter } from "../native-filters/helpers/e2e-field-filter-helpers";
Object.entries(DASHBOARD_TEXT_FILTERS).forEach(
([filter, { value, representativeResult }]) => {
describe("scenarios > dashboard > filters > text/category", () => {
beforeEach(() => {
restore();
cy.signInAsAdmin();
mockSessionProperty("field-filter-operators-enabled?", true);
cy.visit("/dashboard/1");
editDashboard();
setFilter("Text or Category", filter);
cy.findByText("Column to filter on")
.next("a")
.click();
popover()
.contains("Source")
.click();
});
it(`should work for "${filter}" when set through the filter widget`, () => {
saveDashboard();
filterWidget().click();
addWidgetStringFilter(value);
cy.get(".Card").within(() => {
cy.contains(representativeResult);
});
});
it(`should work for "${filter}" when set as the default filter`, () => {
cy.findByText("Default value")
.next()
.click();
addWidgetStringFilter(value);
saveDashboard();
cy.get(".Card").within(() => {
cy.contains(representativeResult);
});
});
});
},
);
......@@ -85,3 +85,30 @@ export const DASHBOARD_LOCATION_FILTERS = {
representativeResult: "115.24",
},
};
export const DASHBOARD_TEXT_FILTERS = {
Dropdown: {
value: "Organic",
representativeResult: "39.58",
},
"Is not": {
value: "Organic",
representativeResult: "37.65",
},
Contains: {
value: "oo",
representativeResult: "148.23",
},
"Does not contain": {
value: "oo",
representativeResult: "37.65",
},
"Starts with": {
value: "A",
representativeResult: "85.72",
},
"Ends with": {
value: "e",
representativeResult: "47.68",
},
};
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