-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7242f30
commit 6be3897
Showing
27 changed files
with
2,475 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
cloudsql-mysql-plugin/src/e2e-test/features/sink/CloudMySqlDesignTime.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# Copyright © 2023 Cask Data, Inc. | ||
## | ||
## Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
## use this file except in compliance with the License. You may obtain a copy of | ||
## the License at | ||
## | ||
## http://www.apache.org/licenses/LICENSE-2.0 | ||
## | ||
## Unless required by applicable law or agreed to in writing, software | ||
## distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
## WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
## License for the specific language governing permissions and limitations under | ||
# the License.. | ||
|
||
@CloudMySql @CloudMySql_Required | ||
Feature: CloudMySql sink- Verify CloudMySql sink plugin design time scenarios | ||
|
||
Scenario: To verify CloudMySql sink plugin validation with mandatory properties | ||
Given Open Datafusion Project to configure pipeline | ||
When Expand Plugin group in the LHS plugins list: "Sink" | ||
When Select plugin: "CloudSQL MySQL" from the plugins list as: "Sink" | ||
Then Navigate to the properties page of plugin: "CloudSQL MySQL" | ||
Then Select dropdown plugin property: "select-jdbcPluginName" with option value: "driverName" | ||
Then Select radio button plugin property: "instanceType" with value: "public" | ||
Then Replace input plugin property: "connectionName" with value: "connectionName" for Credentials and Authorization related fields | ||
Then Enter input plugin property: "referenceName" with value: "RefName" | ||
Then Enter input plugin property: "database" with value: "TestDatabase" | ||
Then Enter input plugin property: "tableName" with value: "mytable" | ||
Then Validate "CloudSQL MySQL" plugin properties | ||
Then Close the Plugin Properties page | ||
|
||
Scenario: To verify CloudMySql sink plugin validation with connection and basic details for connectivity | ||
Given Open Datafusion Project to configure pipeline | ||
When Expand Plugin group in the LHS plugins list: "Sink" | ||
When Select plugin: "CloudSQL MySQL" from the plugins list as: "Sink" | ||
Then Navigate to the properties page of plugin: "CloudSQL MySQL" | ||
Then Select dropdown plugin property: "select-jdbcPluginName" with option value: "driverName" | ||
Then Select radio button plugin property: "instanceType" with value: "public" | ||
Then Replace input plugin property: "connectionName" with value: "connectionName" for Credentials and Authorization related fields | ||
Then Replace input plugin property: "user" with value: "username" for Credentials and Authorization related fields | ||
Then Replace input plugin property: "password" with value: "password" for Credentials and Authorization related fields | ||
Then Enter key value pairs for plugin property: "connectionArguments" with values from json: "connectionArgumentsList" | ||
Then Enter input plugin property: "referenceName" with value: "RefName" | ||
Then Enter input plugin property: "database" with value: "TestDatabase" | ||
Then Enter input plugin property: "tableName" with value: "mytable" | ||
Then Validate "CloudSQL MySQL" plugin properties | ||
Then Close the Plugin Properties page | ||
|
||
Scenario: To verify CloudMySql source plugin validation setting up connection arguments | ||
Given Open Datafusion Project to configure pipeline | ||
When Expand Plugin group in the LHS plugins list: "Sink" | ||
When Select plugin: "CloudSQL MySQL" from the plugins list as: "Sink" | ||
Then Navigate to the properties page of plugin: "CloudSQL MySQL" | ||
Then Select dropdown plugin property: "select-jdbcPluginName" with option value: "driverName" | ||
Then Select radio button plugin property: "instanceType" with value: "public" | ||
Then Replace input plugin property: "connectionName" with value: "connectionName" for Credentials and Authorization related fields | ||
Then Replace input plugin property: "user" with value: "username" for Credentials and Authorization related fields | ||
Then Replace input plugin property: "password" with value: "password" for Credentials and Authorization related fields | ||
Then Enter key value pairs for plugin property: "connectionArguments" with values from json: "connectionArgumentsList" | ||
Then Enter input plugin property: "referenceName" with value: "referencename" | ||
Then Enter input plugin property: "database" with value: "DatabaseName" | ||
Then Enter input plugin property: "tableName" with value: "mytable" | ||
Then Validate "CloudSQL MySQL" plugin properties | ||
Then Close the Plugin Properties page | ||
|
132 changes: 132 additions & 0 deletions
132
cloudsql-mysql-plugin/src/e2e-test/features/sink/CloudMySqlDesignTimeValidation.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
# Copyright © 2023 Cask Data, Inc. | ||
## | ||
## Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
## use this file except in compliance with the License. You may obtain a copy of | ||
## the License at | ||
## | ||
## http://www.apache.org/licenses/LICENSE-2.0 | ||
## | ||
## Unless required by applicable law or agreed to in writing, software | ||
## distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
## WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
## License for the specific language governing permissions and limitations under | ||
# the License.. | ||
|
||
@CloudMySql @CloudMySql_Required | ||
Feature: CloudMySql sink- Verify CloudsqlMysql sink plugin design time validation scenarios | ||
|
||
@CLOUDMYSQL_SOURCE_TEST @CLOUDMYSQL_TARGET_TEST | ||
Scenario: To verify CloudMySql sink plugin validation error message with invalid database | ||
Given Open Datafusion Project to configure pipeline | ||
When Expand Plugin group in the LHS plugins list: "Source" | ||
When Select plugin: "CloudSQL MySQL" from the plugins list as: "Source" | ||
When Expand Plugin group in the LHS plugins list: "Sink" | ||
When Select plugin: "CloudSQL MySQL" from the plugins list as: "Sink" | ||
Then Connect plugins: "CloudSQL MySQL" and "CloudSQL MySQL2" to establish connection | ||
Then Navigate to the properties page of plugin: "CloudSQL MySQL" | ||
Then Select dropdown plugin property: "select-jdbcPluginName" with option value: "driverName" | ||
Then Select radio button plugin property: "instanceType" with value: "public" | ||
Then Replace input plugin property: "connectionName" with value: "connectionName" for Credentials and Authorization related fields | ||
Then Replace input plugin property: "user" with value: "username" for Credentials and Authorization related fields | ||
Then Replace input plugin property: "password" with value: "password" for Credentials and Authorization related fields | ||
Then Enter input plugin property: "referenceName" with value: "RefName" | ||
Then Enter input plugin property: "database" with value: "DatabaseName" | ||
Then Enter textarea plugin property: "importQuery" with value: "selectQuery" | ||
Then Click on the Get Schema button | ||
Then Verify the Output Schema matches the Expected Schema: "datatypesSchema" | ||
Then Validate "CloudSQL MySQL" plugin properties | ||
Then Close the Plugin Properties page | ||
Then Navigate to the properties page of plugin: "CloudSQL MySQL2" | ||
Then Select dropdown plugin property: "select-jdbcPluginName" with option value: "driverName" | ||
Then Select radio button plugin property: "instanceType" with value: "public" | ||
Then Replace input plugin property: "connectionName" with value: "connectionName" for Credentials and Authorization related fields | ||
Then Replace input plugin property: "user" with value: "username" for Credentials and Authorization related fields | ||
Then Replace input plugin property: "password" with value: "password" for Credentials and Authorization related fields | ||
Then Enter input plugin property: "referenceName" with value: "RefName" | ||
Then Enter input plugin property: "database" with value: "invalidDatabaseName" | ||
Then Enter input plugin property: "tableName" with value: "mytable" | ||
Then Click on the Validate button | ||
Then Verify that the Plugin is displaying an error message: "errorMessageInvalidSinkDatabase" on the header | ||
|
||
@CLOUDMYSQL_SOURCE_TEST @CLOUDMYSQL_TARGET_TEST | ||
Scenario: To verify CloudMySql sink plugin validation error message with invalid tablename | ||
Given Open Datafusion Project to configure pipeline | ||
When Expand Plugin group in the LHS plugins list: "Source" | ||
When Select plugin: "CloudSQL MySQL" from the plugins list as: "Source" | ||
When Expand Plugin group in the LHS plugins list: "Sink" | ||
When Select plugin: "CloudSQL MySQL" from the plugins list as: "Sink" | ||
Then Connect plugins: "CloudSQL MySQL" and "CloudSQL MySQL2" to establish connection | ||
Then Navigate to the properties page of plugin: "CloudSQL MySQL" | ||
Then Select dropdown plugin property: "select-jdbcPluginName" with option value: "driverName" | ||
Then Select radio button plugin property: "instanceType" with value: "public" | ||
Then Replace input plugin property: "connectionName" with value: "connectionName" for Credentials and Authorization related fields | ||
Then Replace input plugin property: "user" with value: "username" for Credentials and Authorization related fields | ||
Then Replace input plugin property: "password" with value: "password" for Credentials and Authorization related fields | ||
Then Enter input plugin property: "referenceName" with value: "RefName" | ||
Then Enter input plugin property: "database" with value: "DatabaseName" | ||
Then Enter textarea plugin property: "importQuery" with value: "selectQuery" | ||
Then Click on the Get Schema button | ||
Then Verify the Output Schema matches the Expected Schema: "datatypesSchema" | ||
Then Validate "CloudSQL MySQL" plugin properties | ||
Then Close the Plugin Properties page | ||
Then Navigate to the properties page of plugin: "CloudSQL MySQL2" | ||
Then Select dropdown plugin property: "select-jdbcPluginName" with option value: "driverName" | ||
Then Select radio button plugin property: "instanceType" with value: "public" | ||
Then Replace input plugin property: "connectionName" with value: "connectionName" for Credentials and Authorization related fields | ||
Then Replace input plugin property: "user" with value: "username" for Credentials and Authorization related fields | ||
Then Replace input plugin property: "password" with value: "password" for Credentials and Authorization related fields | ||
Then Enter input plugin property: "referenceName" with value: "invalidRefName" | ||
Then Enter input plugin property: "database" with value: "DatabaseName" | ||
Then Enter input plugin property: "tableName" with value: "Invalidtable" | ||
Then Click on the Validate button | ||
Then Verify that the Plugin Property: "tableName" is displaying an in-line error message: "errorMessageInvalidTableName" | ||
|
||
Scenario: To verify CloudMySql sink plugin validation error message with invalid reference Name | ||
Given Open Datafusion Project to configure pipeline | ||
When Expand Plugin group in the LHS plugins list: "Sink" | ||
When Select plugin: "CloudSQL MySQL" from the plugins list as: "Sink" | ||
Then Navigate to the properties page of plugin: "CloudSQL MySQL" | ||
Then Select dropdown plugin property: "select-jdbcPluginName" with option value: "driverName" | ||
Then Select radio button plugin property: "instanceType" with value: "public" | ||
Then Replace input plugin property: "connectionName" with value: "connectionName" for Credentials and Authorization related fields | ||
Then Replace input plugin property: "user" with value: "username" for Credentials and Authorization related fields | ||
Then Replace input plugin property: "password" with value: "password" for Credentials and Authorization related fields | ||
Then Enter input plugin property: "referenceName" with value: "invalidRef" | ||
Then Enter key value pairs for plugin property: "connectionArguments" with values from json: "connectionArgumentsList" | ||
Then Enter input plugin property: "database" with value: "TestDatabase" | ||
Then Enter input plugin property: "tableName" with value: "mytable" | ||
Then Click on the Validate button | ||
Then Verify that the Plugin Property: "referenceName" is displaying an in-line error message: "errorMessageCloudMySqlInvalidReferenceName" | ||
|
||
Scenario: To verify CloudMySql sink plugin validation error message with blank username | ||
Given Open Datafusion Project to configure pipeline | ||
When Expand Plugin group in the LHS plugins list: "Sink" | ||
When Select plugin: "CloudSQL MySQL" from the plugins list as: "Sink" | ||
Then Navigate to the properties page of plugin: "CloudSQL MySQL" | ||
Then Select dropdown plugin property: "select-jdbcPluginName" with option value: "driverName" | ||
Then Select radio button plugin property: "instanceType" with value: "public" | ||
Then Replace input plugin property: "connectionName" with value: "connectionName" for Credentials and Authorization related fields | ||
Then Replace input plugin property: "password" with value: "password" for Credentials and Authorization related fields | ||
Then Enter key value pairs for plugin property: "connectionArguments" with values from json: "connectionArgumentsList" | ||
Then Enter input plugin property: "referenceName" with value: "RefName" | ||
Then Enter input plugin property: "database" with value: "TestDatabase" | ||
Then Enter input plugin property: "tableName" with value: "mytable" | ||
Then Click on the Validate button | ||
Then Verify that the Plugin Property: "user" is displaying an in-line error message: "errorMessageBlankUsername" | ||
|
||
Scenario: To verify CloudMySql sink plugin validation error message with ConnectionName | ||
Given Open Datafusion Project to configure pipeline | ||
When Expand Plugin group in the LHS plugins list: "Sink" | ||
When Select plugin: "CloudSQL MySQL" from the plugins list as: "Sink" | ||
Then Navigate to the properties page of plugin: "CloudSQL MySQL" | ||
Then Select dropdown plugin property: "select-jdbcPluginName" with option value: "driverName" | ||
Then Select radio button plugin property: "instanceType" with value: "public" | ||
Then Enter input plugin property: "connectionName" with value: "cdf-athena:us-central1" | ||
Then Replace input plugin property: "user" with value: "username" for Credentials and Authorization related fields | ||
Then Replace input plugin property: "password" with value: "password" for Credentials and Authorization related fields | ||
Then Enter key value pairs for plugin property: "connectionArguments" with values from json: "connectionArgumentsList" | ||
Then Enter input plugin property: "referenceName" with value: "RefName" | ||
Then Enter input plugin property: "database" with value: "TestDatabase" | ||
Then Enter input plugin property: "tableName" with value: "mytable" | ||
Then Click on the Validate button | ||
Then Verify that the Plugin Property: "connectionName" is displaying an in-line error message: "errorMessageConnectionName" |
51 changes: 51 additions & 0 deletions
51
cloudsql-mysql-plugin/src/e2e-test/features/sink/CloudMySqlDesignTimeWithMacro.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Copyright © 2023 Cask Data, Inc. | ||
## | ||
## Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
## use this file except in compliance with the License. You may obtain a copy of | ||
## the License at | ||
## | ||
## http://www.apache.org/licenses/LICENSE-2.0 | ||
## | ||
## Unless required by applicable law or agreed to in writing, software | ||
## distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
## WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
## License for the specific language governing permissions and limitations under | ||
# the License.. | ||
|
||
@CloudMySql @CloudMySql_Required | ||
Feature: CloudMySql sink- Verify CloudMySql sink plugin design time macro scenarios | ||
|
||
Scenario: To verify CloudMySql sink plugin validation with macro enabled fields for connection section | ||
Given Open Datafusion Project to configure pipeline | ||
When Expand Plugin group in the LHS plugins list: "Sink" | ||
When Select plugin: "CloudSQL MySQL" from the plugins list as: "Sink" | ||
Then Navigate to the properties page of plugin: "CloudSQL MySQL" | ||
Then Click on the Macro button of Property: "jdbcPluginName" and set the value to: "driverName" | ||
Then Replace input plugin property: "connectionName" with value: "connectionName" for Credentials and Authorization related fields | ||
Then Select radio button plugin property: "instanceType" with value: "public" | ||
Then Click on the Macro button of Property: "user" and set the value to: "username" | ||
Then Click on the Macro button of Property: "password" and set the value to: "password" | ||
Then Click on the Macro button of Property: "connectionArguments" and set the value to: "connectionArgumentsList" | ||
Then Enter input plugin property: "referenceName" with value: "sourceRef" | ||
Then Replace input plugin property: "database" with value: "TestDatabase" | ||
Then Click on the Macro button of Property: "tableName" and set the value to: "mytable" | ||
Then Click on the Validate button | ||
Then Validate "CloudSQL MySQL" plugin properties | ||
Then Close the Plugin Properties page | ||
|
||
Scenario: To verify cloudsql sink plugin validation with macro enabled fields for basic section | ||
Given Open Datafusion Project to configure pipeline | ||
When Expand Plugin group in the LHS plugins list: "Sink" | ||
When Select plugin: "CloudSQL MySQL" from the plugins list as: "Sink" | ||
Then Navigate to the properties page of plugin: "CloudSQL MySQL" | ||
Then Select dropdown plugin property: "select-jdbcPluginName" with option value: "driverName" | ||
Then Replace input plugin property: "connectionName" with value: "connectionName" for Credentials and Authorization related fields | ||
Then Select radio button plugin property: "instanceType" with value: "public" | ||
Then Replace input plugin property: "user" with value: "username" for Credentials and Authorization related fields | ||
Then Replace input plugin property: "password" with value: "password" for Credentials and Authorization related fields | ||
Then Enter input plugin property: "referenceName" with value: "sourceRef" | ||
Then Replace input plugin property: "database" with value: "TestDatabase" | ||
Then Click on the Macro button of Property: "tableName" and set the value to: "mytable" | ||
Then Click on the Validate button | ||
Then Validate "CloudSQL MySQL" plugin properties | ||
Then Close the Plugin Properties page |
Oops, something went wrong.