使用 File 和 FileInputStream with Mockito/PowerMockito 测试类



我想模拟一个文件和FileInputStream对象进行JUnit测试。

假设我们有一个解析器。从外部解析器只能通过解析(文件 myFile) 方法访问。其他方法如readMyStream....是私有的。

示例代码:

public class Parser {
   public HashMap<String, String> parse(File myFile) throws Exception {
         HashMap<String, String> myConfig;
         Config config;
         try {
             //this line gives me a headache
             FileInputStream myFileInputStream = new FileInputStream(myFile);
             configStream = readMyStream(myFileInputStream);
               ..........
         } catch (FileNotFoundException e) {
                throw e;
         }
         return myConfig;
   }
   //reads the stream 
   private Config readMyStream(FileInputStream myFileInputStream) {
      Config config;    
      ...JDOM stuff....    
      return config;
   }
}

我面临的问题:

  • 如何断言文件对象 像这个文件这样的文件输入流(PowerMockito)属于这个文件输入流,内容如下
  • 如何模拟私有方法(Mockito/PowerMockito)

模拟/不工作:)的示例....

public class ParserTest {
   @Test
   public final void testParse() {
      File MOCKEDFILE = PowerMockito.mock(File.class);
      PowerMockito.when(MOCKEDFILE.exists()).thenReturn(true);
      PowerMockito.when(MOCKEDFILE.isFile()).thenReturn(true);
      PowerMockito.when(MOCKEDFILE.isDirectory()).thenReturn(false);
      PowerMockito.when(MOCKEDFILE.createNewFile()).thenReturn(true);
      PowerMockito.when(MOCKEDFILE.length()).thenReturn(11111111L);
      //what about the path of MOCKEDFILE which isn't existing
      PowerMockito.when(MOCKEDFILE.getPath()).thenReturn(?????);
      //how to assign a File an FileInputStream? (I thought something like)
      PowerMockito.mockStatic(FileInputStream.class);
      FileInputStream MOCKEDINPUTSTREAM = PowerMockito.mock(FileInputStream.class);
      PowerMockito.whenNew(FileInputStream.class).withArguments(File.class).thenReturn(MOCKEDINPUTSTREAM);
      //how to mock the private method readMyStream
   }
与其

嘲笑File,我建议使用TemporaryFolder规则并根据需要创建/不创建文件。

在我以前的项目中,我们编写了一个用于创建FileInputStreamFileInputStreamSupplier类。然后可以模拟此类以提供模拟FileInputStream以允许测试行为。一般来说,你可以让你的班级拿一个Supplier<FileInputStream>(使用番石榴)并模拟它。

相关内容

  • 没有找到相关文章

最新更新