Используйте Spek с методом приостановки

#android #kotlin #spek #mockito-kotlin

#Android #kotlin #spek #mockito-kotlin

Вопрос:

Я пытаюсь создать модульный тест с использованием Spek framework и nhaarman mockito kotlin в моем проекте Android Kotlin. Проблема в том, что при наличии вложенного метода приостановки я не знаю, как имитировать ответ.Вот как я пытаюсь

Я определил:

     val testCoroutineDispatcher = TestCoroutineDispatcher()
    val testCoroutineScope = TestCoroutineScope(testCoroutineDispatcher)
  

и перед любым описанием

     beforeGroup {
        Dispatchers.setMain(testCoroutineDispatcher) //not sure if this is working properly 
    }
    afterGroup {
        Dispatchers.resetMain() // reset main dispatcher to the original Main dispatcher
        testCoroutineScope.cleanupTestCoroutines()
    }
  

и это моя группа

     describe("Test view model") {
        val contentRepository by memoized(CachingMode.SCOPE) { mock<ContentRepository>() }
        val contentViewModel by memoized(CachingMode.SCOPE) {
            ContentViewModel(contentRepository)
        }
        describe("When something happens") {
            beforeGroup {
                testCoroutineScope.runBlockingTest {
                    whenever(contentRepository.fetchAllContents(0, 10))
                        .thenReturn(Result.success(content))//This is suspend
                    contentViewModel.setContentPage(0)
                }
            }
            it("should fetch all content from repository with page 0") {
                verifyBlocking(contentRepository) {
                    fetchAllClassContents(0, 10)
                }
            }
        }
    }
})

  

Но я получаю следующую ошибку

 Argument(s) are different! Wanted:
classContentRepository.fetchAllClassContents(
    0,
    10,
    Continuation at viewmodel.ContentViewModelSpek$1$3$1$4$1.invokeSuspend(ContentViewModelSpek.kt:92)
);
-> at repository.ContentRepository.fetchAllClassContents(ContentRepository.kt:23)
Actual invocation has different arguments:
contentRepository.fetchAllContents(
    0,
    10,
    Continuation at viewmodel.ContentViewModel$setContentPage$1.invokeSuspend(ContentViewModel.kt:26)
);
  

Похоже, что макет, выполнение метода и утверждение выполняются в разных областях

Я не могу найти никакого руководства, которое помогло бы мне создать тест с помощью сопрограммы Заранее спасибо