检索路径以处理在测试期间出现问题的文件



我正在为我的程序开发 Ant 构建器,特别是处理文件的路径。

我达成了一个非常简单的解决方案,在我的常量界面中只添加了两个字段:

/** The actual jar file where the class is run */
public static final File JAR_FILE = new File(MagicHogwarts.class.getProtectionDomain().getCodeSource().getLocation().getPath());
/** The path to the main folder where the file .jar is run */
public static final String BASE_DIRECTORY = JAR_FILE.getAbsolutePath().replace(JAR_FILE.getName(), "");

在处理文件的每种方法中,我只需询问相对于 jar 所在的主文件夹的路径,然后首先添加BASE_DIRECTORY,这至少在运行 jar 的 eclipse 中的 macOSX 中工作正常。

对这个快速解决方案感到满意,我运行了我的测试。那失败了。问题似乎出在常量接口上,无法创建JAR_FILE,因为getLocation返回 null,然后getPath失败。

但我不明白为什么。

所以我试图模拟接口,由于 var 被声明为静态 final,因此存在明显的问题,所以我尝试使用 PowerMock:

@RunWith(PowerMockRunner.class)
@PrepareForTest({GameWindow.class,Constants.class})
public class MapReaderTest {
@Test
public void testReadingExampleMap() throws Exception {
    mockStatic(GameWindow.class);
            mockStatic(Constants.class);
    TextureLoader tl = createMock(TextureLoader.class);
    Texture tx = createMock(Texture.class);
    expect(GameWindow.getTextureLoader()).andReturn(tl);
            expect(Constants.BASE_DIRECTORY).andReturn("/Users/Gianmarco/Documents/java/MagicHogwarts/").anyTimes();
    expect(tl.getTexture("/Users/Gianmarco/Documents/java/MagicHogwarts/bin/mh/test/sewer_tileset.png")).andReturn(tx);
    expect(tx.getImageHeight()).andReturn(32).anyTimes();
    expect(tx.getImageWidth()).andReturn(32).anyTimes();
    replay(GameWindow.class);
            replay(Constants.class);
    replay(tl);
    replay(tx);
    // Act
    Map map = new TMXMapReader().readMap("/bin/mh/test/sewers.tmx");//mapFile.getAbsolutePath());
    // Assert
    assertEquals(Map.ORIENTATION_ORTHOGONAL, map.getOrientation());
    assertEquals(50, map.getHeight());
    assertEquals(50, map.getHeight());
    assertEquals(24, map.getTileWidth());
    assertEquals(24, map.getTileHeight());
    assertEquals(2, map.getLayerCount());
}
}

但是我得到了一个 ExceptionInInitializerError,常量的第 60 行,即声明JAR_FILE的行,错误是由 NullPointerException 引起的。

我认为下一步是将接口转换为类,也许 powermock 无法以这种方式处理接口。

运行,并得到一个NoClassDefFoundError。仍然没有结果,我不知道该怎么办。所以我试着反思。

我使用了这个静态方法:

static void setFinalStatic(Field field, Object newValue) throws Exception {
    field.setAccessible(true);
    // remove final modifier from field
    Field modifiersField = Field.class.getDeclaredField("modifiers");
    modifiersField.setAccessible(true);
    modifiersField.setInt(field, field.getModifiers() & ~Modifier.FINAL);
    field.set(null, newValue);
}

调用它:

setFinalStatic(Constants.class.getField("JAR_FILE"), null);
setFinalStatic(Constants.class.getField("BASE_DIRECTORY"), "my/path/hardcoded");

但这都没有用,我得到了一个 ExceptionInInitializerError 和一个包含 sun.mic.Unsafe.ensureClassInitialized(Native Method) 、sun.reflect 和其他堆栈的堆栈。

我花了几个小时解决这个问题,得出的结论是问题出在JAR_FILE以及用于初始化它的方法上,因为即使从常量中删除final修饰符,我也无法更改值调用Constants.JAR_FILE = null

我为解决问题所做的是这样的:

/** The actual jar file where the class is run */
    public static final File    JAR_FILE            = (MagicHogwarts.class.getProtectionDomain().getCodeSource().getLocation() == null ? null : new File(MagicHogwarts.class.getProtectionDomain().getCodeSource().getLocation().getPath()));
    /** The path to the main folder where the file .jar is run */
    public static final String  BASE_DIRECTORY      = (JAR_FILE != null ? JAR_FILE.getAbsolutePath().replace(JAR_FILE.getName(), "") : "/Users/Gianmarco/Documents/java/MagicHogwarts/");

这是一种粗鲁、非常不愉快和可怕的使用 if 语句的方式。

我的问题是,是否有任何不同的方法来获取 jar 和/或从终端行调用#java Myclass的文件,这些文件既可用于正常处理(也包括 jar)和测试

我得出的解决方案是有效的,但我认为将一些测试代码硬编码到类中并不是一件好事,实际上使用 if 就像告诉 Constants 类"如果我正在测试,给我这个模拟字符串,否则给我真正的路径"。如果在正常的程序行为中没有用,我想将我的测试代码与我的类分开(因为它应该是)。

在测试时,不应该依赖绝对路径,因为它会使测试变得脆弱且不可移植。

人们应该寻找资源,而不是绝对的路径。最好使用 Class.getResource 或 Class.getResourceAsStream 进行读取。

对于前者,您可以检索 URL。如有必要,可以使用url.toExternalForm将其转回绝对路径,但是一旦您拥有所需的资源,这应该就足够了。

最新更新