如何在Java中模拟静态方法?

时间:2013-03-15 18:24:02

标签: java junit tdd mockito powermock

我有一个班级FileGenerator,我正在为应该执行以下操作的generateFile()方法编写测试:

1)它应该在getBlockImpl(FileTypeEnum)

上调用静态方法BlockAbstractFactory

2)它应该从子类方法blockList

填充变量getBlocks()

3)它应该从最终帮助器类createFile调用静态方法FileHelper并传递一个String参数

4)它应该调用blockList

中每个BlockController的run方法

到目前为止,我有这个空方法:

public class FileGenerator {
    // private fields with Getters and Setters

    public void generateBlocks() {
    }
}

我正在使用JUnit,Mockito模拟对象,我尝试使用PowerMockito来模拟静态和最终类(Mockito不这样做)。

我的问题是:我的第一个测试(来自getBlockList()的调用方法BlockAbstractFactory)正在通过,即使generateBlocks()中没有实现。我已经在BlockAbstractFactory中实现了静态方法(到目前为止返回null),以避免Eclipse语法错误。

如何在fileGerator.generateBlocks()内调用静态方法?

到目前为止,这是我的测试类:

@RunWith(PowerMockRunner.class)
public class testFileGenerator {
    FileGenerator fileGenerator = new FileGenerator();

    @Test
    public void shouldCallGetBlockList() {
            fileGenerator.setFileType(FileTypeEnum.SPED_FISCAL);

            fileGenerator.generateBlocks();

            PowerMockito.mockStatic(BlockAbstractFactory.class);
            PowerMockito.verifyStatic();
            BlockAbstractFactory.getBlockImpl(fileGenerator.getFileType());
    }
}

2 个答案:

答案 0 :(得分:5)

我没有使用PowerMock的经验,但由于你还没有得到答案,我只是在阅读文档,看看我是否可以帮助你。

我发现你需要准备PowerMock,以便我知道它需要准备哪些静态方法来进行模拟。像这样:

@RunWith(PowerMockRunner.class)
@PrepareForTest(BlockAbstractFactory.class) // <<=== Like that
public class testFileGenerator {
    // rest of you class
}

Here您可以找到更多信息。

这有帮助吗?

答案 1 :(得分:0)

工作示例:

@RunWith(PowerMockRunner.class)
@PrepareForTest({ClassStaticA.class, ClassStaticB.class})
public class ClassStaticMethodsTest {

    @Test
    public void testMockStaticMethod() {
        PowerMock.mockStatic(ClassStaticA.class);
        EasyMock.expect(ClassStaticA.getMessageStaticMethod()).andReturn("mocked message");
        PowerMock.replay(ClassStaticA.class);
        assertEquals("mocked message", ClassStaticA.getMessageStaticMethod());
    }