diff --git a/core-plugins/src/e2e-test/features/joiner/Joiner.feature b/core-plugins/src/e2e-test/features/joiner/Joiner.feature index 54974bdaa..d602eae8d 100644 --- a/core-plugins/src/e2e-test/features/joiner/Joiner.feature +++ b/core-plugins/src/e2e-test/features/joiner/Joiner.feature @@ -19,17 +19,17 @@ Feature: Joiner analytics - Verify File source data transfer using Joiner analyt @GCS_SOURCE_TEST @GCS_SOURCE_JOINER_TEST @GCS_SINK_TEST Scenario: To verify data is getting transferred from File source to File sink plugin successfully with Joiner Given Open Datafusion Project to configure pipeline - When Select plugin: "File" from the plugins list as: "Source" - When Select plugin: "File" from the plugins list as: "Source" - Then Move plugins: "File2" by xOffset 0 and yOffset 200 + When Select plugin: "GCS" from the plugins list as: "Source" + When Select plugin: "GCS" from the plugins list as: "Source" + Then Move plugins: "GCS2" by xOffset 0 and yOffset 200 When Expand Plugin group in the LHS plugins list: "Analytics" When Select plugin: "Joiner" from the plugins list as: "Analytics" - Then Connect plugins: "File" and "Joiner" to establish connection - Then Connect plugins: "File2" and "Joiner" to establish connection + Then Connect plugins: "GCS" and "Joiner" to establish connection + Then Connect plugins: "GCS2" and "Joiner" to establish connection When Expand Plugin group in the LHS plugins list: "Sink" - When Select plugin: "File" from the plugins list as: "Sink" - Then Connect plugins: "Joiner" and "File3" to establish connection - Then Navigate to the properties page of plugin: "File" + When Select plugin: "GCS" from the plugins list as: "Sink" + Then Connect plugins: "Joiner" and "GCS3" to establish connection + Then Navigate to the properties page of plugin: "GCS" Then Enter input plugin property: "referenceName" with value: "firstName" Then Enter input plugin property: "path" with value: "gcsSourceBucket1" Then Select dropdown plugin property: "format" with option value: "csv" @@ -37,9 +37,9 @@ Feature: Joiner analytics - Verify File source data transfer using Joiner analyt Then Click plugin property: "enableQuotedValues" Then Click on the Get Schema button Then Verify the Output Schema matches the Expected Schema: "firstNameOutputSchema" - Then Validate "File" plugin properties + Then Validate "GCS" plugin properties Then Close the Plugin Properties page - Then Navigate to the properties page of plugin: "File2" + Then Navigate to the properties page of plugin: "GCS2" Then Enter input plugin property: "referenceName" with value: "lastName" Then Enter input plugin property: "path" with value: "gcsSourceBucket2" Then Select dropdown plugin property: "format" with option value: "csv" @@ -47,18 +47,18 @@ Feature: Joiner analytics - Verify File source data transfer using Joiner analyt Then Click plugin property: "enableQuotedValues" Then Click on the Get Schema button Then Verify the Output Schema matches the Expected Schema: "lastNameOutputSchema" - Then Validate "File" plugin properties + Then Validate "GCS" plugin properties Then Close the Plugin Properties page Then Navigate to the properties page of plugin: "Joiner" Then Expand fields - Then Uncheck plugin "File2" field "id" alias checkbox + Then Uncheck plugin "GCS2" field "id" alias checkbox Then Select joiner type "Inner" Then Enter numPartitions "expectedJoinerOutputPartitions" - Then Select dropdown plugin property: "inputsToLoadMemory" with option value: "File" + Then Select dropdown plugin property: "inputsToLoadMemory" with option value: "GCS" Then Scroll to validation button and click Then Validate "Joiner" plugin properties Then Close the Plugin Properties page - Then Navigate to the properties page of plugin: "File3" + Then Navigate to the properties page of plugin: "GCS3" Then Enter input plugin property: "referenceName" with value: "result" Then Enter input plugin property: "path" with value: "gcsTargetBucket" Then Select dropdown plugin property: "format" with option value: "csv" diff --git a/core-plugins/src/e2e-test/resources/testdata/joiner_output.csv b/core-plugins/src/e2e-test/resources/testdata/joiner_output.csv index 48db08a74..6e2bb5716 100644 --- a/core-plugins/src/e2e-test/resources/testdata/joiner_output.csv +++ b/core-plugins/src/e2e-test/resources/testdata/joiner_output.csv @@ -7,4 +7,3 @@ 7,Maye,Ferraretto 8,Bernie,Catterick 9,Heidie,Weafer -10,Lurette,Ivasechko diff --git a/core-plugins/src/e2e-test/resources/testdata/last_name.csv b/core-plugins/src/e2e-test/resources/testdata/last_name.csv index 554224f3e..913b6d8b8 100644 --- a/core-plugins/src/e2e-test/resources/testdata/last_name.csv +++ b/core-plugins/src/e2e-test/resources/testdata/last_name.csv @@ -8,4 +8,3 @@ id,last_name 7,Ferraretto 8,Catterick 9,Weafer -10,Ivasechko diff --git a/pom.xml b/pom.xml index 4cd963a75..2c00db528 100644 --- a/pom.xml +++ b/pom.xml @@ -1259,6 +1259,11 @@ 1.2.8 runtime + + org.slf4j + slf4j-api + 1.7.15 +