mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-24 06:57:40 +00:00
165 lines
4.8 KiB
JavaScript
165 lines
4.8 KiB
JavaScript
import { fake } from "Fixtures/fake";
|
|
import { postgreSqlSelector } from "Selectors/postgreSql";
|
|
import { postgreSqlText } from "Texts/postgreSql";
|
|
import { commonWidgetText } from "Texts/common";
|
|
import { commonSelectors, commonWidgetSelector } from "Selectors/common";
|
|
import { commonText } from "Texts/common";
|
|
import { closeDSModal, deleteDatasource } from "Support/utils/dataSource";
|
|
|
|
import {
|
|
addQuery,
|
|
fillDataSourceTextField,
|
|
fillConnectionForm,
|
|
selectDataSource,
|
|
openQueryEditor,
|
|
selectQueryMode,
|
|
addGuiQuery,
|
|
addWidgetsToAddUser,
|
|
} from "Support/utils/postgreSql";
|
|
|
|
const data = {};
|
|
data.lastName = fake.lastName.toLowerCase().replaceAll("[^A-Za-z]", "");
|
|
|
|
describe("Data sources", () => {
|
|
beforeEach(() => {
|
|
cy.appUILogin();
|
|
});
|
|
|
|
it("Should verify elements on connection form", () => {
|
|
cy.get(commonSelectors.globalDataSourceIcon).click();
|
|
closeDSModal();
|
|
cy.get(commonSelectors.addNewDataSourceButton)
|
|
.verifyVisibleElement("have.text", commonText.addNewDataSourceButton)
|
|
.click();
|
|
|
|
cy.get(postgreSqlSelector.allDatasourceLabelAndCount).should(
|
|
"have.text",
|
|
postgreSqlText.allDataSources
|
|
);
|
|
cy.get(postgreSqlSelector.databaseLabelAndCount).should(
|
|
"have.text",
|
|
postgreSqlText.allDatabase
|
|
);
|
|
cy.get(postgreSqlSelector.apiLabelAndCount).should(
|
|
"have.text",
|
|
postgreSqlText.allApis
|
|
);
|
|
cy.get(postgreSqlSelector.cloudStorageLabelAndCount).should(
|
|
"have.text",
|
|
postgreSqlText.allCloudStorage
|
|
);
|
|
|
|
cy.get(postgreSqlSelector.dataSourceSearchInputField).type("CouchDB");
|
|
cy.get("[data-cy*='data-source-']").eq(1).should("contain", "CouchDB");
|
|
cy.get('[data-cy="data-source-couchdb"]').click();
|
|
|
|
cy.get(postgreSqlSelector.dataSourceNameInputField).should(
|
|
"have.value",
|
|
"CouchDB"
|
|
);
|
|
cy.get(postgreSqlSelector.labelHost).verifyVisibleElement(
|
|
"have.text",
|
|
postgreSqlText.labelHost
|
|
);
|
|
cy.get(postgreSqlSelector.labelPort).verifyVisibleElement(
|
|
"have.text",
|
|
postgreSqlText.labelPort
|
|
);
|
|
cy.get(postgreSqlSelector.labelUserName).verifyVisibleElement(
|
|
"have.text",
|
|
postgreSqlText.labelUserName
|
|
);
|
|
cy.get(postgreSqlSelector.labelPassword).verifyVisibleElement(
|
|
"have.text",
|
|
"Password"
|
|
);
|
|
cy.get(postgreSqlSelector.labelDbName).verifyVisibleElement(
|
|
"have.text",
|
|
postgreSqlText.labelDbName
|
|
);
|
|
|
|
cy.get('[data-cy="label-protocol"]').verifyVisibleElement(
|
|
"have.text",
|
|
"Protocol"
|
|
);
|
|
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).verifyVisibleElement(
|
|
"have.text",
|
|
postgreSqlText.couldNotConnect
|
|
);
|
|
cy.get(postgreSqlSelector.buttonSave).verifyVisibleElement(
|
|
"have.text",
|
|
postgreSqlText.buttonTextSave
|
|
);
|
|
cy.get('[data-cy="connection-alert-text"]').verifyVisibleElement(
|
|
"have.text",
|
|
"Invalid URL"
|
|
);
|
|
});
|
|
|
|
it("Should verify the functionality of PostgreSQL connection form.", () => {
|
|
selectDataSource("CouchDB");
|
|
|
|
cy.clearAndType(
|
|
'[data-cy="data-source-name-input-filed"]',
|
|
`cypress-${data.lastName}-couchdb`
|
|
);
|
|
|
|
fillDataSourceTextField(
|
|
postgreSqlText.labelHost,
|
|
"",
|
|
Cypress.env("couchdb_host")
|
|
);
|
|
fillDataSourceTextField(postgreSqlText.labelPort, "5984 ", "5984");
|
|
fillDataSourceTextField(
|
|
postgreSqlText.labelDbName,
|
|
"database name",
|
|
"{del}"
|
|
);
|
|
fillDataSourceTextField(
|
|
postgreSqlText.labelUserName,
|
|
"username for couchDB",
|
|
Cypress.env("couchdb_user")
|
|
);
|
|
cy.get(".react-select__input-container").type("HTTP{enter}");
|
|
|
|
cy.get(postgreSqlSelector.passwordTextField).type(
|
|
Cypress.env("couchdb_password"),
|
|
{ log: false }
|
|
);
|
|
|
|
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.toastDSAdded
|
|
);
|
|
|
|
cy.get(
|
|
`[data-cy="cypress-${data.lastName}-couchdb-button"]`
|
|
).verifyVisibleElement("have.text", `cypress-${data.lastName}-couchdb`);
|
|
deleteDatasource(`cypress-${data.lastName}-couchdb`);
|
|
});
|
|
});
|