4

这与此处发现的问题相同。不幸的是,接受的答案对我不起作用。我有一个静态实用程序类,其中包含我需要测试的私有方法。我发现当我模拟这样的方法时:

PowerMockito.spy(StaticUtil.class);
PowerMockito.when(StaticUtil.class, "getSomethingMethod", someObjectArray, someStringArray, aBoolean, someList).thenReturn(anotherList);

我得到一个空指针异常,因为getSomethingMethod()实际上正在调用。当我调试时,我发现当我运行我试图测试的方法时它没有被调用,但是当我设置模拟时它正在运行。 基于此站点,当您以这种格式创建模拟时,看起来应该会发生这种情况。

所以然后我尝试以这种方式设置模拟:

PowerMockito.spy(StaticUtil.class);        
PowerMockito.doReturn(anotherList).when(StaticUtil.getSomethingMethod( someObjectArray, someStringArray, aBoolean, someList);

但是,我从 Eclipse 收到一条错误消息,提示我需要将其可见性更改getSomethingMethod()为公开。使用 PowerMockito 的一大好处不是可以模拟私有方法吗?我需要模拟这个private static方法(在设置过程中没有实际调用该方法)。

4

2 回答 2

8

您必须使用他们在您链接的答案中指定的确切语法。该语法是. 您在此处提供的示例均未使用该示例。doReturn(returnValue).when(Class, String, arguments);


这是一些扩展的解释。我整理了一个示例测试框架来证明这一点:

试图在这个类上运行测试:

package org.test.stackoverflow;

import java.util.Collections;
import java.util.List;

public class StaticUtil {
  public static void Wrapper() {
    getSomethingMethod(null, null, false, Collections.<String>emptyList());
  }

  private static List<String> getSomethingMethod(Object[] obj,
      String[] str, boolean flag, List<String> aList){ 
    System.out.println("I happen!");
    return aList;
  }
}

如果方法本身被调用,我们将看到I happen!. 如果没有,我们不会。

然后,我使用这个测试类:

package org.test.stackoverflow;

import java.util.List;

import org.junit.runner.RunWith;
import org.junit.*;
import org.powermock.api.mockito.PowerMockito;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockRunner;

@RunWith(PowerMockRunner.class)
@PrepareForTest(org.test.stackoverflow.StaticUtil.class)
public class StaticUtilTest {
  Object[] someObjectArray;
  String[] someStringArray;
  boolean aBoolean;
  List<String> someList;
  List<String> anotherList;

  @Test
  public void testWhenClassStringMethod() throws Exception {
    System.out.println("Beginning Test when(Class klass, String method name).doReturn(result)");
    PowerMockito.spy(StaticUtil.class);
    PowerMockito.when(StaticUtil.class, "getSomethingMethod", someObjectArray, someStringArray, aBoolean, someList).thenReturn(anotherList);
    System.out.println("End Test when");
  }

  @Test
  public void testDoReturnActualMethod() throws Exception {
    PowerMockito.spy(StaticUtil.class);
    // This doesn't compile as you've correctly stated
//    PowerMockito.doReturn(anotherList).when(StaticUtil.getSomethingMethod(someObjectArray, someStringArray, aBoolean, someList);
  }

  @Test
  public void testDoReturnClassStringMethod() throws Exception {
    System.out.println("Beginning Test doReturn().when(Class klass, String method name");
    PowerMockito.spy(StaticUtil.class);
    PowerMockito.doReturn(anotherList).when(StaticUtil.class, "getSomethingMethod", someObjectArray, someStringArray, aBoolean, someList);
    System.out.println("End Test doReturn");
  }
}

所以,如果它打印I happen,那么我们使用了错误的语法。当我运行这个程序时,我们得到:

Beginning Test when(Class klass, String method name).doReturn(result)
I happen!
End Test when
Beginning Test doReturn().when(Class klass, String method name)
End Test doReturn

因此,您必须使用第三个 test 中的语法

注意:此示例使用静态的空参数;显然,您应该将示例配置为根据您的应用程序正常使用参数匹配器。

于 2015-08-03T21:31:34.703 回答
-3

当您对模拟对象设置期望时,您必须使用参数匹配器,例如 Matchers.any() 或 Matchers.anyString() 但不能使用实际参数。

有关更多详细信息,请参阅我对J-Unit Test的回答:Make static void method in final class throw exception

durron597 的回答存在一个潜在问题:“testDoReturnClassStringMethod”中的语法未正确模拟。在那个方法中,他试图模拟 StaticUtil 类,但没有调用测试方法包装器。看例子

@Test
public void testDoReturnClassStringMethod() throws Exception {
    System.out.println("Beginning Test doReturn().when(Class klass, String method name");
    PowerMockito.spy(StaticUtil.class);
    PowerMockito.doReturn(anotherList).when(StaticUtil.class, "getSomethingMethod", someObjectArray, someStringArray, aBoolean, someList);
    StaticUtil.Wrapper();
    System.out.println("End Test doReturn");
}

结果是

Beginning Test doReturn().when(Class klass, String method name
I happen!
End Test doReturn

“我发生了!” 被打印。mock 配置不正确。

正确的嘲讽方式是:

@Test
public void testDoReturnWithProperMock() throws Exception {
    System.out.println("Beginning Test doReturn().when(Class klass, String method name");
    PowerMockito.spy(StaticUtil.class);
    PowerMockito.doReturn(anotherList).when(StaticUtil.class, "getSomethingMethod", Matchers.anyObject(), Matchers.anyObject(), Matchers.anyBoolean(), Matchers.anyList());
    StaticUtil.Wrapper();
    System.out.println("End Test doReturn");

}

结果是:

Beginning Test doReturn().when(Class klass, String method name
End Test doReturn
于 2015-08-04T05:56:50.083 回答