|
| 1 | +/* |
| 2 | + * |
| 3 | + * * Copyright memiiso Authors. |
| 4 | + * * |
| 5 | + * * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 |
| 6 | + * |
| 7 | + */ |
| 8 | + |
| 9 | +package io.debezium.server.iceberg; |
| 10 | + |
| 11 | +import com.google.common.collect.Lists; |
| 12 | +import io.debezium.relational.RelationalDatabaseConnectorConfig; |
| 13 | +import io.debezium.server.iceberg.testresources.CatalogJdbc; |
| 14 | +import io.debezium.server.iceberg.testresources.S3Minio; |
| 15 | +import io.debezium.server.iceberg.testresources.SourcePostgresqlDB; |
| 16 | +import io.quarkus.test.common.QuarkusTestResource; |
| 17 | +import io.quarkus.test.junit.QuarkusTest; |
| 18 | +import io.quarkus.test.junit.QuarkusTestProfile; |
| 19 | +import io.quarkus.test.junit.TestProfile; |
| 20 | +import org.apache.iceberg.catalog.Namespace; |
| 21 | +import org.apache.iceberg.catalog.TableIdentifier; |
| 22 | +import org.apache.iceberg.data.Record; |
| 23 | +import org.apache.iceberg.io.CloseableIterable; |
| 24 | +import org.apache.spark.sql.Dataset; |
| 25 | +import org.apache.spark.sql.Row; |
| 26 | +import org.apache.spark.sql.types.DataTypes; |
| 27 | +import org.awaitility.Awaitility; |
| 28 | +import org.junit.jupiter.api.Assertions; |
| 29 | +import org.junit.jupiter.api.Test; |
| 30 | + |
| 31 | +import java.time.Duration; |
| 32 | +import java.util.HashMap; |
| 33 | +import java.util.Map; |
| 34 | +import java.util.Objects; |
| 35 | + |
| 36 | +import static io.debezium.server.iceberg.TestConfigSource.ICEBERG_CATALOG_TABLE_NAMESPACE; |
| 37 | +import static org.junit.jupiter.api.Assertions.assertEquals; |
| 38 | +import static org.mockito.Mockito.when; |
| 39 | + |
| 40 | +/** |
| 41 | + * Integration test that verifies basic reading from PostgreSQL database and writing to iceberg destination. |
| 42 | + * |
| 43 | + * @author Ismail Simsek |
| 44 | + */ |
| 45 | +@QuarkusTest |
| 46 | +@QuarkusTestResource(value = S3Minio.class, restrictToAnnotatedClass = true) |
| 47 | +@QuarkusTestResource(value = SourcePostgresqlDB.class, restrictToAnnotatedClass = true) |
| 48 | +@QuarkusTestResource(value = CatalogJdbc.class, restrictToAnnotatedClass = true) |
| 49 | +@TestProfile(IcebergChangeConsumerDecimalTest.TestProfile.class) |
| 50 | +public class IcebergChangeConsumerDecimalTest extends BaseSparkTest { |
| 51 | + |
| 52 | + @Test |
| 53 | + public void testConsumingNumerics() throws Exception { |
| 54 | + assertEquals(sinkType, "iceberg"); |
| 55 | + String sql = "\n" + |
| 56 | + " DROP TABLE IF EXISTS inventory.data_types;\n" + |
| 57 | + " CREATE TABLE IF NOT EXISTS inventory.data_types (\n" + |
| 58 | + " c_id INTEGER ,\n" + |
| 59 | + " c_decimal DECIMAL(18,6)\n" + |
| 60 | + " );"; |
| 61 | + SourcePostgresqlDB.runSQL(sql); |
| 62 | + sql = "INSERT INTO inventory.data_types (c_id, c_decimal) " + |
| 63 | + "VALUES (1, '1234566.34456'::decimal)"; |
| 64 | + SourcePostgresqlDB.runSQL(sql); |
| 65 | + Awaitility.await().atMost(Duration.ofSeconds(320)).until(() -> { |
| 66 | + try { |
| 67 | + Dataset<Row> df = getTableData("testc.inventory.data_types"); |
| 68 | + df.show(false); |
| 69 | + |
| 70 | + Assertions.assertEquals(1, df.count()); |
| 71 | + Assertions.assertEquals(1, df.filter("c_id = 1 AND c_decimal = CAST('1234566.344560' AS DECIMAL(18,6))").count(), "c_decimal not matching"); |
| 72 | + return true; |
| 73 | + } catch (Exception e) { |
| 74 | + e.printStackTrace(); |
| 75 | + return false; |
| 76 | + } |
| 77 | + }); |
| 78 | + } |
| 79 | + |
| 80 | + public static class TestProfile implements QuarkusTestProfile { |
| 81 | + @Override |
| 82 | + public Map<String, String> getConfigOverrides() { |
| 83 | + Map<String, String> config = new HashMap<>(); |
| 84 | + config.put("debezium.sink.iceberg.destination-regexp", "\\d"); |
| 85 | + config.put("debezium.source.decimal.handling.mode", "precise"); |
| 86 | + return config; |
| 87 | + } |
| 88 | + } |
| 89 | + |
| 90 | +} |
0 commit comments