gaoyunhaii commented on a change in pull request #7368: [FLINK-10742][network] Let Netty use Flink's buffers directly in credit-based mode URL: https://github.com/apache/flink/pull/7368#discussion_r388741911
########## File path: flink-runtime/src/test/java/org/apache/flink/runtime/io/network/netty/CreditBasedPartitionRequestClientHandlerTest.java ########## @@ -419,6 +459,99 @@ public void testNotifyCreditAvailableAfterReleased() throws Exception { } } + @Test + public void testChannelReleasedBeforeDecodingBufferResponse() throws Exception { + testChannelReleasedOrRemovedBeforeDecodingBufferResponse(false); + } + + @Test + public void testChannelRemovedBeforeDecodingBufferResponse() throws Exception { + testChannelReleasedOrRemovedBeforeDecodingBufferResponse(true); + } + + @Test + public void testChannelReleasedBeforeReceivingBufferResponse() throws Exception { + testChannelReleasedOrRemovedBeforeReceivingBufferResponse(false); + } + + @Test + public void testChannelRemovedBeforeReceivingBufferResponse() throws Exception { + testChannelReleasedOrRemovedBeforeReceivingBufferResponse(true); + } + + private void testChannelReleasedOrRemovedBeforeDecodingBufferResponse(boolean isRemoved) throws Exception { Review comment: Renamed the methods. ---------------------------------------------------------------- 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: us...@infra.apache.org With regards, Apache Git Services