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

178 lines
5.5 KiB
JavaScript
Raw Normal View History

2023-05-22 12:22:28 +00:00
import { fake } from "Fixtures/fake";
2023-02-09 05:18:20 +00:00
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";
2023-05-22 12:22:28 +00:00
import { closeDSModal, deleteDatasource } from "Support/utils/dataSource";
2023-02-09 05:18:20 +00:00
import {
addQuery,
fillDataSourceTextField,
fillConnectionForm,
selectDataSource,
openQueryEditor,
selectQueryMode,
addGuiQuery,
addWidgetsToAddUser,
} from "Support/utils/postgreSql";
2023-05-22 12:22:28 +00:00
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();
2023-05-22 12:22:28 +00:00
closeDSModal();
cy.get(commonSelectors.addNewDataSourceButton)
.verifyVisibleElement("have.text", commonText.addNewDataSourceButton)
2023-02-09 05:18:20 +00:00
.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("ClickHouse");
cy.get("[data-cy*='data-source-']").eq(1).should("contain", "ClickHouse");
2023-02-09 05:18:20 +00:00
cy.get('[data-cy="data-source-clickhouse"]').click();
cy.get(postgreSqlSelector.dataSourceNameInputField).should(
//username,password,host,port,protocol,dbname,usepost, trimquery,gzip,debug,raw
2023-02-09 05:18:20 +00:00
"have.value",
"ClickHouse"
2023-02-09 05:18:20 +00:00
);
cy.get(postgreSqlSelector.labelUserName).verifyVisibleElement(
"have.text",
postgreSqlText.labelUserName
);
cy.get(postgreSqlSelector.labelPassword).verifyVisibleElement(
"have.text",
"Password"
2023-02-09 05:18:20 +00:00
);
cy.get(postgreSqlSelector.labelHost).verifyVisibleElement(
"have.text",
postgreSqlText.labelHost
);
cy.get(postgreSqlSelector.labelPort).verifyVisibleElement(
"have.text",
postgreSqlText.labelPort
);
cy.get(postgreSqlSelector.labelDbName).verifyVisibleElement(
"have.text",
postgreSqlText.labelDbName
);
cy.get('[data-cy="label-protocol"]').verifyVisibleElement(
"have.text",
"Protocol"
2023-02-09 05:18:20 +00:00
);
cy.get('[data-cy="label-use-post"]').verifyVisibleElement(
"have.text",
"Use Post"
2023-02-09 05:18:20 +00:00
);
cy.get('[data-cy="label-trim-query"]').verifyVisibleElement(
"have.text",
"Trim Query"
2023-02-09 05:18:20 +00:00
);
cy.get('[data-cy="label-use-gzip"]').verifyVisibleElement(
"have.text",
"Use Gzip"
2023-02-09 05:18:20 +00:00
);
cy.get('[data-cy="label-debug"]').verifyVisibleElement(
"have.text",
"Debug"
2023-02-09 05:18:20 +00:00
);
cy.get('[data-cy="label-raw"]').verifyVisibleElement("have.text", "Raw");
cy.get(postgreSqlSelector.labelIpWhitelist)
.scrollIntoView()
.verifyVisibleElement("have.text", postgreSqlText.whiteListIpText);
cy.get(postgreSqlSelector.buttonCopyIp)
.scrollIntoView()
.verifyVisibleElement("have.text", postgreSqlText.textCopy);
2023-02-09 05:18:20 +00:00
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"]', { timeout: 60000 })
.scrollIntoView()
.verifyVisibleElement("have.text", "getaddrinfo ENOTFOUND undefined");
2023-02-09 05:18:20 +00:00
});
it("Should verify the functionality of PostgreSQL connection form.", () => {
selectDataSource("ClickHouse");
2023-02-09 05:18:20 +00:00
cy.clearAndType(
'[data-cy="data-source-name-input-filed"]',
2023-05-22 12:22:28 +00:00
`cypress-${data.lastName}-clickhouse`
2023-02-09 05:18:20 +00:00
);
fillDataSourceTextField(
postgreSqlText.labelHost,
"localhost",
2023-02-09 05:18:20 +00:00
Cypress.env("pg_host")
);
fillDataSourceTextField(postgreSqlText.labelPort, "8123", "8123");
2023-02-09 05:18:20 +00:00
fillDataSourceTextField(
postgreSqlText.labelDbName,
"database name",
"{del}"
2023-02-09 05:18:20 +00:00
);
fillDataSourceTextField(
postgreSqlText.labelUserName,
postgreSqlText.placeholderEnterUserName,
Cypress.env("clickhouse_user")
2023-02-09 05:18:20 +00:00
);
cy.get(postgreSqlSelector.passwordTextField).type(
Cypress.env("clickhouse_password")
2023-02-09 05:18:20 +00:00
);
cy.get(".react-select__input-container").click().type(`HTTP{enter}`);
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.toastDSAdded
);
2023-05-22 12:22:28 +00:00
cy.get(
`[data-cy="cypress-${data.lastName}-clickhouse-button"]`
).verifyVisibleElement("have.text", `cypress-${data.lastName}-clickhouse`);
deleteDatasource(`cypress-${data.lastName}-clickhouse`);
2023-02-09 05:18:20 +00:00
});
});