reswqa commented on a change in pull request #8939:
URL: https://github.com/apache/pulsar/pull/8939#discussion_r541881136
##########
File path:
pulsar-broker/src/test/java/org/apache/pulsar/client/impl/BrokerClientIntegrationTest.java
##########
@@ -858,8 +861,40 @@ public void
asyncClose(org.apache.bookkeeper.client.AsyncCallback.CloseCallback
consumer.close();
}
+
+ @Test
+ public void testAvroSchemaProducerConsumerWithSpecifiedReaderAndWriter()
throws PulsarClientException {
+ final String topicName = "persistent://my-property/my-ns/my-topic1";
+ TestMessageObject object = new TestMessageObject();
+ SchemaReader<TestMessageObject> reader =
Mockito.mock(SchemaReader.class);
+ SchemaWriter<TestMessageObject> writer =
Mockito.mock(SchemaWriter.class);
+ Mockito.when(reader.read(Mockito.any(byte[].class),
Mockito.any(byte[].class))).thenReturn(object);
+
Mockito.when(writer.write(Mockito.any(TestMessageObject.class))).thenReturn("fake
data".getBytes(StandardCharsets.UTF_8));
+ SchemaDefinition<TestMessageObject> schemaDefinition = new
SchemaDefinitionBuilderImpl<TestMessageObject>()
+ .withPojo(TestMessageObject.class)
+ .withSchemaReader(reader)
+ .withSchemaWriter(writer)
+ .build();
+ Schema<TestMessageObject> schema = Schema.AVRO(schemaDefinition);
+ PulsarClient client = PulsarClient.builder()
Review comment:
Thank you, it has been fixed.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]