我很难尝试使用反射在 Kotlin 中获取私有方法,以便将其作为参数传递给更高阶函数,这是我得到的以及我需要做的:
获取私有方法的函数,可能是我应该更改或修复的:
inline fun <reified T> T.getPrivateFunc(name: String): KFunction<*> {
return T::class.declaredMemberFunctions.first {
it.name == name
}.apply {
isAccessible = true
}
}
这是我拥有的高阶函数:
class MyService {
fun myHigherOrderFunction(action: () -> Unit) { /*...*/ }
}
这些是我需要以某种方式获得的类和私有方法:
class SystemUnderTest {
fun privateFunc() { /*...*/ }
}
最后是一个单元测试,我试图确保将正确的方法传递给高阶函数,为了简化,我省略了细节:
// ...
val serviceMock = MyService()
val sut = SystemUnderTest()
// Here is what I'm trying to accomplish
val privateMethod = sut.getPrivateMethod("privateFunc")
service.myHighOrderFunction(privateMethod)
// In the above line I get a compilation error: required () - Unit, found KFunction<*>
service.myHigherOrderFunction(privateMethod as () -> Unit)
// In the above line I get the following runtime error:
// ClassCastException: kotlin.reflect.jvm.internal.KFunctionImpl cannot be cast to kotlin.jvm.functions.Function1
我知道可以使用privateFunc
as进行测试,也可以使用 进行public
注释@VisibleForTesting
,但我想要的是尽可能避免损害设计。
有任何想法吗?提前致谢!