use of org.openlca.ilcd.sources.FileRef in project olca-modules by GreenDelta.
the class SourcesFileNameTest method testWindowsPath.
@Test
public void testWindowsPath() {
FileRef ref = new FileRef();
ref.uri = "C:/external_docs/mydoc.pdf";
assertEquals("mydoc.pdf", Sources.getFileName(ref));
ref.uri = "C:\\external_docs\\mydoc.pdf";
assertEquals("mydoc.pdf", Sources.getFileName(ref));
}
use of org.openlca.ilcd.sources.FileRef in project olca-modules by GreenDelta.
the class SourcesFileNameTest method testUnescapePath.
@Test
public void testUnescapePath() {
FileRef ref = new FileRef();
ref.uri = "http://mysoda.com/external_docs/my%20doc.pdf";
assertEquals("my doc.pdf", Sources.getFileName(ref));
}
Aggregations