PowerMock mockStatic没有捕获模拟静态void方法调用

时间:2015-03-26 09:41:26

标签: java unit-testing junit mockito powermock

我尝试使用PowerMock在Mockito上模拟静态void方法,但它不能很好地工作。

我的示例代码:

BlackTempleTest.java

package com;

import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.invocation.InvocationOnMock;
import org.mockito.stubbing.Answer;
import org.powermock.api.mockito.PowerMockito;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockRunner;

import com.BlackTempleTest.Illidan;

@RunWith(PowerMockRunner.class)
@PrepareForTest({ Illidan.class, EvilBrother.class })
public class BlackTempleTest {

    Answer<Object> defaultAnswer = new Answer<Object>() {
        @Override
        public Object answer(InvocationOnMock invocation) throws Throwable {
            System.out.println("Haha!");
            return null;
        }
    };

    @Test(expected = AssertionError.class)
    public void testIllidanFight() throws Exception {
        Illidan.startFight();
    }

    @Test
    public void testCheatOnIllidanFight() throws Exception {
        PowerMockito.mockStatic(Illidan.class, defaultAnswer);

        Illidan.startFight();
    }

    @Test(expected = AssertionError.class)
    public void testEvilBrotherFight() throws Exception {
        EvilBrother.startFight();
    }

    // dont work
    @Test
    public void testCheatOnEvilBrotherFight() throws Exception {
        PowerMockito.mockStatic(EvilBrother.class, defaultAnswer);

        EvilBrother.startFight();
    }

    static class Illidan {
        static void startFight() {
            Assert.fail("You are not prepared!");
        }
    }
}

EvilBrother.java

package com;

import com.BlackTempleTest.Illidan;

public class EvilBrother extends Illidan {

}

我的问题是,嵌套类是通过@PrepareForTest和PowerMockito.mockStatic的组合按预期模拟的,但如果该类在它自己的类文件中,则这些语句不起作用。

如何修复此测试?

修改

    PowerMockito.doAnswer(defaultAnswer).when(EvilBrother.class, "startFight");

可以通过Powermock管道坏调用,但执行Assert.fail。

java.lang.AssertionError: You are not prepared!
    at org.junit.Assert.fail(Assert.java:88)
    at com.BlackTempleTest$Illidan.startFight(BlackTempleTest.java:54)
    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.powermock.reflect.internal.WhiteboxImpl.performMethodInvocation(WhiteboxImpl.java:1873)
    at org.powermock.reflect.internal.WhiteboxImpl.doInvokeMethod(WhiteboxImpl.java:773)
    at org.powermock.reflect.internal.WhiteboxImpl.invokeMethod(WhiteboxImpl.java:753)
    at org.powermock.reflect.Whitebox.invokeMethod(Whitebox.java:466)
    at org.powermock.api.mockito.internal.expectation.PowerMockitoStubberImpl.when(PowerMockitoStubberImpl.java:106)
    at com.BlackTempleTest.testCheatOnEvilBrotherFight(BlackTempleTest.java:47)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

1 个答案:

答案 0 :(得分:1)

解决方案是,你必须模拟伊利丹而不是EvilBrother,即使你调用EvilBrother.startFight,因为该方法是继承的。

@Test
public void testCheatOnEvilBrotherFight() throws Exception {
    PowerMockito.mockStatic(Illidan.class, defaultAnswer);

    EvilBrother.startFight();
}
相关问题