ToolJet/cypress-tests/cypress/e2e/editor/data-source/mariaDbHappyPath.cy.skip.js

170 lines
5.1 KiB
JavaScript
Raw Normal View History

2023-02-09 05:18:20 +00:00
import { postgreSqlSelector } from "Selectors/postgreSql";
import { postgreSqlText } from "Texts/postgreSql";
import { commonWidgetText, commonText } from "Texts/common";
2023-02-09 05:18:20 +00:00
import { commonSelectors, commonWidgetSelector } from "Selectors/common";
import {
addQuery,
fillDataSourceTextField,
fillConnectionForm,
selectAndAddDataSource,
2023-02-09 05:18:20 +00:00
openQueryEditor,
selectQueryMode,
addGuiQuery,
addWidgetsToAddUser,
} from "Support/utils/postgreSql";
import { fake } from "Fixtures/fake";
import { closeDSModal, deleteDatasource } from "Support/utils/dataSource";
const data = {};
data.lastName = fake.lastName.toLowerCase().replaceAll("[^A-Za-z]", "");
2023-02-09 05:18:20 +00:00
describe("Data sources", () => {
beforeEach(() => {
cy.appUILogin();
});
it("Should verify elements on connection form", () => {
cy.get(commonSelectors.globalDataSourceIcon).click();
closeDSModal();
2023-02-09 05:18:20 +00:00
cy.get(postgreSqlSelector.allDatasourceLabelAndCount).should(
"have.text",
postgreSqlText.allDataSources()
2023-02-09 05:18:20 +00:00
);
cy.get(postgreSqlSelector.databaseLabelAndCount).should(
"have.text",
postgreSqlText.allDatabase()
2023-02-09 05:18:20 +00:00
);
cy.get(postgreSqlSelector.apiLabelAndCount).should(
"have.text",
postgreSqlText.allApis
);
cy.get(postgreSqlSelector.cloudStorageLabelAndCount).should(
"have.text",
postgreSqlText.allCloudStorage
);
selectAndAddDataSource("databases", "MariaDB", data.lastName);
2023-02-09 05:18:20 +00:00
cy.get(postgreSqlSelector.labelHost).verifyVisibleElement(
"have.text",
postgreSqlText.labelHost
);
cy.get(postgreSqlSelector.labelUserName).verifyVisibleElement(
"have.text",
postgreSqlText.labelUserName
);
cy.get(postgreSqlSelector.labelPassword).verifyVisibleElement(
"have.text",
"Password"
);
cy.get('[data-cy="label-connection-limit"]').verifyVisibleElement(
"have.text",
"Connection Limit"
);
cy.get(postgreSqlSelector.labelPort).verifyVisibleElement(
"have.text",
postgreSqlText.labelPort
);
cy.get(postgreSqlSelector.labelSsl).verifyVisibleElement(
"have.text",
postgreSqlText.labelSSL
);
cy.get('[data-cy="label-database"]').verifyVisibleElement(
"have.text",
"Database"
);
2023-02-09 05:18:20 +00:00
cy.get(postgreSqlSelector.labelSSLCertificate).verifyVisibleElement(
"have.text",
postgreSqlText.sslCertificate
);
cy.get(postgreSqlSelector.labelIpWhitelist).verifyVisibleElement(
"have.text",
postgreSqlText.whiteListIpText
);
cy.get(postgreSqlSelector.buttonCopyIp).verifyVisibleElement(
"have.text",
postgreSqlText.textCopy
);
cy.get(postgreSqlSelector.linkReadDocumentation).verifyVisibleElement(
"have.text",
postgreSqlText.readDocumentation
);
cy.get(postgreSqlSelector.buttonTestConnection)
.verifyVisibleElement(
"have.text",
postgreSqlText.buttonTextTestConnection
)
.click();
cy.get(postgreSqlSelector.connectionFailedText)
.scrollIntoView()
.verifyVisibleElement("have.text", postgreSqlText.couldNotConnect);
2023-02-09 05:18:20 +00:00
cy.get(postgreSqlSelector.buttonSave).verifyVisibleElement(
"have.text",
postgreSqlText.buttonTextSave
);
// cy.get('[data-cy="connection-alert-text"]').should("be.visible")
deleteDatasource(`cypress-${data.lastName}-mariadb`);
2023-02-09 05:18:20 +00:00
});
it("Should verify the functionality of MariaDB connection form.", () => {
selectAndAddDataSource("databases", "MariaDB", data.lastName);
2023-02-09 05:18:20 +00:00
fillDataSourceTextField(
postgreSqlText.labelHost,
postgreSqlText.placeholderEnterHost,
Cypress.env("mariadb_host")
2023-02-09 05:18:20 +00:00
);
// fillDataSourceTextField(
// postgreSqlText.labelPort,
// postgreSqlText.placeholderEnterPort,
// "5432"
// );
cy.get('[data-cy="label-port"]').verifyVisibleElement("have.text", "Port");
cy.get('[data-cy="port-text-field"]')
.should("be.visible")
.invoke("attr", "placeholder")
.should("contain", "Enter port");
2023-02-09 05:18:20 +00:00
fillDataSourceTextField(
postgreSqlText.labelUserName,
postgreSqlText.placeholderEnterUserName,
Cypress.env("mariadb_user")
2023-02-09 05:18:20 +00:00
);
fillDataSourceTextField(
postgreSqlText.labelPassword,
"**************",
Cypress.env("mariadb_password")
2023-02-09 05:18:20 +00:00
);
cy.get('[data-cy="label-database"]').verifyVisibleElement(
"have.text",
"Database"
);
cy.get('[data-cy="database-text-field"]')
.should("be.visible")
.invoke("attr", "placeholder")
.should("contain", "Enter name of the database");
2023-02-09 05:18:20 +00:00
cy.get(postgreSqlSelector.buttonTestConnection).click();
cy.get(postgreSqlSelector.textConnectionVerified, {
timeout: 10000,
}).should("have.text", postgreSqlText.labelConnectionVerified);
cy.get(postgreSqlSelector.buttonSave).click();
cy.verifyToastMessage(
commonSelectors.toastMessage,
postgreSqlText.toastDSSaved
2023-02-09 05:18:20 +00:00
);
cy.get(
`[data-cy="cypress-${data.lastName}-mariadb-button"]`
).verifyVisibleElement("have.text", `cypress-${data.lastName}-mariadb`);
deleteDatasource(`cypress-${data.lastName}-mariadb`);
2023-02-09 05:18:20 +00:00
});
});