FrankYang0529 commented on code in PR #16449: URL: https://github.com/apache/kafka/pull/16449#discussion_r1665591893
########## clients/src/test/java/org/apache/kafka/clients/consumer/internals/MembershipManagerImplTest.java: ########## @@ -2302,6 +2303,61 @@ public void testRebalanceMetricsOnFailedRebalance() { assertEquals(-1d, getMetricValue(metrics, rebalanceMetricsManager.lastRebalanceSecondsAgo)); } + @Test + public void testLeaveGroupWhenStateIsFatal() { + MembershipManagerImpl membershipManager = createMemberInStableState(null); + when(subscriptionState.hasAutoAssignedPartitions()).thenReturn(true); + membershipManager.transitionToFatal(); + assertEquals(MemberState.FATAL, membershipManager.state()); + + subscriptionState.assignFromUser(Collections.singleton(new TopicPartition("topic", 0))); + assertEquals(1, subscriptionState.numAssignedPartitions()); Review Comment: Thanks for the suggestion. I add `verify(subscriptionState).unsubscribe();` to test cases which calling `leaveGroup`. The only different one is `testLeaveGroupWhenMemberAlreadyLeaving`. I use `verify(subscriptionState, never()).unsubscribe();` for second leave attempt. Could you take a look again? Thank you. -- 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: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org