在 Android 上测试 Kotlin 流

测试与通信的单元或模块的方式取决于被测对象是使用流作为输入还是输出。

  • 如果被测对象观察流,则可以在您可以从测试中控制的伪造依赖项中生成流。
  • 如果单元或模块公开流,则可以在测试中读取和验证流发出的一个或多个项。

创建伪造生产者

当被测对象是流的使用者时,一种常见的测试方法是用伪造的实现替换生产者。例如,假设一个类观察一个存储库,该存储库在生产环境中从两个数据源获取数据

the subject under test and the data layer
图 1. 被测对象和数据层。

为了使测试确定性,您可以用始终发出相同伪造数据的伪造存储库替换存储库及其依赖项

dependencies are replaced with a fake implementation
图 2. 依赖项被伪造的实现替换。

要在一个流中发出预定义的一系列值,请使用flow构建器

class MyFakeRepository : MyRepository {
    fun observeCount() = flow {
        emit(ITEM_1)
    }
}

在测试中,注入此伪造存储库,替换实际实现

@Test
fun myTest() {
    // Given a class with fake dependencies:
    val sut = MyUnitUnderTest(MyFakeRepository())
    // Trigger and verify
    ...
}

现在您可以控制被测对象的输出,可以通过检查其输出验证其是否正常工作。

在测试中断言流发射

如果被测对象正在公开流,则测试需要对数据流中的元素进行断言。

假设前面的示例的存储库公开了一个流

repository with fake dependencies that exposes a flow
图 3. 带有公开流的伪造依赖项的存储库(被测对象)。

对于某些测试,您只需要检查来自流的第一个发射或有限数量的项。

您可以通过调用first()来使用流的第一个发射。此函数等待收到第一个项,然后向生产者发送取消信号。

@Test
fun myRepositoryTest() = runTest {
    // Given a repository that combines values from two data sources:
    val repository = MyRepository(fakeSource1, fakeSource2)

    // When the repository emits a value
    val firstItem = repository.counter.first() // Returns the first item in the flow

    // Then check it's the expected item
    assertEquals(ITEM_1, firstItem)
}

如果测试需要检查多个值,则调用toList()会导致流等待源发出所有值,然后将这些值作为列表返回。这仅适用于有限的数据流。

@Test
fun myRepositoryTest() = runTest {
    // Given a repository with a fake data source that emits ALL_MESSAGES
    val messages = repository.observeChatMessages().toList()

    // When all messages are emitted then they should be ALL_MESSAGES
    assertEquals(ALL_MESSAGES, messages)
}

对于需要更复杂项集合或不返回有限数量项的数据流,您可以使用Flow API 选择和转换项。以下是一些示例

// Take the second item
outputFlow.drop(1).first()

// Take the first 5 items
outputFlow.take(5).toList()

// Takes the first item verifying that the flow is closed after that
outputFlow.single()

// Finite data streams
// Verify that the flow emits exactly N elements (optional predicate)
outputFlow.count()
outputFlow.count(predicate)

测试期间的连续收集

如前例所示,使用toList()收集流会在内部使用collect(),并挂起直到整个结果列表准备好返回。

要交错导致流发出值的操作和对已发出值的断言,可以在测试期间持续从流中收集值。

例如,以下要测试的Repository类,以及具有emit方法以在测试期间动态生成值的伴随伪造数据源实现

class Repository(private val dataSource: DataSource) {
    fun scores(): Flow<Int> {
        return dataSource.counts().map { it * 10 }
    }
}

class FakeDataSource : DataSource {
    private val flow = MutableSharedFlow<Int>()
    suspend fun emit(value: Int) = flow.emit(value)
    override fun counts(): Flow<Int> = flow
}

在测试中使用此伪造数据时,您可以创建一个收集协程,该协程将持续接收来自Repository的值。在此示例中,我们将其收集到列表中,然后对其内容执行断言

@Test
fun continuouslyCollect() = runTest {
    val dataSource = FakeDataSource()
    val repository = Repository(dataSource)

    val values = mutableListOf<Int>()
    backgroundScope.launch(UnconfinedTestDispatcher(testScheduler)) {
        repository.scores().toList(values)
    }

    dataSource.emit(1)
    assertEquals(10, values[0]) // Assert on the list contents

    dataSource.emit(2)
    dataSource.emit(3)
    assertEquals(30, values[2])

    assertEquals(3, values.size) // Assert the number of items collected
}

由于此处 Repository 公开的流永远不会完成,因此收集它的 toList 调用永远不会返回。在 TestScope.backgroundScope 中启动收集协程可确保在测试结束之前取消协程。否则,runTest 将继续等待其完成,导致测试停止响应并最终失败。

请注意此处如何为收集协程使用 UnconfinedTestDispatcher。这确保了收集协程会被立即启动,并在 launch 返回后准备好接收值。

使用 Turbine

第三方 Turbine 库提供了一个方便的 API 用于创建收集协程,以及其他用于测试 Flow 的便利功能。

@Test
fun usingTurbine() = runTest {
    val dataSource = FakeDataSource()
    val repository = Repository(dataSource)

    repository.scores().test {
        // Make calls that will trigger value changes only within test{}
        dataSource.emit(1)
        assertEquals(10, awaitItem())

        dataSource.emit(2)
        awaitItem() // Ignore items if needed, can also use skip(n)

        dataSource.emit(3)
        assertEquals(30, awaitItem())
    }
}

有关更多详细信息,请参阅 库的文档

测试 StateFlows

StateFlow 是一个可观察的数据持有者,可以收集它以观察其随时间推移作为流而持有的值。请注意,此值流是合并的,这意味着如果在 StateFlow 中快速设置值,则该 StateFlow 的收集器不能保证接收所有中间值,只能接收最新的值。

在测试中,如果您牢记合并,则可以像收集任何其他流一样收集 StateFlow 的值,包括使用 Turbine。在某些测试场景中,尝试收集和断言所有中间值可能是可取的。

但是,我们通常建议将 StateFlow 视为数据持有者,并断言其 value 属性。这样,测试可以在给定时间点验证对象的当前状态,并且不依赖于是否发生合并。

例如,请考虑此从 Repository 收集值并在 StateFlow 中将其公开给 UI 的 ViewModel。

class MyViewModel(private val myRepository: MyRepository) : ViewModel() {
    private val _score = MutableStateFlow(0)
    val score: StateFlow<Int> = _score.asStateFlow()

    fun initialize() {
        viewModelScope.launch {
            myRepository.scores().collect { score ->
                _score.value = score
            }
        }
    }
}

Repository 的模拟实现可能如下所示

class FakeRepository : MyRepository {
    private val flow = MutableSharedFlow<Int>()
    suspend fun emit(value: Int) = flow.emit(value)
    override fun scores(): Flow<Int> = flow
}

在使用此模拟测试 ViewModel 时,您可以从模拟中发出值以触发 ViewModel 的 StateFlow 中的更新,然后断言更新后的 value

@Test
fun testHotFakeRepository() = runTest {
    val fakeRepository = FakeRepository()
    val viewModel = MyViewModel(fakeRepository)

    assertEquals(0, viewModel.score.value) // Assert on the initial value

    // Start collecting values from the Repository
    viewModel.initialize()

    // Then we can send in values one by one, which the ViewModel will collect
    fakeRepository.emit(1)
    assertEquals(1, viewModel.score.value)

    fakeRepository.emit(2)
    fakeRepository.emit(3)
    assertEquals(3, viewModel.score.value) // Assert on the latest value
}

使用 stateIn 创建的 StateFlows

在上一节中,ViewModel 使用 MutableStateFlow 存储来自 Repository 的流发出的最新值。这是一种常见模式,通常通过使用 stateIn 运算符以更简单的方式实现,该运算符将冷流转换为热 StateFlow

class MyViewModelWithStateIn(myRepository: MyRepository) : ViewModel() {
    val score: StateFlow<Int> = myRepository.scores()
        .stateIn(viewModelScope, SharingStarted.WhileSubscribed(5000L), 0)
}

stateIn 运算符具有 SharingStarted 参数,该参数确定何时激活并开始使用底层流。ViewModel 中经常使用 SharingStarted.LazilySharingStarted.WhileSubsribed 等选项。

即使您在测试中断言 StateFlowvalue,也需要创建一个收集器。这可以是一个空的收集器。

@Test
fun testLazilySharingViewModel() = runTest {
    val fakeRepository = HotFakeRepository()
    val viewModel = MyViewModelWithStateIn(fakeRepository)

    // Create an empty collector for the StateFlow
    backgroundScope.launch(UnconfinedTestDispatcher(testScheduler)) {
        viewModel.score.collect()
    }

    assertEquals(0, viewModel.score.value) // Can assert initial value

    // Trigger-assert like before
    fakeRepository.emit(1)
    assertEquals(1, viewModel.score.value)

    fakeRepository.emit(2)
    fakeRepository.emit(3)
    assertEquals(3, viewModel.score.value)
}

其他资源