BewareMyPower commented on a change in pull request #13454:
URL: https://github.com/apache/pulsar/pull/13454#discussion_r774448442
##########
File path:
pulsar-broker/src/test/java/org/apache/pulsar/client/impl/MessageChunkingTest.java
##########
@@ -369,6 +374,43 @@ public void testExpireIncompleteChunkMessage() throws
Exception{
producer = null; // clean reference of mocked producer
}
+ @Test
+ public void testChunksEnqueueFailed() throws Exception {
+ final String topicName =
"persistent://my-property/my-ns/test-chunks-enqueue-failed";
+ log.info("-- Starting {} test --", methodName);
+ this.conf.setMaxMessageSize(5);
+
+ final MemoryLimitController controller = ((PulsarClientImpl)
pulsarClient).getMemoryLimitController();
+ assertEquals(controller.currentUsage(), 0);
+
+ final int maxPendingMessages = 10;
+
+ @Cleanup
+ Producer<byte[]> producer = pulsarClient.newProducer()
+ .topic(topicName)
+ .maxPendingMessages(maxPendingMessages)
+ .enableChunking(true)
+ .enableBatching(false)
+ .create();
+ assertTrue(producer instanceof ProducerImpl);
+ Semaphore semaphore = ((ProducerImpl<byte[]>)
producer).getSemaphore().orElse(null);
+ assertNotNull(semaphore);
+ assertEquals(semaphore.availablePermits(), maxPendingMessages);
+ producer.send(createMessagePayload(1).getBytes());
+ try {
+
producer.send(createMessagePayload(100).getBytes(StandardCharsets.UTF_8));
Review comment:
Addressed by adding the `fail()` call.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]