|
| 1 | +# Copyright © 2024 Cask Data, Inc. |
| 2 | +# |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| 4 | +# use this file except in compliance with the License. You may obtain a copy of |
| 5 | +# the License at |
| 6 | +# |
| 7 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 11 | +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 12 | +# License for the specific language governing permissions and limitations under |
| 13 | +# the License. |
| 14 | + |
| 15 | +@BigQuery_Sink |
| 16 | +Feature: BigQuery sink - Verification of BigQuery to BigQuery successful data transfer |
| 17 | + |
| 18 | + @BQ_SOURCE_JOINER_TEST @BQ_SOURCE_JOINER2_TEST @BQ_DELETE_JOIN @BQ_SINK_TEST @EXISTING_BQ_CONNECTION |
| 19 | + Scenario:Validate successful records transfer from BigQuery source to BigQuery sink using Join |
| 20 | + Given Open Datafusion Project to configure pipeline |
| 21 | + When Expand Plugin group in the LHS plugins list: "Source" |
| 22 | + When Select plugin: "BigQuery" from the plugins list as: "Source" |
| 23 | + When Expand Plugin group in the LHS plugins list: "Analytics" |
| 24 | + When Select plugin: "Joiner" from the plugins list as: "Analytics" |
| 25 | + Then Navigate to the properties page of plugin: "BigQuery" |
| 26 | + Then Click plugin property: "switch-useConnection" |
| 27 | + Then Click on the Browse Connections button |
| 28 | + Then Select connection: "bqConnectionName" |
| 29 | + Then Enter input plugin property: "referenceName" with value: "BQReferenceName" |
| 30 | + And Replace input plugin property: "dataset" with value: "dataset" |
| 31 | + And Replace input plugin property: "table" with value: "bqSourceTable" |
| 32 | + Then Click on the Get Schema button |
| 33 | + Then Validate "BigQuery" plugin properties |
| 34 | + And Close the Plugin Properties page |
| 35 | + When Expand Plugin group in the LHS plugins list: "Source" |
| 36 | + When Select plugin: "BigQuery" from the plugins list as: "Source" |
| 37 | + When Expand Plugin group in the LHS plugins list: "Sink" |
| 38 | + When Select plugin: "BigQuery" from the plugins list as: "Sink" |
| 39 | + Then Connect plugins: "BigQuery" and "Joiner" to establish connection |
| 40 | + Then Connect plugins: "BigQuery2" and "Joiner" to establish connection |
| 41 | + Then Connect plugins: "Joiner" and "BigQuery3" to establish connection |
| 42 | + Then Navigate to the properties page of plugin: "BigQuery2" |
| 43 | + Then Click plugin property: "useConnection" |
| 44 | + Then Click on the Browse Connections button |
| 45 | + Then Select connection: "bqConnectionName" |
| 46 | + Then Enter input plugin property: "referenceName" with value: "BQRefName" |
| 47 | + Then Enter input plugin property: "dataset" with value: "dataset" |
| 48 | + Then Enter input plugin property: "table" with value: "bqSourceTable2" |
| 49 | + Then Validate "BigQuery2" plugin properties |
| 50 | + And Close the Plugin Properties page |
| 51 | + Then Navigate to the properties page of plugin: "Joiner" |
| 52 | + Then Select radio button plugin property: "conditionType" with value: "basic" |
| 53 | + Then Click on the Get Schema button |
| 54 | + Then Validate "Joiner" plugin properties |
| 55 | + Then Close the Plugin Properties page |
| 56 | + Then Navigate to the properties page of plugin: "BigQuery3" |
| 57 | + Then Click plugin property: "useConnection" |
| 58 | + Then Click on the Browse Connections button |
| 59 | + Then Select connection: "bqConnectionName" |
| 60 | + Then Enter input plugin property: "referenceName" with value: "BQSinkReferenceName" |
| 61 | + Then Enter input plugin property: "dataset" with value: "dataset" |
| 62 | + Then Enter input plugin property: "table" with value: "bqTargetTable" |
| 63 | + Then Validate "BigQuery3" plugin properties |
| 64 | + Then Close the Plugin Properties page |
| 65 | + Then Save the pipeline |
| 66 | + Then Preview and run the pipeline |
| 67 | + Then Wait till pipeline preview is in running state |
| 68 | + Then Open and capture pipeline preview logs |
| 69 | + Then Verify the preview run status of pipeline in the logs is "succeeded" |
| 70 | + Then Close the pipeline logs |
| 71 | + Then Close the preview |
| 72 | + Then Deploy the pipeline |
| 73 | + Then Click on "Configure" button |
| 74 | + Then Click on "Transformation Pushdown" button |
| 75 | + Then Click on "Enable Transformation Pushdown" button |
| 76 | + Then Enter input plugin property: "dataset" with value: "test_sqlengine" |
| 77 | + Then Click on "Advanced" button |
| 78 | + Then Click plugin property: "useConnection" |
| 79 | + Then Click on the Browse Connections button |
| 80 | + Then Select connection: "bqConnectionName" |
| 81 | + Then Click on "Save" button |
| 82 | + Then Run the Pipeline in Runtime |
| 83 | + Then Wait till pipeline is in running state |
| 84 | + Then Open and capture logs |
| 85 | + Then Close the pipeline logs |
| 86 | + Then Verify the pipeline status is "Succeeded" |
| 87 | + Then Validate The Data From BQ To BQ With Actual And Expected File for: "bqExpectedFileJoin" |
| 88 | + |
| 89 | + @BQ_SOURCE_SQLENGINE_TEST @BQ_SINK_TEST @EXISTING_BQ_CONNECTION |
| 90 | + Scenario:Validate successful records transfer from BigQuery source to BigQuery sink using group by |
| 91 | + Given Open Datafusion Project to configure pipeline |
| 92 | + When Expand Plugin group in the LHS plugins list: "Source" |
| 93 | + When Select plugin: "BigQuery" from the plugins list as: "Source" |
| 94 | + When Expand Plugin group in the LHS plugins list: "Sink" |
| 95 | + When Select plugin: "BigQuery" from the plugins list as: "Sink" |
| 96 | + When Expand Plugin group in the LHS plugins list: "Analytics" |
| 97 | + When Select plugin: "Group By" from the plugins list as: "Analytics" |
| 98 | + Then Navigate to the properties page of plugin: "BigQuery" |
| 99 | + Then Click plugin property: "switch-useConnection" |
| 100 | + Then Click on the Browse Connections button |
| 101 | + Then Select connection: "bqConnectionName" |
| 102 | + Then Enter input plugin property: "referenceName" with value: "BQReferenceName" |
| 103 | + And Replace input plugin property: "dataset" with value: "dataset" |
| 104 | + And Replace input plugin property: "table" with value: "bqSourceTable" |
| 105 | + Then Click on the Get Schema button |
| 106 | + Then Validate "BigQuery" plugin properties |
| 107 | + And Close the Plugin Properties page |
| 108 | + Then Connect plugins: "BigQuery" and "Group By" to establish connection |
| 109 | + Then Connect plugins: "Group By" and "BigQuery2" to establish connection |
| 110 | + Then Navigate to the properties page of plugin: "Group By" |
| 111 | + Then Select dropdown plugin property: "groupByFields" with option value: "groupByValidFirstField" |
| 112 | + Then Press Escape Key |
| 113 | + Then Select dropdown plugin property: "groupByFields" with option value: "groupByValidSecondField" |
| 114 | + Then Press Escape Key |
| 115 | + Then Enter GroupBy plugin Fields to be Aggregate "groupByGcsAggregateFields" |
| 116 | + Then Click on the Get Schema button |
| 117 | + Then Click on the Validate button |
| 118 | + Then Close the Plugin Properties page |
| 119 | + Then Navigate to the properties page of plugin: "BigQuery2" |
| 120 | + Then Click plugin property: "useConnection" |
| 121 | + Then Click on the Browse Connections button |
| 122 | + Then Select connection: "bqConnectionName" |
| 123 | + Then Enter input plugin property: "referenceName" with value: "BQSinkReferenceName" |
| 124 | + Then Enter input plugin property: "dataset" with value: "dataset" |
| 125 | + Then Enter input plugin property: "table" with value: "bqTargetTable" |
| 126 | + Then Validate "BigQuery" plugin properties |
| 127 | + And Close the Plugin Properties page |
| 128 | + Then Save the pipeline |
| 129 | + Then Preview and run the pipeline |
| 130 | + Then Wait till pipeline preview is in running state |
| 131 | + Then Open and capture pipeline preview logs |
| 132 | + Then Verify the preview run status of pipeline in the logs is "succeeded" |
| 133 | + Then Close the pipeline logs |
| 134 | + Then Close the preview |
| 135 | + Then Deploy the pipeline |
| 136 | + Then Click on "Configure" button |
| 137 | + Then Click on "Transformation Pushdown" button |
| 138 | + Then Click on "Enable Transformation Pushdown" button |
| 139 | + Then Enter input plugin property: "dataset" with value: "test_sqlengine" |
| 140 | + Then Click on "Advanced" button |
| 141 | + Then Click plugin property: "useConnection" |
| 142 | + Then Click on the Browse Connections button |
| 143 | + Then Select connection: "bqConnectionName" |
| 144 | + Then Click on "Save" button |
| 145 | + Then Run the Pipeline in Runtime |
| 146 | + Then Wait till pipeline is in running state |
| 147 | + Then Open and capture logs |
| 148 | + Then Close the pipeline logs |
| 149 | + Then Verify the pipeline status is "Succeeded" |
| 150 | + Then Validate The Data From BQ To BQ With Actual And Expected File for: "groupByTestOutputFile" |
| 151 | + |
| 152 | + @BQ_SOURCE_SQLENGINE_TEST @BQ_SINK_TEST @EXISTING_BQ_CONNECTION |
| 153 | + Scenario:Validate successful records transfer from BigQuery source to BigQuery sink using deduplicate |
| 154 | + Given Open Datafusion Project to configure pipeline |
| 155 | + When Expand Plugin group in the LHS plugins list: "Source" |
| 156 | + When Select plugin: "BigQuery" from the plugins list as: "Source" |
| 157 | + When Expand Plugin group in the LHS plugins list: "Sink" |
| 158 | + When Select plugin: "BigQuery" from the plugins list as: "Sink" |
| 159 | + When Expand Plugin group in the LHS plugins list: "Analytics" |
| 160 | + When Select plugin: "Deduplicate" from the plugins list as: "Analytics" |
| 161 | + Then Navigate to the properties page of plugin: "BigQuery" |
| 162 | + Then Click plugin property: "switch-useConnection" |
| 163 | + Then Click on the Browse Connections button |
| 164 | + Then Select connection: "bqConnectionName" |
| 165 | + Then Enter input plugin property: "referenceName" with value: "BQReferenceName" |
| 166 | + And Replace input plugin property: "dataset" with value: "dataset" |
| 167 | + And Replace input plugin property: "table" with value: "bqSourceTable" |
| 168 | + Then Click on the Get Schema button |
| 169 | + Then Validate "BigQuery" plugin properties |
| 170 | + And Close the Plugin Properties page |
| 171 | + Then Connect plugins: "BigQuery" and "Deduplicate" to establish connection |
| 172 | + Then Connect plugins: "Deduplicate" and "BigQuery2" to establish connection |
| 173 | + Then Navigate to the properties page of plugin: "Deduplicate" |
| 174 | + Then Select dropdown plugin property: "uniqueFields" with option value: "DeduplicateValidFirstField" |
| 175 | + Then Press Escape Key |
| 176 | + Then Click on the Validate button |
| 177 | + Then Close the Plugin Properties page |
| 178 | + Then Navigate to the properties page of plugin: "BigQuery2" |
| 179 | + Then Click plugin property: "useConnection" |
| 180 | + Then Click on the Browse Connections button |
| 181 | + Then Select connection: "bqConnectionName" |
| 182 | + Then Enter input plugin property: "referenceName" with value: "BQSinkReferenceName" |
| 183 | + Then Enter input plugin property: "dataset" with value: "dataset" |
| 184 | + Then Enter input plugin property: "table" with value: "bqTargetTable" |
| 185 | + Then Validate "BigQuery" plugin properties |
| 186 | + And Close the Plugin Properties page |
| 187 | + Then Save the pipeline |
| 188 | + Then Preview and run the pipeline |
| 189 | + Then Wait till pipeline preview is in running state |
| 190 | + Then Open and capture pipeline preview logs |
| 191 | + Then Verify the preview run status of pipeline in the logs is "succeeded" |
| 192 | + Then Close the pipeline logs |
| 193 | + Then Close the preview |
| 194 | + Then Deploy the pipeline |
| 195 | + Then Click on "Configure" button |
| 196 | + Then Click on "Transformation Pushdown" button |
| 197 | + Then Click on "Enable Transformation Pushdown" button |
| 198 | + Then Enter input plugin property: "dataset" with value: "test_sqlengine" |
| 199 | + Then Click on "Advanced" button |
| 200 | + Then Click plugin property: "useConnection" |
| 201 | + Then Click on the Browse Connections button |
| 202 | + Then Select connection: "bqConnectionName" |
| 203 | + Then Click on "Save" button |
| 204 | + Then Run the Pipeline in Runtime |
| 205 | + Then Wait till pipeline is in running state |
| 206 | + Then Open and capture logs |
| 207 | + Then Close the pipeline logs |
| 208 | + Then Verify the pipeline status is "Succeeded" |
| 209 | + Then Validate The Data From BQ To BQ With Actual And Expected File for: "deduplicateTestOutputFile" |
0 commit comments