@Test public void testReportsURLZip() throws Exception { DPFManagerProperties.setFeedback(false); String dirWeb = "http://dpfmanager.org/test/Bilevel.zip"; try { String[] args = new String[2]; args[0] = dirWeb; args[1] = "-s"; MainConsoleApp.main(args); // Wait for finish waitForFinishMultiThred(30); String path = getPath(); File directori = new File(path); assertEquals(4, directori.list().length); // Check tiff to jpg String jpgPath = path + "html/img/1-Bilevel.tif.jpg"; File jpgFile = new File(jpgPath); assertEquals(true, jpgFile.exists()); } catch (Exception ex) { ex.printStackTrace(); assertEquals(1, 0); } }
private void assertReportsFormat(String formats) throws Exception { String[] args = new String[4]; args[0] = "src/test/resources/Small/Bilevel.tif"; args[1] = "-s"; args[2] = "-reportformat"; args[3] = formats; MainConsoleApp.main(args); // Wait for finish waitForFinishMultiThred(30); String path = getPath(); File directori = new File(path); int filesExpect = (formats.split(",").length) * 2; assertEquals(directori.list().length, filesExpect); String extension = ""; boolean isXML = false; boolean isHTML = false; boolean isJSON = false; for (File file : directori.listFiles()) { extension = file.getAbsolutePath(); if (!file.isDirectory()) { if (formats.contains("xml") && !isXML) { isXML = extension.substring(extension.lastIndexOf(".")).equalsIgnoreCase(".xml"); } if (formats.contains("json") && !isJSON) { isJSON = extension.substring(extension.lastIndexOf(".")).equalsIgnoreCase(".json"); } if (formats.contains("html") && !isHTML) { isHTML = extension.substring(extension.lastIndexOf(".")).equalsIgnoreCase(".html"); } } } if (formats.contains("xml")) { assertEquals(true, isXML); } if (formats.contains("json")) { assertEquals(true, isJSON); } if (formats.contains("html")) { assertEquals(true, isHTML); } }
@Test public void testReportsFile() throws Exception { DPFManagerProperties.setFeedback(false); String[] args = new String[2]; args[0] = "src/test/resources/Small/Bilevel.tif"; args[1] = "-s"; MainConsoleApp.main(args); // Wait for finish waitForFinishMultiThred(30); String path = getPath(); File directori = new File(path); assertEquals(4, directori.list().length); }
@Test public void testHTMLTags() throws Exception { DPFManagerProperties.setFeedback(false); if (!new File("temp").exists()) { new File("temp").mkdir(); } String path = "temp/output"; int idx = 1; while (new File(path).exists()) path = "temp/output" + idx++; String[] args = new String[4]; args[0] = "src/test/resources/Small/Bilevel.tif"; args[1] = "-s"; args[2] = "-o"; args[3] = path; MainConsoleApp.main(args); // Wait for finish waitForFinishMultiThred(30); File directori = new File(path + "/html"); assertEquals(directori.exists(), true); String html = null; for (String file : directori.list()) { if (file.equals("1-Bilevel.tif.html")) { byte[] encoded = Files.readAllBytes(Paths.get(path + "/html/" + file)); html = new String(encoded); } } assertEquals(html != null, true); assertEquals(html.contains("<td>256</td><td>ImageWidth</td><td>999</td>"), true); assertEquals(html.contains("<td>257</td><td>ImageLength</td><td>662</td>"), true); assertEquals( html.contains("<td>305</td><td>Software</td><td>Adobe Photoshop CS6 (Macintosh)</td>"), true); FileUtils.deleteDirectory(new File(path)); FileUtils.deleteDirectory(new File("temp")); }