Small fixes:
[fanfix.git] / src / be / nikiroo / fanfix / test / Test.java
index dd412ec4ba6ae75cdd0bae436e166bcde3100b4a..614cec14ea2609f45bc9af7c2b09e6a48f7445a3 100644 (file)
@@ -8,6 +8,7 @@ import java.util.Properties;
 import be.nikiroo.fanfix.Instance;
 import be.nikiroo.fanfix.bundles.ConfigBundle;
 import be.nikiroo.utils.IOUtils;
+import be.nikiroo.utils.TempFiles;
 import be.nikiroo.utils.resources.Bundles;
 import be.nikiroo.utils.test.TestLauncher;
 
@@ -17,6 +18,11 @@ import be.nikiroo.utils.test.TestLauncher;
  * @author niki
  */
 public class Test extends TestLauncher {
+       /**
+        * The temporary files handler.
+        */
+       static TempFiles tempFiles;
+
        /**
         * Create the Fanfix {@link TestLauncher}.
         * 
@@ -41,35 +47,42 @@ public class Test extends TestLauncher {
         *             in case of I/O error
         */
        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 = null;
+               int result = 0;
+               tempFiles = new TempFiles("fanfix-test");
                try {
-                       out = new FileOutputStream(new File(tmpConfig, "config.properties"));
-                       Properties props = new Properties();
-                       props.setProperty("CACHE_DIR", tmpCache.getAbsolutePath());
-                       props.store(out, null);
-               } finally {
-                       if (out != null) {
-                               out.close();
+                       File tmpConfig = tempFiles.createTempDir("fanfix-config");
+                       File tmpCache = tempFiles.createTempDir("fanfix-cache");
+
+                       FileOutputStream out = null;
+                       try {
+                               out = new FileOutputStream(new File(tmpConfig,
+                                               "config.properties"));
+                               Properties props = new Properties();
+                               props.setProperty("CACHE_DIR", tmpCache.getAbsolutePath());
+                               props.store(out, null);
+                       } finally {
+                               if (out != null) {
+                                       out.close();
+                               }
                        }
-               }
 
-               ConfigBundle config = new ConfigBundle();
-               Bundles.setDirectory(tmpConfig.getAbsolutePath());
-               config.updateFile(tmpConfig.getPath());
+                       ConfigBundle config = new ConfigBundle();
+                       Bundles.setDirectory(tmpConfig.getAbsolutePath());
+                       config.updateFile(tmpConfig.getPath());
 
-               System.setProperty("CONFIG_DIR", tmpConfig.getAbsolutePath());
+                       System.setProperty("CONFIG_DIR", tmpConfig.getAbsolutePath());
 
-               int result = new Test(args).launch();
+                       result = new Test(args).launch();
 
-               IOUtils.deltree(tmpConfig);
-               IOUtils.deltree(tmpCache);
+                       IOUtils.deltree(tmpConfig);
+                       IOUtils.deltree(tmpCache);
+               } finally {
+                       // Test temp files
+                       tempFiles.close();
+
+                       // This is usually done in Fanfix.Main:
+                       Instance.getTempFiles().close();
+               }
 
                System.exit(result);
        }