TaiJuWu commented on code in PR #16355:
URL: https://github.com/apache/kafka/pull/16355#discussion_r1641243077
##########
core/src/test/scala/integration/kafka/api/PlaintextAdminIntegrationTest.scala:
##########
@@ -1001,6 +1001,30 @@ class PlaintextAdminIntegrationTest extends
BaseAdminIntegrationTest {
assertTrue(assertThrows(classOf[ExecutionException], () =>
describeResult2.values.get(invalidTopic).get).getCause.isInstanceOf[InvalidTopicException])
}
+ @ParameterizedTest
+ @ValueSource(strings = Array("zk", "kraft"))
+ def testIncludeDocumentation(quorum: String): Unit = {
+ val consumer = createConsumer()
+ subscribeAndWaitForAssignment(topic, consumer)
+ client = createAdminClient
+
+ val resource = new ConfigResource(ConfigResource.Type.TOPIC, topic)
+ val includeDescribe = new
DescribeConfigsOptions().includeDocumentation(true)
+ var describeConfigs =
client.describeConfigs(Collections.singletonList(resource), includeDescribe)
+ val pattern = """documentation=([^,]*?)\)""".r
Review Comment:
Could you explain why we need `[^,]`?
--
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]