如何使用power mockito调用静态void方法

时间:2013-08-27 13:00:36

标签: java unit-testing mockito static-methods

我正在使用以下内容。

Powermock-mockito 1.5.12
Mockito 1.95
junit 4.11

这是我的utils类

public void InternalUtils {
    public static void sendEmail(String from, String[] to, String msg, String body) {
    }
}

这是受测试类的要点:

public class InternalService {
       public void processOrder(Order order) {
           if (order.isSuccessful()) {
               InternalUtils.sendEmail(...);
           }
       }
}

这是测试:

@PrepareForTest({InternalUtils.class})
@RunWith(PowerMockRunner.class)
public class InternalService {
   public void verifyEmailSend() {
        mockStatic(Internalutils.class);
        doNothing().when(InternalUtils, "sendEmail", anyString(), any(String.class), anyString(), anyString());
        Order order = mock(Order.class);
        when(order.isSuccessful()).thenReturn(true);
        InternalService is = new InternalService();

        verifyStatic(times(1));
        is.processOrder(order);
   }
}

上述测试失败。给出的验证模式为none,但根据代码,如果订单成功,则必须发送电子邮件。

2 个答案:

答案 0 :(得分:52)

如果你在嘲笑行为(用doNothing()之类的东西),那么真的不需要打电话给verify*()。也就是说,这是我重写你的测试方法的尝试:

@PrepareForTest({InternalUtils.class})
@RunWith(PowerMockRunner.class)
public class InternalServiceTest { //Note the renaming of the test class.
   public void testProcessOrder() {
        //Variables
        InternalService is = new InternalService();
        Order order = mock(Order.class);

        //Mock Behavior
        when(order.isSuccessful()).thenReturn(true);
        mockStatic(Internalutils.class);
        doNothing().when(InternalUtils.class); //This is the preferred way
                                               //to mock static void methods.
        InternalUtils.sendEmail(anyString(), anyString(), anyString(), anyString());

        //Execute
        is.processOrder(order);            

        //Verify
        verifyStatic(InternalUtils.class); //Similar to how you mock static methods
                                           //this is how you verify them.
        InternalUtils.sendEmail(anyString(), anyString(), anyString(), anyString());
   }
}

我分为四个部分,以便更好地突出显示正在发生的事情:

1。变量

我选择在这里声明任何实例变量/方法参数/模拟协作者。如果它是多个测试中使用的东西,请考虑将其作为测试类的实例变量。

2。模拟行为

这是您定义所有模拟行为的地方。在执行测试代码之前,您可以在此设置返回值和期望值。一般来说,如果您在此处设置模拟行为,则以后无需验证该行为。

3。执行

这里没什么好看的;这只是开始测试的代码。我喜欢给它自己的部分来引起注意。

4。验证

当您调用以verifyassert开头的任何方法时。测试结束后,您会检查您想要发生的事情是否确实发生过。这是我用你的测试方法看到的最大错误;您尝试在有机会运行之前验证方法调用。其次是你从未指定要验证的静态方法。

附加说明

这主要是我个人的偏好。你需要做一些事情,但在每个分组中都有一个小小的摆动空间。这有助于我快速分离出发生在哪里的事情。

我还强烈建议您浏览以下网站上的示例,因为它们非常强大,可以帮助解决您需要的大多数情况:

答案 1 :(得分:14)

上述答案被广泛接受并有详细记录,我找到了一些在此发表答案的理由: -

spark.sql.hive.thriftServer.singleSession=true

在这里,我不明白为什么我们自己调用InternalUtils.sendEmail。 我将在我的代码中解释为什么我们不需要这样做。

    doNothing().when(InternalUtils.class); //This is the preferred way
                                           //to mock static void methods.
    InternalUtils.sendEmail(anyString(), anyString(), anyString(), anyString());

所以,我们嘲笑了这个很好的课程。 现在,让我们来看看我们如何验证sendEmail(/..../)方法。

mockStatic(Internalutils.class);

这两条线是神奇的地方, 第一行告诉PowerMockito框架它需要验证它静态模拟的类。但它需要验证哪种方法? 第二行告诉它需要验证哪种方法。

@PrepareForTest({InternalService.InternalUtils.class})
@RunWith(PowerMockRunner.class)
public class InternalServiceTest {

    @Mock
    private InternalService.Order order;

    private InternalService internalService;

    @Before
    public void setup() {
        MockitoAnnotations.initMocks(this);
        internalService = new InternalService();
    }

    @Test
    public void processOrder() throws Exception {

        Mockito.when(order.isSuccessful()).thenReturn(true);
        PowerMockito.mockStatic(InternalService.InternalUtils.class);

        internalService.processOrder(order);

        PowerMockito.verifyStatic(times(1));
        InternalService.InternalUtils.sendEmail(anyString(), any(String[].class), anyString(), anyString());
    }

}

这是我班级的代码, sendEmail api两次。

PowerMockito.verifyStatic(times(1));
InternalService.InternalUtils.sendEmail(anyString(), any(String[].class), anyString(), anyString());

因为它正在调用两次你只需要更改验证(次(2))......就是这样。