1996fanrui commented on code in PR #21368: URL: https://github.com/apache/flink/pull/21368#discussion_r1038186940
########## flink-runtime/src/test/java/org/apache/flink/runtime/checkpoint/channel/ChannelStateWriterImplTest.java: ########## @@ -135,100 +134,98 @@ public void testAbortOldAndStartNewCheckpoint() throws Exception { worker.processAllRequests(); ChannelStateWriteResult result42 = writer.getAndRemoveWriteResult(checkpoint42); - assertTrue(result42.isDone()); - try { - result42.getInputChannelStateHandles().get(); - fail("The result should have failed."); - } catch (Throwable throwable) { - assertTrue(findThrowable(throwable, TestException.class).isPresent()); - } + assertThat(result42.isDone()).isTrue(); + assertThatThrownBy(() -> result42.getInputChannelStateHandles().get()) + .as("The result should have failed.") + .hasCauseInstanceOf(TestException.class); ChannelStateWriteResult result43 = writer.getAndRemoveWriteResult(checkpoint43); - assertFalse(result43.isDone()); + assertThat(result43.isDone()).isFalse(); }); } - @Test(expected = TestException.class) - public void testBuffersRecycledOnError() throws Exception { - unwrappingError( - TestException.class, - () -> { - NetworkBuffer buffer = getBuffer(); - try (ChannelStateWriterImpl writer = - new ChannelStateWriterImpl( - TASK_NAME, new ConcurrentHashMap<>(), failingWorker(), 5)) { - writer.open(); - callAddInputData(writer, buffer); - } finally { - assertTrue(buffer.isRecycled()); - } - }); + @Test + void testBuffersRecycledOnError() throws IOException { + NetworkBuffer buffer = getBuffer(); + try (ChannelStateWriterImpl writer = + new ChannelStateWriterImpl( + TASK_NAME, new ConcurrentHashMap<>(), failingWorker(), 5)) { + writer.open(); + assertThatThrownBy(() -> callAddInputData(writer, buffer)) + .isInstanceOf(RuntimeException.class) + .hasCauseInstanceOf(TestException.class); + assertThat(buffer.isRecycled()).isTrue(); + } } @Test - public void testBuffersRecycledOnClose() throws Exception { + void testBuffersRecycledOnClose() throws Exception { NetworkBuffer buffer = getBuffer(); runWithSyncWorker( writer -> { callStart(writer); callAddInputData(writer, buffer); - assertFalse(buffer.isRecycled()); + assertThat(buffer.isRecycled()).isFalse(); }); - assertTrue(buffer.isRecycled()); - } - - @Test(expected = IllegalArgumentException.class) - public void testNoAddDataAfterFinished() throws Exception { - unwrappingError( - IllegalArgumentException.class, - () -> - runWithSyncWorker( - writer -> { - callStart(writer); - callFinish(writer); - callAddInputData(writer); - })); - } - - @Test(expected = IllegalArgumentException.class) - public void testAddDataNotStarted() throws Exception { - unwrappingError( - IllegalArgumentException.class, - () -> runWithSyncWorker((Consumer<ChannelStateWriter>) this::callAddInputData)); - } - - @Test(expected = IllegalArgumentException.class) - public void testFinishNotStarted() throws Exception { - unwrappingError(IllegalArgumentException.class, () -> runWithSyncWorker(this::callFinish)); - } - - @Test(expected = IllegalArgumentException.class) - public void testRethrowOnClose() throws Exception { - unwrappingError( - IllegalArgumentException.class, - () -> - runWithSyncWorker( - writer -> { - try { - callFinish(writer); - } catch (IllegalArgumentException e) { - // ignore here - should rethrow in close - } - })); - } - - @Test(expected = TestException.class) - public void testRethrowOnNextCall() throws Exception { + assertThat(buffer.isRecycled()).isTrue(); + } + + @Test + void testNoAddDataAfterFinished() { Review Comment: After updated, I still call `processAllRequests` twice to ensure the catch is specific. It's similar to https://github.com/apache/flink/pull/21368#discussion_r1037196683 , the first one is normal, the second one should throw exception. -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org