使用多平台模拟 kotlin 中的常见测试
Posted
技术标签:
【中文标题】使用多平台模拟 kotlin 中的常见测试【英文标题】:mock common tests in kotlin using multiplatform 【发布时间】:2021-04-06 01:39:39 【问题描述】:我不能在 kotlin 多平台上使用通用模拟库 (mockk.io)。在他们的网站上,它说要在 kotlin multiplatform 中使用 mockk,您只需将此行添加到您的 gradle 中。 testImplementation "io.mockk:mockk-common:version"
我添加了它并且它可以正常构建,只有当我想使用它时它才会失败。给予
Unresolved reference: io
Unresolved reference: mockk
我的 gradle 文件
kotlin
val hostOs = System.getProperty("os.name")
val isMingwX64 = hostOs.startsWith("Windows")
val nativeTarget = when
hostOs == "Mac OS X" -> macosX64("native")
hostOs == "Linux" -> linuxX64("native")
isMingwX64 -> mingwX64("native")
else -> throw GradleException("Host OS is not supported in Kotlin/Native.")
nativeTarget.apply
binaries
executable
entryPoint = "main"
sourceSets
val nativeMain by getting
val nativeTest by getting
val commonTest by getting
dependencies
implementation(kotlin("test-common"))
implementation(kotlin("test-annotations-common"))
implementation("io.mockk:mockk-common:1.10.4")
【问题讨论】:
【参考方案1】:除非有所改变,否则 mockk 不适用于 Kotlin Native。
【讨论】:
是的,这也是我试图理解的。我有一个本机目标,但我也有通用代码。我相信 mockk 可以使用通用代码和通用测试对吗? 如果您的通用代码打算在本机上运行,那么不会。如果没有原生实现,它将无法工作。 github.com/mockk/mockk/issues/58 -> 供以后参考【参考方案2】:您可以使用 Mockative 在 Kotlin/Native 和 Kotlin Multiplatform 中模拟接口,这与使用 MockK 或 Mockito 模拟依赖项的方式不同。
全面披露:我是 Mockative 的作者之一
这是一个例子:
class GitHubServiceTests
@Mock val api = mock(classOf<GitHubAPI>())
val service = GitHubService(api)
@Test
fun test()
// Given
val id = "mockative/mockative"
val mockative = Repository(id = id, name = "Mockative")
given(api).invocation fetchRepository(id)
.thenReturn(mockative)
// When
val repository = service.getRepository(id)
// Then
assertEquals(mockative, repository)
// You can also verify function calls on mocks
verify(api).invocation fetchRepository(id)
.wasInvoked(exactly = once)
【讨论】:
以上是关于使用多平台模拟 kotlin 中的常见测试的主要内容,如果未能解决你的问题,请参考以下文章
Kotlin Multiplatform:如何在 iOS 的单元测试中模拟对象
用 ChatGPT 帮你解答kotlin协程的原理级面试常见题