From 934c504e0e15be37d8247553cbadb4e9c4cd5516 Mon Sep 17 00:00:00 2001 From: Mekhla Asopa <59684099+Mekhla-Asopa@users.noreply.github.com> Date: Mon, 11 Mar 2024 13:32:18 -0300 Subject: [PATCH] updated mysql database name and port value (#9056) --- .../data-source/mysqlHappyPath.cy.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/cypress-tests/cypress/e2e/happypath/marketplace/commonTestcases/data-source/mysqlHappyPath.cy.js b/cypress-tests/cypress/e2e/happypath/marketplace/commonTestcases/data-source/mysqlHappyPath.cy.js index 1570b91ee2..e07f8d5c98 100644 --- a/cypress-tests/cypress/e2e/happypath/marketplace/commonTestcases/data-source/mysqlHappyPath.cy.js +++ b/cypress-tests/cypress/e2e/happypath/marketplace/commonTestcases/data-source/mysqlHappyPath.cy.js @@ -117,7 +117,7 @@ describe("Data sources MySql", () => { fillDataSourceTextField( postgreSqlText.labelPort, postgreSqlText.placeholderEnterPort, - "3306" + "3318" ); fillDataSourceTextField( postgreSqlText.labelDbName, @@ -141,7 +141,7 @@ describe("Data sources MySql", () => { fillDataSourceTextField( postgreSqlText.labelDbName, postgreSqlText.placeholderNameOfDB, - "testdv" + "test_db" ); fillDataSourceTextField( postgreSqlText.labelUserName, @@ -210,7 +210,7 @@ describe("Data sources MySql", () => { fillConnectionForm({ Host: Cypress.env("mysql_host"), Port: Cypress.env("mysql_port"), - "Database Name": "testdv", + "Database Name": "test_db", Username: Cypress.env("mysql_user"), Password: Cypress.env("mysql_password"), }); @@ -388,7 +388,7 @@ describe("Data sources MySql", () => { fillConnectionForm({ Host: Cypress.env("mysql_host"), Port: Cypress.env("mysql_port"), - "Database Name": "testdv", + "Database Name": "test_db", Username: Cypress.env("mysql_user"), Password: Cypress.env("mysql_password"), }); @@ -421,7 +421,7 @@ describe("Data sources MySql", () => { cy.get(".p-3").should( "have.text", - `[{"Tables_in_testdv (${dbName})":"${dbName}"}]` + `[{"Tables_in_test_db (${dbName})":"${dbName}"}]` ); // addQuery( @@ -462,8 +462,8 @@ describe("Data sources MySql", () => { ); fillConnectionForm({ Host: Cypress.env("mysql_host"), - Port: "3306", - "Database Name": "testdv", + Port: "3318", + "Database Name": "test_db", Username: Cypress.env("mysql_user"), Password: Cypress.env("mysql_password"), });