Skip to content

Commit

Permalink
Merge pull request #29 from Aiven-Open/jeqo/tests-builder
Browse files Browse the repository at this point in the history
tests: add builder tests
  • Loading branch information
C0urante authored Apr 11, 2024
2 parents 540aa7a + 4080bc4 commit ec0a87c
Show file tree
Hide file tree
Showing 2 changed files with 104 additions and 0 deletions.
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");
}

}
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");
}

}

0 comments on commit ec0a87c

Please sign in to comment.