Skip to content
Snippets Groups Projects
Unverified Commit aec94624 authored by Alexander Polyankin's avatar Alexander Polyankin Committed by GitHub
Browse files

Approved domains tests (#18075)

parent 3ea737ad
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@ import {
popover,
openPeopleTable,
} from "__support__/e2e/cypress";
// Ported from alert.e2e.spec.js
// *** We should also check that alerts can be set up through slack
......
import {
restore,
setupSMTP,
describeWithToken,
sidebar,
} from "__support__/e2e/cypress";
const allowedDomain = "metabase.test";
const deniedDomain = "metabase.example";
const email = "mailer@" + deniedDomain;
const errorMessage = `You cannot create new subscriptions for the domain "${deniedDomain}". Allowed domains are: ${allowedDomain}`;
describeWithToken("scenarios > alert (EE)", () => {
beforeEach(() => {
restore();
cy.signInAsAdmin();
setupSMTP();
setAllowedEmailDomains(allowedDomain);
});
it("should validate approved email domains for a question alert", () => {
cy.visit("/question/1");
cy.icon("bell").click();
cy.findByText("Set up an alert").click();
addEmailRecipient(email);
cy.button("Done").click();
cy.findByText(errorMessage);
});
it("should validate approved email domains for a dashboard subscription (metabase#17977)", () => {
cy.visit("/dashboard/1");
cy.icon("share").click();
cy.findByText("Dashboard subscriptions").click();
cy.findByText("Email it").click();
cy.findByPlaceholderText("Enter user names or email addresses")
.click()
.type(`${email}`)
.blur();
sidebar().within(() => {
// Reproduces metabase#17977
cy.findByText("Send email now").click();
cy.findByText("Sending failed");
cy.button("Done").click();
cy.findByText(errorMessage);
});
});
});
function addEmailRecipient(email) {
cy.findByText("Email alerts to:")
.parent()
.find("input")
.click()
.type(`${email}`)
.blur();
}
function setAllowedEmailDomains(domains) {
cy.request("PUT", "/api/setting/subscription-allowed-domains", {
value: domains,
});
}
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