org.apache.flink.table.factories.utils.TestSerializationSchema Java Examples
The following examples show how to use
org.apache.flink.table.factories.utils.TestSerializationSchema.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: KafkaTableSourceSinkFactoryTestBase.java From flink with Apache License 2.0 | 5 votes |
/** * This test can be unified with the corresponding source test once we have fixed FLINK-9870. */ @Test public void testTableSink() { // prepare parameters for Kafka table sink final TableSchema schema = TableSchema.builder() .field(FRUIT_NAME, DataTypes.STRING()) .field(COUNT, DataTypes.DECIMAL(10, 4)) .field(EVENT_TIME, DataTypes.TIMESTAMP(3)) .build(); final KafkaTableSinkBase expected = getExpectedKafkaTableSink( schema, TOPIC, KAFKA_PROPERTIES, Optional.of(new FlinkFixedPartitioner<>()), new TestSerializationSchema(schema.toRowType())); // construct table sink using descriptors and table sink factory final Map<String, String> propertiesMap = createKafkaSinkProperties(); final TableSink<?> actualSink = TableFactoryService.find(StreamTableSinkFactory.class, propertiesMap) .createStreamTableSink(propertiesMap); assertEquals(expected, actualSink); // test Kafka producer final KafkaTableSinkBase actualKafkaSink = (KafkaTableSinkBase) actualSink; final DataStreamMock streamMock = new DataStreamMock(new StreamExecutionEnvironmentMock(), schema.toRowType()); actualKafkaSink.consumeDataStream(streamMock); assertTrue(getExpectedFlinkKafkaProducer().isAssignableFrom(streamMock.sinkFunction.getClass())); }
Example #2
Source File: KafkaTableSourceSinkFactoryTestBase.java From Flink-CEPplus with Apache License 2.0 | 4 votes |
/** * This test can be unified with the corresponding source test once we have fixed FLINK-9870. */ @Test public void testTableSink() { // prepare parameters for Kafka table sink final TableSchema schema = TableSchema.builder() .field(FRUIT_NAME, Types.STRING()) .field(COUNT, Types.DECIMAL()) .field(EVENT_TIME, Types.SQL_TIMESTAMP()) .build(); final KafkaTableSinkBase expected = getExpectedKafkaTableSink( schema, TOPIC, KAFKA_PROPERTIES, Optional.of(new FlinkFixedPartitioner<>()), new TestSerializationSchema(schema.toRowType())); // construct table sink using descriptors and table sink factory final TestTableDescriptor testDesc = new TestTableDescriptor( new Kafka() .version(getKafkaVersion()) .topic(TOPIC) .properties(KAFKA_PROPERTIES) .sinkPartitionerFixed() .startFromSpecificOffsets(OFFSETS)) // test if they accepted although not needed .withFormat(new TestTableFormat()) .withSchema( new Schema() .field(FRUIT_NAME, Types.STRING()) .field(COUNT, Types.DECIMAL()) .field(EVENT_TIME, Types.SQL_TIMESTAMP())) .inAppendMode(); final Map<String, String> propertiesMap = testDesc.toProperties(); final TableSink<?> actualSink = TableFactoryService.find(StreamTableSinkFactory.class, propertiesMap) .createStreamTableSink(propertiesMap); assertEquals(expected, actualSink); // test Kafka producer final KafkaTableSinkBase actualKafkaSink = (KafkaTableSinkBase) actualSink; final DataStreamMock streamMock = new DataStreamMock(new StreamExecutionEnvironmentMock(), schema.toRowType()); actualKafkaSink.emitDataStream(streamMock); assertTrue(getExpectedFlinkKafkaProducer().isAssignableFrom(streamMock.sinkFunction.getClass())); }
Example #3
Source File: KafkaTableSourceSinkFactoryTestBase.java From flink with Apache License 2.0 | 4 votes |
/** * This test can be unified with the corresponding source test once we have fixed FLINK-9870. */ @Test public void testTableSink() { // prepare parameters for Kafka table sink final TableSchema schema = TableSchema.builder() .field(FRUIT_NAME, Types.STRING()) .field(COUNT, Types.DECIMAL()) .field(EVENT_TIME, Types.SQL_TIMESTAMP()) .build(); final KafkaTableSinkBase expected = getExpectedKafkaTableSink( schema, TOPIC, KAFKA_PROPERTIES, Optional.of(new FlinkFixedPartitioner<>()), new TestSerializationSchema(schema.toRowType())); // construct table sink using descriptors and table sink factory final TestTableDescriptor testDesc = new TestTableDescriptor( new Kafka() .version(getKafkaVersion()) .topic(TOPIC) .properties(KAFKA_PROPERTIES) .sinkPartitionerFixed() .startFromSpecificOffsets(OFFSETS)) // test if they accepted although not needed .withFormat(new TestTableFormat()) .withSchema( new Schema() .field(FRUIT_NAME, Types.STRING()) .field(COUNT, Types.DECIMAL()) .field(EVENT_TIME, Types.SQL_TIMESTAMP())) .inAppendMode(); final Map<String, String> propertiesMap = testDesc.toProperties(); final TableSink<?> actualSink = TableFactoryService.find(StreamTableSinkFactory.class, propertiesMap) .createStreamTableSink(propertiesMap); assertEquals(expected, actualSink); // test Kafka producer final KafkaTableSinkBase actualKafkaSink = (KafkaTableSinkBase) actualSink; final DataStreamMock streamMock = new DataStreamMock(new StreamExecutionEnvironmentMock(), schema.toRowType()); actualKafkaSink.emitDataStream(streamMock); assertTrue(getExpectedFlinkKafkaProducer().isAssignableFrom(streamMock.sinkFunction.getClass())); }
Example #4
Source File: KafkaTableSourceSinkFactoryTestBase.java From flink with Apache License 2.0 | 4 votes |
@Test public void testTableSinkWithLegacyProperties() { // prepare parameters for Kafka table sink final TableSchema schema = TableSchema.builder() .field(FRUIT_NAME, DataTypes.STRING()) .field(COUNT, DataTypes.DECIMAL(10, 4)) .field(EVENT_TIME, DataTypes.TIMESTAMP(3)) .build(); final KafkaTableSinkBase expected = getExpectedKafkaTableSink( schema, TOPIC, KAFKA_PROPERTIES, Optional.of(new FlinkFixedPartitioner<>()), new TestSerializationSchema(schema.toRowType())); // construct table sink using descriptors and table sink factory final Map<String, String> legacyPropertiesMap = new HashMap<>(); legacyPropertiesMap.putAll(createKafkaSinkProperties()); // use legacy properties legacyPropertiesMap.remove("connector.specific-offsets"); legacyPropertiesMap.remove("connector.properties.bootstrap.servers"); legacyPropertiesMap.remove("connector.properties.group.id"); // keep compatible with a specified update-mode legacyPropertiesMap.put("update-mode", "append"); // legacy properties for specific-offsets and properties legacyPropertiesMap.put("connector.specific-offsets.0.partition", "0"); legacyPropertiesMap.put("connector.specific-offsets.0.offset", "100"); legacyPropertiesMap.put("connector.specific-offsets.1.partition", "1"); legacyPropertiesMap.put("connector.specific-offsets.1.offset", "123"); legacyPropertiesMap.put("connector.properties.0.key", "bootstrap.servers"); legacyPropertiesMap.put("connector.properties.0.value", "dummy"); legacyPropertiesMap.put("connector.properties.1.key", "group.id"); legacyPropertiesMap.put("connector.properties.1.value", "dummy"); final TableSink<?> actualSink = TableFactoryService.find(StreamTableSinkFactory.class, legacyPropertiesMap) .createStreamTableSink(legacyPropertiesMap); assertEquals(expected, actualSink); // test Kafka producer final KafkaTableSinkBase actualKafkaSink = (KafkaTableSinkBase) actualSink; final DataStreamMock streamMock = new DataStreamMock(new StreamExecutionEnvironmentMock(), schema.toRowType()); actualKafkaSink.consumeDataStream(streamMock); assertTrue(getExpectedFlinkKafkaProducer().isAssignableFrom(streamMock.sinkFunction.getClass())); }