Update nikiroo-utils, bugfixes:
[nikiroo-utils.git] / src / be / nikiroo / fanfix / test / Test.java
index 36ef701573bf9d1be5411b4216b977bbf50f307a..3ff9a7ab8d139ad3e42c46f9caed8d504021f5e7 100644 (file)
@@ -1,5 +1,14 @@
 package be.nikiroo.fanfix.test;
 
+import java.io.File;
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.util.Properties;
+
+import be.nikiroo.fanfix.Instance;
+import be.nikiroo.fanfix.bundles.ConfigBundle;
+import be.nikiroo.utils.IOUtils;
+import be.nikiroo.utils.resources.Bundles;
 import be.nikiroo.utils.test.TestLauncher;
 
 /**
@@ -8,9 +17,18 @@ import be.nikiroo.utils.test.TestLauncher;
  * @author niki
  */
 public class Test extends TestLauncher {
+       /**
+        * Create the Fanfix {@link TestLauncher}.
+        * 
+        * @param args
+        *            the arguments to configure the number of columns and the ok/ko
+        *            {@link String}s
+        */
        public Test(String[] args) {
                super("Fanfix", args);
+               Instance.setTraceHandler(null);
                addSeries(new BasicSupportTest(args));
+               addSeries(new LibraryTest(args));
        }
 
        /**
@@ -18,8 +36,35 @@ public class Test extends TestLauncher {
         * 
         * @param args
         *            the arguments passed to the {@link TestLauncher}s.
+        * @throws IOException
+        *             in case of I/O error
         */
-       static public void main(String[] args) {
-               System.exit(new Test(args).launch());
+       static public void main(String[] args) throws IOException {
+               File tmpConfig = File.createTempFile("fanfix-config_", ".test");
+               File tmpCache = File.createTempFile("fanfix-cache_", ".test");
+               tmpConfig.delete();
+               tmpConfig.mkdir();
+               tmpCache.delete();
+               tmpCache.mkdir();
+
+               FileOutputStream out = new FileOutputStream(new File(tmpConfig,
+                               "config.properties"));
+               Properties props = new Properties();
+               props.setProperty("CACHE_DIR", tmpCache.getAbsolutePath());
+               props.store(out, null);
+               out.close();
+
+               ConfigBundle config = new ConfigBundle();
+               Bundles.setDirectory(tmpConfig.getAbsolutePath());
+               config.updateFile(tmpConfig.getPath());
+
+               System.setProperty("CONFIG_DIR", tmpConfig.getAbsolutePath());
+
+               int result = new Test(args).launch();
+
+               IOUtils.deltree(tmpConfig);
+               IOUtils.deltree(tmpCache);
+
+               System.exit(result);
        }
 }