jeffkbkim commented on code in PR #19251: URL: https://github.com/apache/kafka/pull/19251#discussion_r2006041245
########## core/src/test/scala/unit/kafka/server/OffsetCommitRequestTest.scala: ########## @@ -41,22 +41,12 @@ class OffsetCommitRequestTest(cluster: ClusterInstance) extends GroupCoordinator new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_REPLICATION_FACTOR_CONFIG, value = "1") ) ) - def testOffsetCommitWithOldConsumerGroupProtocolAndNewGroupCoordinator(): Unit = { - testOffsetCommit(false) - } - - @ClusterTest(types = Array(Type.KRAFT, Type.CO_KRAFT), serverProperties = Array( - new ClusterConfigProperty(key = GroupCoordinatorConfig.NEW_GROUP_COORDINATOR_ENABLE_CONFIG, value = "false"), - new ClusterConfigProperty(key = GroupCoordinatorConfig.GROUP_COORDINATOR_REBALANCE_PROTOCOLS_CONFIG, value = "classic"), - new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_PARTITIONS_CONFIG, value = "1"), - new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_REPLICATION_FACTOR_CONFIG, value = "1") - )) - def testOffsetCommitWithOldConsumerGroupProtocolAndOldGroupCoordinator(): Unit = { + def testOffsetCommitWithOldConsumerGroupProtocol(): Unit = { testOffsetCommit(false) } private def testOffsetCommit(useNewProtocol: Boolean): Unit = { - if (useNewProtocol && !isNewGroupCoordinatorEnabled) { + if (useNewProtocol) { Review Comment: seems we no longer need this block? ########## core/src/test/scala/unit/kafka/server/OffsetFetchRequestTest.scala: ########## @@ -45,78 +45,48 @@ class OffsetFetchRequestTest(cluster: ClusterInstance) extends GroupCoordinatorB new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_REPLICATION_FACTOR_CONFIG, value = "1") ) ) - def testSingleGroupOffsetFetchWithOldConsumerGroupProtocolAndNewGroupCoordinator(): Unit = { + def testSingleGroupOffsetFetchWithOldConsumerGroupProtocol(): Unit = { testSingleGroupOffsetFetch(useNewProtocol = false, requireStable = false) } - @ClusterTest(types = Array(Type.KRAFT, Type.CO_KRAFT), serverProperties = Array( - new ClusterConfigProperty(key = GroupCoordinatorConfig.NEW_GROUP_COORDINATOR_ENABLE_CONFIG, value = "false"), - new ClusterConfigProperty(key = GroupCoordinatorConfig.GROUP_COORDINATOR_REBALANCE_PROTOCOLS_CONFIG, value = "classic"), - new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_PARTITIONS_CONFIG, value = "1"), - new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_REPLICATION_FACTOR_CONFIG, value = "1") - )) - def testSingleGroupOffsetFetchWithOldConsumerGroupProtocolAndOldGroupCoordinator(): Unit = { - testSingleGroupOffsetFetch(useNewProtocol = false, requireStable = true) - } - @ClusterTest( serverProperties = Array( new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_PARTITIONS_CONFIG, value = "1"), new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_REPLICATION_FACTOR_CONFIG, value = "1") ) ) - def testSingleGroupAllOffsetFetchWithNewConsumerGroupProtocolAndNewGroupCoordinator(): Unit = { + def testSingleGroupAllOffsetFetchWithNewConsumerGroupProtocol(): Unit = { testSingleGroupAllOffsetFetch(useNewProtocol = true, requireStable = true) } @ClusterTest(serverProperties = Array( new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_PARTITIONS_CONFIG, value = "1"), new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_REPLICATION_FACTOR_CONFIG, value = "1") )) - def testSingleGroupAllOffsetFetchWithOldConsumerGroupProtocolAndNewGroupCoordinator(): Unit = { + def testSingleGroupAllOffsetFetchWithOldConsumerGroupProtocol(): Unit = { testSingleGroupAllOffsetFetch(useNewProtocol = false, requireStable = false) } - @ClusterTest(types = Array(Type.KRAFT, Type.CO_KRAFT), serverProperties = Array( - new ClusterConfigProperty(key = GroupCoordinatorConfig.NEW_GROUP_COORDINATOR_ENABLE_CONFIG, value = "false"), - new ClusterConfigProperty(key = GroupCoordinatorConfig.GROUP_COORDINATOR_REBALANCE_PROTOCOLS_CONFIG, value = "classic"), - new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_PARTITIONS_CONFIG, value = "1"), - new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_REPLICATION_FACTOR_CONFIG, value = "1") - )) - def testSingleGroupAllOffsetFetchWithOldConsumerGroupProtocolAndOldGroupCoordinator(): Unit = { - testSingleGroupAllOffsetFetch(useNewProtocol = false, requireStable = true) - } - @ClusterTest( serverProperties = Array( new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_PARTITIONS_CONFIG, value = "1"), new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_REPLICATION_FACTOR_CONFIG, value = "1") ) ) - def testMultiGroupsOffsetFetchWithNewConsumerGroupProtocolAndNewGroupCoordinator(): Unit = { + def testMultiGroupsOffsetFetchWithNewConsumerGroupProtocol(): Unit = { testMultipleGroupsOffsetFetch(useNewProtocol = true, requireStable = true) } @ClusterTest(serverProperties = Array( new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_PARTITIONS_CONFIG, value = "1"), new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_REPLICATION_FACTOR_CONFIG, value = "1") )) - def testMultiGroupsOffsetFetchWithOldConsumerGroupProtocolAndNewGroupCoordinator(): Unit = { + def testMultiGroupsOffsetFetchWithOldConsumerGroupProtocol(): Unit = { testMultipleGroupsOffsetFetch(useNewProtocol = false, requireStable = false) } - @ClusterTest(types = Array(Type.KRAFT, Type.CO_KRAFT), serverProperties = Array( - new ClusterConfigProperty(key = GroupCoordinatorConfig.NEW_GROUP_COORDINATOR_ENABLE_CONFIG, value = "false"), - new ClusterConfigProperty(key = GroupCoordinatorConfig.GROUP_COORDINATOR_REBALANCE_PROTOCOLS_CONFIG, value = "classic"), - new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_PARTITIONS_CONFIG, value = "1"), - new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_REPLICATION_FACTOR_CONFIG, value = "1") - )) - def testMultiGroupsOffsetFetchWithOldConsumerGroupProtocolAndOldGroupCoordinator(): Unit = { - testMultipleGroupsOffsetFetch(useNewProtocol = false, requireStable = true) - } - private def testSingleGroupOffsetFetch(useNewProtocol: Boolean, requireStable: Boolean): Unit = { - if (useNewProtocol && !isNewGroupCoordinatorEnabled) { + if (useNewProtocol) { Review Comment: ditto on all below as well ########## core/src/test/scala/unit/kafka/server/OffsetDeleteRequestTest.scala: ########## @@ -30,30 +30,20 @@ class OffsetDeleteRequestTest(cluster: ClusterInstance) extends GroupCoordinator new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_REPLICATION_FACTOR_CONFIG, value = "1") ) ) - def testOffsetDeleteWithNewConsumerGroupProtocolAndNewGroupCoordinator(): Unit = { + def testOffsetDeleteWithNewConsumerGroupProtocol(): Unit = { testOffsetDelete(true) } @ClusterTest(serverProperties = Array( new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_PARTITIONS_CONFIG, value = "1"), new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_REPLICATION_FACTOR_CONFIG, value = "1") )) - def testOffsetDeleteWithOldConsumerGroupProtocolAndNewGroupCoordinator(): Unit = { - testOffsetDelete(false) - } - - @ClusterTest(types = Array(Type.KRAFT, Type.CO_KRAFT), serverProperties = Array( - new ClusterConfigProperty(key = GroupCoordinatorConfig.NEW_GROUP_COORDINATOR_ENABLE_CONFIG, value = "false"), - new ClusterConfigProperty(key = GroupCoordinatorConfig.GROUP_COORDINATOR_REBALANCE_PROTOCOLS_CONFIG, value = "classic"), - new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_PARTITIONS_CONFIG, value = "1"), - new ClusterConfigProperty(key = GroupCoordinatorConfig.OFFSETS_TOPIC_REPLICATION_FACTOR_CONFIG, value = "1") - )) - def testOffsetDeleteWithOldConsumerGroupProtocolAndOldGroupCoordinator(): Unit = { + def testOffsetDeleteWithOldConsumerGroupProtocol(): Unit = { testOffsetDelete(false) } private def testOffsetDelete(useNewProtocol: Boolean): Unit = { - if (useNewProtocol && !isNewGroupCoordinatorEnabled) { + if (useNewProtocol) { Review Comment: ditto -- 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