X-Git-Url: http://git.nikiroo.be/?p=fanfix.git;a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Ftest%2FTest.java;fp=src%2Fbe%2Fnikiroo%2Ffanfix%2Ftest%2FTest.java;h=7aac0cebd78cae0cc1b8bbc7788e52981986fef3;hp=8ca8b7ca1f09a73fc09e15f7e13ad25f0c7ec9ee;hb=dabc4b957b52302c39cb6d07c6c91a1f91195d5a;hpb=f1ce03f76073d9ba0777d0f47058d614577fbe2e diff --git a/src/be/nikiroo/fanfix/test/Test.java b/src/be/nikiroo/fanfix/test/Test.java index 8ca8b7c..7aac0ce 100644 --- a/src/be/nikiroo/fanfix/test/Test.java +++ b/src/be/nikiroo/fanfix/test/Test.java @@ -18,6 +18,17 @@ import be.nikiroo.utils.test.TestLauncher; * @author niki */ public class Test extends TestLauncher { + // + // 3 files can control the test: + // - test/VERBOSE: enable verbose mode + // - test/OFFLINE: to forbid any downloading + // - test/FORCE_REFRESH: to force a clear of the cache + // + // The test files will be: + // - test/*.url: URL to download in text format, content = URL + // - test/*.story: text mode story, content = story + // + /** * The temporary files handler. */ @@ -29,14 +40,40 @@ public class Test extends TestLauncher { * @param args * the arguments to configure the number of columns and the ok/ko * {@link String}s + * + * @throws IOException */ - public Test(String[] args) { + public Test(String[] args) throws IOException { super("Fanfix", args); Instance.setTraceHandler(null); addSeries(new BasicSupportUtilitiesTest(args)); addSeries(new BasicSupportDeprecatedTest(args)); addSeries(new LibraryTest(args)); - addSeries(new ConversionTest(args)); + + File sources = new File("test/"); + if (sources.isDirectory()) { + for (File file : sources.listFiles()) { + if (file.isDirectory()) { + continue; + } + + String expectedDir = new File(file.getParentFile(), "expected_" + + file.getName()).getAbsolutePath(); + String resultDir = new File(file.getParentFile(), "result_" + + file.getName()).getAbsolutePath(); + + String uri; + if (file.getName().endsWith(".url")) { + uri = IOUtils.readSmallFile(file).trim(); + } else if (file.getName().endsWith(".story")) { + uri = file.getAbsolutePath(); + } else { + continue; + } + + addSeries(new ConversionTest(uri, expectedDir, resultDir, args)); + } + } } /** @@ -49,20 +86,33 @@ public class Test extends TestLauncher { */ static public void main(String[] args) throws IOException { Instance.init(); - //Instance.getCache().setOffline(true); - + + // Verbose mode: + boolean verbose = new File("test/VERBOSE").exists(); + + // Can force refresh + boolean forceRefresh = new File("test/FORCE_REFRESH").exists(); + + // Only download files if allowed: + boolean offline = new File("test/OFFLINE").exists(); + Instance.getCache().setOffline(offline); + int result = 0; tempFiles = new TempFiles("fanfix-test"); try { File tmpConfig = tempFiles.createTempDir("fanfix-config"); - File tmpCache = tempFiles.createTempDir("fanfix-cache"); + File localCache = new File("test/CACHE"); + if (forceRefresh) { + IOUtils.deltree(localCache); + } + localCache.mkdirs(); FileOutputStream out = null; try { out = new FileOutputStream(new File(tmpConfig, "config.properties")); Properties props = new Properties(); - props.setProperty("CACHE_DIR", tmpCache.getAbsolutePath()); + props.setProperty("CACHE_DIR", localCache.getAbsolutePath()); props.store(out, null); } finally { if (out != null) { @@ -76,10 +126,13 @@ public class Test extends TestLauncher { System.setProperty("CONFIG_DIR", tmpConfig.getAbsolutePath()); - result = new Test(args).launch(); + TestLauncher tests = new Test(args); + tests.setDetails(verbose); + + result = tests.launch(); IOUtils.deltree(tmpConfig); - IOUtils.deltree(tmpCache); + IOUtils.deltree(localCache); } finally { // Test temp files tempFiles.close();