mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-05 06:18:34 +00:00
* Frontend: Add new plugin babel-plugin-istanbul * Frontend: Add plugin to babel config * Cypress: Add new plugin code-coverage * Cypress: Add plugin to common cypress suite * Cypress: Add reports to .gitignore * Actions: Add new action to check coverage * Cypress: minor config changes * test * test-2 * Action: Add verification for generated coverage files * Modify action file * Modify action file with command changes * debug commit * debug commit-2 * debug commit-3 * Update runjsHappyPath.cy.js * debug commit-4 * Revert "debug commit-5" This reverts commit8b795d86ae. * Revert "debug commit-3" This reverts commitd2e440e04b. * Add action name * Fix marketplace specs * Fix query failures * Add review changes * Add cypress package.lock changes * Add frontend package.lock changes * Add cypress minor package.lock changes * Minor action changes
120 lines
3.9 KiB
JavaScript
120 lines
3.9 KiB
JavaScript
import { fake } from "Fixtures/fake";
|
|
import { postgreSqlSelector } from "Selectors/postgreSql";
|
|
import { postgreSqlText } from "Texts/postgreSql";
|
|
import { bigqueryText } from "Texts/bigquery";
|
|
import { firestoreText } from "Texts/firestore";
|
|
import { commonSelectors } from "Selectors/common";
|
|
import {
|
|
fillDataSourceTextField,
|
|
selectAndAddDataSource,
|
|
} from "Support/utils/postgreSql";
|
|
import { commonText } from "Texts/common";
|
|
import { closeDSModal, deleteDatasource } from "Support/utils/dataSource";
|
|
|
|
const data = {};
|
|
data.lastName = fake.lastName.toLowerCase().replaceAll("[^A-Za-z]", "");
|
|
|
|
describe("Data source BigQuery", () => {
|
|
beforeEach(() => {
|
|
cy.appUILogin();
|
|
cy.intercept("GET", "/api/v2/data_sources");
|
|
});
|
|
|
|
it("Should verify elements on BigQuery 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
|
|
);
|
|
|
|
selectAndAddDataSource("databases", bigqueryText.bigQuery, data.lastName);
|
|
|
|
cy.get('[data-cy="label-private-key"]').verifyVisibleElement(
|
|
"have.text",
|
|
firestoreText.labelPrivateKey
|
|
);
|
|
cy.get(".datasource-edit-btn").should("be.visible");
|
|
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",
|
|
bigqueryText.errorInvalidEmailId
|
|
);
|
|
deleteDatasource(
|
|
`cypress-${String(data.lastName).toLowerCase()}-${String(
|
|
bigqueryText.bigQuery
|
|
).toLowerCase()}`
|
|
);
|
|
});
|
|
|
|
it("Should verify the functionality of BigQuery connection form.", () => {
|
|
selectAndAddDataSource("databases", bigqueryText.bigQuery, data.lastName);
|
|
|
|
fillDataSourceTextField(
|
|
firestoreText.privateKey,
|
|
bigqueryText.placehlderPrivateKey,
|
|
`${JSON.stringify(Cypress.env("bigquery_pvt_key"))}`,
|
|
"contain",
|
|
{ parseSpecialCharSequences: false, delay: 0 }
|
|
);
|
|
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
|
|
);
|
|
|
|
cy.get(commonSelectors.globalDataSourceIcon).click();
|
|
cy.get(
|
|
`[data-cy="cypress-${data.lastName}-bigquery-button"]`
|
|
).verifyVisibleElement("have.text", `cypress-${data.lastName}-bigquery`);
|
|
|
|
deleteDatasource(`cypress-${data.lastName}-bigquery`);
|
|
});
|
|
});
|