PowerMock和EasyMock方法模拟问题

时间:2012-03-29 19:05:36

标签: java unit-testing junit4 easymock powermock

我是EasyMock和PowerMock的新手,我可能会陷入非常基本的困境。

以下是我想测试的代码

import java.io.File;

public class FileOp() {
private static FileOp instance = null;
public string hostIp = "";

public static FileOp() {
    if(null == instance)
        instance = new FileOp();
}

private FileOp() {
    init();
}

init() {
    hostIp = "xxx.xxx.xxx.xxx";
}

public boolean deleteFile(String fileName) {
    File file = new File(fileName);
    if(file.exists()) {
        if(file.delete())
            return true;
        else
            return false;
    }
    else {
        return false;
    }
}

}

以下是我的测试代码......

    import org.easymock.EasyMock;
    import org.junit.Test;
    import org.junit.runner.RunWith;
    import org.powermock.api.easymock.PowerMock;
    import org.powermock.core.classloader.annotations.PrepareForTest;
    import org.powermock.modules.junit4.PowerMockRunner;
    import org.powermock.reflect.Whitebox;

    import java.io.File;

    import static org.easymock.EasyMock.expect;
    import static org.junit.Assert.assertFalse;
    import static org.junit.Assert.assertTrue;

    @RunWith(PowerMockRunner.class)
    @PrepareForTest(FileOp.class)
    public class FileOp_JTest
    {

@Test
@PrepareForTest(File.class)
public void deleteFile_Success(){
    try {
        final String path = "samplePath";

        //Prepare
        File fileMock = EasyMock.createMock(File.class);

        //Setup
        PowerMock.expectNew(File.class, path).andReturn(fileMock);
        expect(fileMock.exists()).andReturn(true);
        expect(fileMock.delete()).andReturn(true);

        PowerMock.replayAll(fileMock);

        //Act
        FileOp fileOp = Whitebox.invokeConstructor(FileOp.class);
        assertTrue(fileOp.deleteFile(path));

        //Verify
        PowerMock.verifyAll();
    }
    catch (Exception e) {
        e.printStackTrace();
        assertFalse(true);
    }
}

}

测试因为失败而失败     assertTrue(fileOp.deleteFile(路径));

我将其追溯到deleteFile(“samplePath”),当被调用时尝试执行file.exists()并返回false。但是,我已经模拟了file.exists()以返回true。

1 个答案:

答案 0 :(得分:0)

您在测试中使用的文件不会被模拟。你有你的fileMock,但它没有在你的测试中使用。您正在测试的方法在以下行中实例化它自己的新File对象:

File file = new File(fileName);

如果你的deleteFile方法采用File对象而不是String,你可以在那里注入你的mockObject并检查所有的调用是否正确。