TaiJuWu commented on code in PR #16905: URL: https://github.com/apache/kafka/pull/16905#discussion_r1739606015
########## core/src/test/scala/integration/kafka/api/SaslSslAdminIntegrationTest.scala: ########## @@ -337,6 +338,53 @@ class SaslSslAdminIntegrationTest extends BaseAdminIntegrationTest with SaslSetu assertFutureExceptionTypeEquals(results.values.get(emptyResourceNameAcl), classOf[InvalidRequestException]) } + @ParameterizedTest + @ValueSource(strings = Array("zk", "kraft")) + def testCreateDelegationTokenWithLargeTimeout(quorum: String): Unit = { + client = createAdminClient + val timeout = Long.MaxValue + + val options = new CreateDelegationTokenOptions().maxlifeTimeMs(timeout) + val token = client.createDelegationToken(options).delegationToken().get() + + assertEquals(DelegationTokenManagerConfigs.DELEGATION_TOKEN_MAX_LIFE_TIME_MS_DEFAULT, token.tokenInfo.maxTimestamp - token.tokenInfo.issueTimestamp) + assertTrue(token.tokenInfo.maxTimestamp >= token.tokenInfo.expiryTimestamp) + } + + @ParameterizedTest + @ValueSource(strings = Array("zk", "kraft")) + def testCreateDelegationTokenWithNegativeTimeout(quorum: String): Unit = { + client = createAdminClient + val timeout = -1 + + val options = new CreateDelegationTokenOptions().maxlifeTimeMs(timeout) + val token = client.createDelegationToken(options).delegationToken().get() + + assertEquals(DelegationTokenManagerConfigs.DELEGATION_TOKEN_MAX_LIFE_TIME_MS_DEFAULT, token.tokenInfo.maxTimestamp - token.tokenInfo.issueTimestamp) + assertTrue(token.tokenInfo.maxTimestamp >= token.tokenInfo.expiryTimestamp) + } + + @ParameterizedTest + @ValueSource(strings = Array("zk", "kraft")) + def testExpiredTimeStampLargerThanMaxLifeStamp(quorum: String): Unit = { + client = createAdminClient + val timeout = -1 + + val createOptions = new CreateDelegationTokenOptions().maxlifeTimeMs(timeout) + val token = client.createDelegationToken(createOptions).delegationToken().get() + + assertEquals(DelegationTokenManagerConfigs.DELEGATION_TOKEN_MAX_LIFE_TIME_MS_DEFAULT, token.tokenInfo.maxTimestamp - token.tokenInfo.issueTimestamp) + assertTrue(token.tokenInfo.maxTimestamp >= token.tokenInfo.expiryTimestamp) + + TestUtils.waitUntilTrue(() => brokers.forall(server => server.tokenCache.tokens().size() == 1), + "Timed out waiting for token to propagate to all servers") + + val expiredOptions = new ExpireDelegationTokenOptions().expiryTimePeriodMs(token.tokenInfo.maxTimestamp + 1) + val expiredResult = client.expireDelegationToken(token.hmac, expiredOptions) + + assertTrue(token.tokenInfo.maxTimestamp >= expiredResult.expiryTimestamp.get()) Review Comment: Removed. Thanks for review. -- 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