Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrangler connection step changes #722

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@Wrangler_Required
Feature: Runtime Scenarios for datatype parsers

@BQ_SOURCE_TS_TEST @BQ_SOURCE_TEST @BQ_SINK_TEST
@BQ_SOURCE_TS_TEST @BQ_SOURCE_TEST @BQ_SINK_TEST @BQ_CONNECTION
Scenario: To verify User is able to run a pipeline using parse timestamp directive
Given Open Wrangler connections page
Then Click plugin property: "addConnection" button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@Wrangler
Feature: Wrangler - Run time scenarios for parse csv using UI

@BQ_SOURCE_CSV_TEST @BQ_SOURCE_TEST @BQ_SINK_TEST
@BQ_SOURCE_CSV_TEST @BQ_SOURCE_TEST @BQ_SINK_TEST @BQ_CONNECTION
Scenario: To verify User is able to run a pipeline using parse csv directive
Given Open Wrangler connections page
Then Click plugin property: "addConnection" button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@Wrangler
Feature: Parse as excel

@BQ_SINK_TEST
@BQ_SINK_TEST @BQ_CONNECTION
Scenario: To verify User is able to run a pipeline using parse Excel directive
Given Open Wrangler connections page
Then Click plugin property: "addConnection" button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@Wrangler_Required
Feature: parse as fixed length

@BQ_SOURCE_FXDLEN_TEST @BQ_SOURCE_TEST @BQ_SINK_TEST
@BQ_SOURCE_FXDLEN_TEST @BQ_SOURCE_TEST @BQ_SINK_TEST @BQ_CONNECTION
Scenario: To verify User is able to run a pipeline using parse fixedlength directive
Given Open Wrangler connections page
Then Click plugin property: "addConnection" button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@Wrangler
Feature: parse as HL7

@BQ_SOURCE_HL7_TEST @BQ_SOURCE_TEST @BQ_SINK_TEST
@BQ_SOURCE_HL7_TEST @BQ_SOURCE_TEST @BQ_SINK_TEST @BQ_CONNECTION
Scenario: To verify User is able to run a pipeline using parse hl7 directive
Given Open Wrangler connections page
Then Click plugin property: "addConnection" button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@Wrangler
Feature: parse as Json

@BQ_SOURCE_JSON_TEST @BQ_SOURCE_TEST @BQ_SINK_TEST
@BQ_SOURCE_JSON_TEST @BQ_SOURCE_TEST @BQ_SINK_TEST @BQ_CONNECTION
Scenario: To verify User is able to run a pipeline using parse Json directive
Given Open Wrangler connections page
Then Click plugin property: "addConnection" button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@Wrangler
Feature: Wrangler - Run time scenarios for Parse Log

@BQ_SOURCE_LOG_TEST @BQ_SOURCE_TEST @BQ_SINK_TEST
@BQ_SOURCE_LOG_TEST @BQ_SOURCE_TEST @BQ_SINK_TEST @BQ_CONNECTION
Scenario: To verify User is able to run a pipeline using parse log directive
Given Open Wrangler connections page
Then Click plugin property: "addConnection" button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@Wrangler
Feature: parse as XmlToJson

@BQ_SOURCE_XML_TEST @BQ_SOURCE_TEST @BQ_SINK_TEST
@BQ_SOURCE_XML_TEST @BQ_SOURCE_TEST @BQ_SINK_TEST @BQ_CONNECTION
Scenario: To verify User is able to run a pipeline using parse XmlToJson directive
Given Open Wrangler connections page
Then Click plugin property: "addConnection" button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,4 +219,9 @@ private static void createSourceBQTableWithQueries(String bqCreateTableQueryFile
PluginPropertyUtils.addPluginProp("bqSourceTable", bqSourceTable);
BeforeActions.scenario.write("BQ Source Table " + bqSourceTable + " created successfully");
}

@Before(order = 1, value = "@BQ_CONNECTION")
public static void setBQConnectionName() {
PluginPropertyUtils.addPluginProp("bqConnectionName", "BQ-" + UUID.randomUUID());
}
}
Loading