KyuubiDelegationTokenIdentifierSuite

This commit is contained in:
Kent Yao 2020-10-23 18:28:36 +08:00
parent 50f2d85954
commit 9da3400651
3 changed files with 37 additions and 8 deletions

View File

@ -20,16 +20,10 @@ package org.apache.kyuubi.service.authentication
import org.apache.hadoop.io.Text
import org.apache.hadoop.security.token.delegation.AbstractDelegationTokenIdentifier
case class KyuubiDelegationTokenIdentifier(
owner: Text, renewer: Text, realUser: Text) extends AbstractDelegationTokenIdentifier {
class KyuubiDelegationTokenIdentifier extends AbstractDelegationTokenIdentifier() {
override def getKind: Text = KyuubiDelegationTokenIdentifier.KIND
}
object KyuubiDelegationTokenIdentifier {
def apply(): KyuubiDelegationTokenIdentifier = {
KyuubiDelegationTokenIdentifier(new Text(), new Text(), new Text())
}
final val KIND = new Text("KYUUBI_DELEGATION_TOKEN")
}

View File

@ -29,7 +29,7 @@ case class KyuubiDelegationTokenManager(
extends AbstractDelegationTokenSecretManager[KyuubiDelegationTokenIdentifier](
keyUpdateInterval, tokenMaxLifetime, tokenRenewInterval, tokenRemoverScanInterval) {
override def createIdentifier(): KyuubiDelegationTokenIdentifier = {
KyuubiDelegationTokenIdentifier()
new KyuubiDelegationTokenIdentifier()
}
}

View File

@ -0,0 +1,35 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.kyuubi.service.authentication
import org.apache.hadoop.io.Text
import org.apache.kyuubi.KyuubiFunSuite
class KyuubiDelegationTokenIdentifierSuite extends KyuubiFunSuite {
test("kyuubi delegation token identifier") {
val identifier = new KyuubiDelegationTokenIdentifier()
assert(identifier.getKind === KyuubiDelegationTokenIdentifier.KIND)
assert(identifier.getOwner === new Text())
assert(identifier.getIssueDate === 0)
assert(identifier.getMaxDate === 0)
assert(identifier.getRealUser === new Text())
}
}