Kotlin扩展功能很棒。但是我怎么能对它们进行单元测试呢?特别是那些Android SDK提供的类(例如Context,Dialog)。
我在下面提供了两个示例,如果有人可以分享我如何对它们进行单元测试,或者如果我真的想对它们进行单元测试,我需要以不同的方式编写它们。
fun Context.getColorById(colorId: Int): Int {
if (Build.VERSION.SDK_INT >= 23)
return ContextCompat.getColor(this, colorId)
else return resources.getColor(colorId)
}
和
fun Dialog.setupErrorDialog(body : String, onOkFunc: () -> Unit = {}): Dialog {
window.requestFeature(Window.FEATURE_NO_TITLE)
this.setContentView(R.layout.dialog_error_layout)
(findViewById(R.id.txt_body) as TextView).text = body
(findViewById(R.id.txt_header) as TextView).text = context.getString(R.string.dialog_title_error)
(findViewById(R.id.txt_okay)).setOnClickListener{
onOkFunc()
dismiss()
}
return this
}
任何建议都会有所帮助。谢谢!
答案 0 :(得分:2)
目前我在Android类上测试扩展功能的方法是模拟Android类。我知道,这不是一个最佳的解决方案,因为它模拟了测试中的类,并且需要关于函数如何工作的某些知识(因为在模拟时总是如此),但是因为扩展函数在内部实现为静态函数我猜它&# 39;直到有人想出更好的东西才能接受。
作为示例考虑JsonArray
类。我们已经定义了一个扩展函数来接收最后一项的索引:
fun JSONArray.lastIndex() = length() - 1
相应的测试(使用Spek测试框架和mockito-kotlin)看起来像这样。
@RunWith(JUnitPlatform::class)
object JsonExtensionTestSpec : Spek({
given("a JSON array with three entries") {
val jsonArray = mock<JSONArray> {
on { length() } doReturn 3
}
on("getting the index of the last item") {
val lastIndex = jsonArray.lastIndex()
it("should be 2") {
lastIndex shouldBe 2
}
}
}
given("a JSON array with no entries") {
val jsonArray = mock<JSONArray>({
on { length() } doReturn 0
})
on("getting the index of the last item") {
val lastIndex = jsonArray.lastIndex()
it("should be -1") {
lastIndex shouldBe -1
}
}
}
})
您的功能有困难,他们也在内部使用Android类。不幸的是,我现在还没有解决方案。