-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from Aiven-Open/jeqo/tests-builder
tests: add builder tests
- Loading branch information
Showing
2 changed files
with
104 additions
and
0 deletions.
There are no files selected for viewing
52 changes: 52 additions & 0 deletions
52
...tor/src/test/java/com/wepay/kafka/connect/bigquery/write/storage/BigQueryBuilderTest.java
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,52 @@ | ||
/* | ||
* Copyright 2024 Copyright 2022 Aiven Oy and | ||
* bigquery-connector-for-apache-kafka project contributors | ||
* | ||
* This software contains code derived from the Confluent BigQuery | ||
* Kafka Connector, Copyright Confluent, Inc, which in turn | ||
* contains code derived from the WePay BigQuery Kafka Connector, | ||
* Copyright WePay, 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. | ||
*/ | ||
|
||
package com.wepay.kafka.connect.bigquery.write.storage; | ||
|
||
import com.google.cloud.bigquery.BigQuery; | ||
import com.wepay.kafka.connect.bigquery.GcpClientBuilder; | ||
import com.wepay.kafka.connect.bigquery.config.BigQuerySinkConfig; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
|
||
public class BigQueryBuilderTest { | ||
|
||
@Test | ||
public void testBigQueryBuild() { | ||
Map<String, String> properties = new HashMap<>(); | ||
properties.put(BigQuerySinkConfig.PROJECT_CONFIG, "abcd"); | ||
properties.put(BigQuerySinkConfig.DEFAULT_DATASET_CONFIG, "dummy_dataset"); | ||
BigQuerySinkConfig config = new BigQuerySinkConfig(properties); | ||
|
||
BigQuery actualSettings = new GcpClientBuilder.BigQueryBuilder() | ||
.withConfig(config) | ||
.build(); | ||
|
||
assertEquals(actualSettings.getOptions().getProjectId(), "abcd"); | ||
} | ||
|
||
} |
52 changes: 52 additions & 0 deletions
52
...onnector/src/test/java/com/wepay/kafka/connect/bigquery/write/storage/GcsBuilderTest.java
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,52 @@ | ||
/* | ||
* Copyright 2024 Copyright 2022 Aiven Oy and | ||
* bigquery-connector-for-apache-kafka project contributors | ||
* | ||
* This software contains code derived from the Confluent BigQuery | ||
* Kafka Connector, Copyright Confluent, Inc, which in turn | ||
* contains code derived from the WePay BigQuery Kafka Connector, | ||
* Copyright WePay, 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. | ||
*/ | ||
|
||
package com.wepay.kafka.connect.bigquery.write.storage; | ||
|
||
import com.google.cloud.storage.Storage; | ||
import com.wepay.kafka.connect.bigquery.GcpClientBuilder; | ||
import com.wepay.kafka.connect.bigquery.config.BigQuerySinkConfig; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
|
||
public class GcsBuilderTest { | ||
|
||
@Test | ||
public void testStorageBuild() { | ||
Map<String, String> properties = new HashMap<>(); | ||
properties.put(BigQuerySinkConfig.PROJECT_CONFIG, "abcd"); | ||
properties.put(BigQuerySinkConfig.DEFAULT_DATASET_CONFIG, "dummy_dataset"); | ||
BigQuerySinkConfig config = new BigQuerySinkConfig(properties); | ||
|
||
Storage actualSettings = new GcpClientBuilder.GcsBuilder() | ||
.withConfig(config) | ||
.build(); | ||
|
||
assertEquals(actualSettings.getOptions().getProjectId(), "abcd"); | ||
} | ||
|
||
} |