web-dev-qa-db-ja.com

kotlinおよびArgumentCaptor-IllegalStateException

ArgumentCaptorを介したClass引数のキャプチャに問題があります。私のテストクラスは次のようになります。

@RunWith(RobolectricGradleTestRunner::class)
@Config(sdk = intArrayOf(21), constants = BuildConfig::class)
class MyViewModelTest {
    @Mock
    lateinit var activityHandlerMock: IActivityHandler;

    @Captor
    lateinit var classCaptor: ArgumentCaptor<Class<BaseActivity>>

    @Captor
    lateinit var booleanCaptor: ArgumentCaptor<Boolean>

    private var objectUnderTest: MyViewModel? = null

    @Before
    fun setUp() {
        initMocks(this)
        ...
        objectUnderTest = MyViewModel(...)
    }

    @Test
    fun thatNavigatesToAddListScreenOnAddClicked(){
        //given

        //when
        objectUnderTest?.addNewList()

        //then
        verify(activityHandlerMock).navigateTo(classCaptor.capture(), booleanCaptor.capture())
        var clazz = classCaptor.value
        assertNotNull(clazz);
        assertFalse(booleanCaptor.value);
    }
}

テストを実行すると、次の例外がスローされます。
Java.lang.IllegalStateException:classCaptor.capture()はnullであってはなりません
kotlinで引数キャプターを使用することは可能ですか?

=========更新1:
Kotlin:1.0.0-beta-4584
Mockito:1.10.19
ロボリック:3.0

=========更新2:
スタックトレース:

Java.lang.IllegalStateException: classCaptor.capture() must not be null

at com.example.view.model.ShoplistsViewModelTest.thatNavigatesToAddListScreenOnAddClicked(ShoplistsViewModelTest.kt:92)
at Sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at Sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.Java:57)
at Sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.Java:43)
at Java.lang.reflect.Method.invoke(Method.Java:606)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.Java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.Java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.Java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.Java:17)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.Java:26)
at org.robolectric.RobolectricTestRunner$2.evaluate(RobolectricTestRunner.Java:251)
at org.robolectric.RobolectricTestRunner.runChild(RobolectricTestRunner.Java:188)
at org.robolectric.RobolectricTestRunner.runChild(RobolectricTestRunner.Java:54)
at org.junit.runners.ParentRunner$3.run(ParentRunner.Java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.Java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.Java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.Java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.Java:268)
at org.robolectric.RobolectricTestRunner$1.evaluate(RobolectricTestRunner.Java:152)
at org.junit.runners.ParentRunner.run(ParentRunner.Java:363)
at org.junit.runner.JUnitCore.run(JUnitCore.Java:137)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.Java:69)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.Java:234)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.Java:74)
at Sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at Sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.Java:57)
at Sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.Java:43)
at Java.lang.reflect.Method.invoke(Method.Java:606)
at com.intellij.rt.execution.application.AppMain.main(AppMain.Java:144)
33
Ramps

classCaptor.capture()の戻り値はnullですが、IActivityHandler#navigateTo(Class, Boolean)のシグネチャはnull引数を許可しません。

mockito-kotlin ライブラリは、この問題を解決するためのサポート関数を提供します。

30
Mike Buhot

ファイルによっては、 MockitoKotlinHelpers.kt がGoogleによってAndroid Architecture repoで提供されています。キャプチャを呼び出す便利な方法を提供します。単にcall verify(activityHandlerMock).navigateTo(capture(classCaptor), capture(booleanCaptor))

28
Ikechukwu Kalu

Kotlin-mockito https://mvnrepository.com/artifact/com.nhaarman/mockito-kotlin/1.5.0 を依存関係およびサンプルコードとして使用します。

   argumentCaptor<Hotel>().apply {
            verify(hotelSaveService).save(capture())

            assertThat(allValues.size).isEqualTo(1)
            assertThat(firstValue.name).isEqualTo("İstanbul Hotel")
            assertThat(firstValue.totalRoomCount).isEqualTo(10000L)
            assertThat(firstValue.freeRoomCount).isEqualTo(5000L)

        }
5
enes.acikoglu

このソリューション ここで私のソリューション:

fun <T> uninitialized(): T = null as T

//open verificator
val verificator = verify(activityHandlerMock)

//capture (would be same with all matchers)
classCaptor.capture()
booleanCaptor.capture()

//hack
verificator.navigateTo(uninitialized(), uninitialized())
4
neworld

CoolMind in the comment で述べたように、まず Kotlin-Mockito のgradleインポートを追加し、次にこのライブラリを使用するためにすべてのインポートをシフトする必要があります。インポートは次のようになります。

import com.nhaarman.mockitokotlin2.argumentCaptor
import com.nhaarman.mockitokotlin2.any
import com.nhaarman.mockitokotlin2.eq
import com.nhaarman.mockitokotlin2.isNull
import com.nhaarman.mockitokotlin2.mock
import com.nhaarman.mockitokotlin2.verify

その後、テストクラスは次のようになります。

val mArgumentCaptor = argumentCaptor<SignUpInteractor.Callback>()

@Test
fun signUp_success() {
    val customer = Customer().apply {
        name = "Test Name"
        email = "[email protected]"
        phone = "0123444456789"
        phoneDdi = "+92"
        phoneNumber = ""
        countryCode = "92"
        password = "123456"
    }
    mPresenter.signUp(customer)
    verify(mView).showProgress()
    verify(mInteractor).createAccount(any(), isNull(), mArgumentCaptor.capture())
}
2
Sufian

引数キャプターにラッパーを書くことができます

class CaptorWrapper<T:Any>(private val captor:ArgumentCaptor<T>, private val obj:T){
    fun capture():T{
        captor.capture()
        return obj
    }

    fun captor():ArgumentCaptor<T>{
        return captor
    }
}
0
Amit Kaushik

Kotlin-Mockitoライブラリが助けにならなかった後にここに来ました。リフレクションを使用してソリューションを作成しました。これは、以前にモックされたオブジェクトに提供された引数を抽出する関数です。

fun <T: Any, S> getTheArgOfUsedFunctionInMockObject(mockedObject: Any, function: (T) -> S, clsOfArgument: Class<T>): T{
    val argCaptor= ArgumentCaptor.forClass(clsOfArgument)
    val ver = verify(mockedObject)
    argCaptor.capture()
    ver.javaClass.methods.first { it.name == function.reflect()!!.name }.invoke(ver, uninitialized())
    return argCaptor.value
}
private fun <T> uninitialized(): T = null as T

使用法:(リポジトリをモックし、viewModelをテストしたとしましょう。viewObjectの "update()"メソッドをMenuObjectオブジェクトで呼び出した後、MenuObjectが実際にリポジトリの "updateMenuObject()"メソッドを呼び出したことを確認します。

viewModel.update(menuObjectToUpdate)
val arg = getTheArgOfUsedFunctionInMockObject(mockedRepo, mockedRepo::updateMenuObject, MenuObject::class.Java)
assertEquals(menuObjectToUpdate, arg)
0
Re'em