0

これは、シリーズのパート 3です...

私は(まだ)PowerMockito(is )を使用してbar(Alpha, Baz)呼び出されたかどうかを確認しようとしています-実際に後で呼び出すことなく、以下のMCVEクラスを指定します。は何も返さないが、他の 2 つはを返すこと注意してください。bar(Xray, Baz)bar(Xray, Baz)privateFoobar(Alpha, Baz)String

public class Foo {
    private String bar(Xray xray, Baz baz) { return "Xray"; }

    private String bar(Zulu zulu, Baz baz) { return "Zulu"; }

    public void bar(Alpha alpha, Baz baz) { // this one returns nothing
        if(alpha.get() instanceof Xray) {
            System.out.println(bar((Xray) alpha.get(), baz));
            return;
        } else if(alpha.get() instanceof Zulu) {
            System.out.println(bar((Zulu)alpha.get(), baz));
            return;
        } else {
            return;
        }
    }
}

ユーザー kswaughsは、すべてのメソッドが同じ戻り値の型を持つ場合に、プライベート オーバーロード メソッドの問題を解決しました。そして、他の場所when()では、メソッドをオブジェクトで使用することが提案されましたMethod...しかし、bar(Alpha, Baz)他のメソッドとは異なる戻り値の型を使用するように定義したので、すべてが再び崩壊します:

@RunWith(PowerMockRunner.class)
public class FooTest {

    @Test
    public void testBar_callsBarWithXray() throws Exception {
        Baz baz = new Baz(); //POJOs
        Alpha alpha = new Alpha();
        alpha.set(new Xray());

        Foo foo = new Foo();
        Foo stub = PowerMockito.spy(foo);

        Method m = Whitebox.getMethod(Foo.class, "bar", Xray.class, Baz.class);

        PowerMockito.doReturn("ok").when(stub, m);

        stub.bar(alpha, baz); // fails here - even though that then calls stub.bar(Xray, Baz);

        // Testing if bar(Xray, Baz) was called by bar(Alpha, Baz)
        PowerMockito.verifyPrivate(stub, times(5)).invoke("bar", any(Xray.class), any(Baz.class));
    }
}

すべての美しさの例外:

org.mockito.exceptions.base.MockitoException: 
'bar' is a *void method* and it *cannot* be stubbed with a *return value*!
Voids are usually stubbed with Throwables:
    doThrow(exception).when(mock).someVoidMethod();
***
If you're unsure why you're getting above error read on.
Due to the nature of the syntax above problem might occur because:
1. The method you are trying to stub is *overloaded*. Make sure you are calling the right overloaded version.
2. Somewhere in your test you are stubbing *final methods*. Sorry, Mockito does not verify/stub final methods.
3. A spy is stubbed using when(spy.foo()).then() syntax. It is safer to stub spies - 
   - with doReturn|Throw() family of methods. More in javadocs for Mockito.spy() method.

    at FooTest.testBar_callsBarWithXray(FooTest.java:31)

使っ.withArguments(any(Xray.class), any(Baz.class))ても変わらないようです。

スポットオンですが、残念ながら例外は、私が持っているセットアップでポイント1を実現する方法を教えてくれません. 何か案は?

4

1 に答える 1

0

ここでは、問題はさまざまな戻り値の型ではなく、オーバーロードされたメソッドのみにあります。WhiteBox.getMethod の代わりに MemberMatcher.method() を使用します. テスト目的で, public bar メソッドの先頭に sysout ステートメントを追加しました.

public void bar(Alpha alpha, Baz baz) { // this one returns nothing

System.out.println("public bar");

if(alpha.get() instanceof Xray) {
    System.out.println(bar((Xray) alpha.get(), baz));
    return;
} else if(alpha.get() instanceof Zulu) {
    System.out.println(bar((Zulu)alpha.get(), baz));
    return;
} else {
    return;
}
}

以下はテスト メソッドです。MemberMatcher を使用する場合、Foo.class には PrepareForTest が必要です。

@Test
 public void testBar_callsBarWithXray() throws Exception {
     Baz baz = new Baz(); //POJOs
     Alpha alpha = new Alpha();
     alpha.set(new Xray());

     Foo stub = PowerMockito.spy(new Foo());

     Method m = MemberMatcher.method(Foo.class,
                "bar",
                Xray.class, Baz.class);

     PowerMockito.doReturn("ok")
        .when(stub, m )
        .withArguments(Matchers.any(Xray.class), Matchers.any(Baz.class));

     stub.bar(alpha, baz);

     PowerMockito.verifyPrivate(stub, Mockito.times(1)).invoke("bar", Matchers.any(Xray.class), Matchers.any(Baz.class));
     // Mockito's equivalent for a public method: verify(stub, times(1)).bar(any(Xray.class), any(Baz.class));
 }

output is :
public bar
ok
于 2015-08-27T06:38:13.940 に答える