Skip to content

Commit

Permalink
addressed comments
Browse files Browse the repository at this point in the history
  • Loading branch information
AnkitCLI committed Apr 12, 2024
1 parent 31679f8 commit 36cafd1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/e2e-test/features/datastore/runtime.feature
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@DataStore
Feature: DataStore - Verification of Datastore to Datastore Successful Data Transfer

@DATASTORE_SOURCE_ENTITY
@DATASTORE_SOURCE_ENTITY @datastore_Required
Scenario: To verify data is getting transferred from Datastore to Datastore successfully using filter and custom index
Given Open Datafusion Project to configure pipeline
Then Select plugin: "Datastore" from the plugins list as: "Source"
Expand Down Expand Up @@ -47,7 +47,7 @@ Feature: DataStore - Verification of Datastore to Datastore Successful Data Tran
Then Close the pipeline logs
Then Validate The Data From Datastore To Datastore With Actual And Expected File for: "dsExpectedFile"

@DATASTORE_SOURCE_ENTITY
@DATASTORE_SOURCE_ENTITY @datastore_Required
Scenario: To verify data is getting transferred from Datastore to Datastore using Urlsafekey
Given Open Datafusion Project to configure pipeline
Then Select plugin: "Datastore" from the plugins list as: "Source"
Expand Down Expand Up @@ -81,7 +81,7 @@ Feature: DataStore - Verification of Datastore to Datastore Successful Data Tran
Then Close the pipeline logs
Then Validate The Data From Datastore To Datastore With Actual And Expected File for: "dsExpectedFile"

@DATASTORE_SOURCE_ENTITY
@DATASTORE_SOURCE_ENTITY @datastore_Required
Scenario: To verify data is getting transferred from Datastore to Datastore using Ancestor and Key Literal
Given Open Datafusion Project to configure pipeline
Then Select plugin: "Datastore" from the plugins list as: "Source"
Expand Down Expand Up @@ -115,7 +115,7 @@ Feature: DataStore - Verification of Datastore to Datastore Successful Data Tran
Then Close the pipeline logs
Then Validate The Data From Datastore To Datastore With Actual And Expected File for: "dsExpectedFile"

@DATASTORE_SOURCE_ENTITY
@DATASTORE_SOURCE_ENTITY @datastore_Required
Scenario: To verify data is getting transferred from Datastore to Datastore using Ancestor and Custom Key
Given Open Datafusion Project to configure pipeline
Then Select plugin: "Datastore" from the plugins list as: "Source"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public void enterAncestorForTheDatastorePlugin() {

@Then("Validate The Data From Datastore To Datastore With Actual And Expected File for: {string}")
public void validateTheDataFromDatastoreToDatastoreWithActualAndExpectedFileFor(String expectedFile)
throws IOException, InterruptedException, URISyntaxException {
throws URISyntaxException {
boolean recordsMatched = DataStoreClient.validateActualDataToExpectedData(
PluginPropertyUtils.pluginProp("kindName"),
PluginPropertyUtils.pluginProp(expectedFile));
Expand Down

0 comments on commit 36cafd1

Please sign in to comment.