1 package be
.nikiroo
.fanfix
.test
;
4 import java
.io
.FileOutputStream
;
5 import java
.io
.IOException
;
6 import java
.util
.Properties
;
8 import be
.nikiroo
.fanfix
.Instance
;
9 import be
.nikiroo
.fanfix
.bundles
.ConfigBundle
;
10 import be
.nikiroo
.utils
.IOUtils
;
11 import be
.nikiroo
.utils
.TempFiles
;
12 import be
.nikiroo
.utils
.resources
.Bundles
;
13 import be
.nikiroo
.utils
.test
.TestLauncher
;
20 public class Test
extends TestLauncher
{
22 * The temporary files handler.
24 static TempFiles tempFiles
;
27 * Create the Fanfix {@link TestLauncher}.
30 * the arguments to configure the number of columns and the ok/ko
33 public Test(String
[] args
) {
34 super("Fanfix", args
);
35 Instance
.setTraceHandler(null);
36 addSeries(new BasicSupportTest(args
));
37 addSeries(new LibraryTest(args
));
38 addSeries(new ConversionTest(args
));
42 * Main entry point of the program.
45 * the arguments passed to the {@link TestLauncher}s.
47 * in case of I/O error
49 static public void main(String
[] args
) throws IOException
{
51 tempFiles
= new TempFiles("fanfix-test");
53 File tmpConfig
= tempFiles
.createTempDir("fanfix-config");
54 File tmpCache
= tempFiles
.createTempDir("fanfix-cache");
56 FileOutputStream out
= null;
58 out
= new FileOutputStream(new File(tmpConfig
,
59 "config.properties"));
60 Properties props
= new Properties();
61 props
.setProperty("CACHE_DIR", tmpCache
.getAbsolutePath());
62 props
.store(out
, null);
69 ConfigBundle config
= new ConfigBundle();
70 Bundles
.setDirectory(tmpConfig
.getAbsolutePath());
71 config
.updateFile(tmpConfig
.getPath());
73 System
.setProperty("CONFIG_DIR", tmpConfig
.getAbsolutePath());
75 result
= new Test(args
).launch();
77 IOUtils
.deltree(tmpConfig
);
78 IOUtils
.deltree(tmpCache
);
83 // This is usually done in Fanfix.Main:
84 Instance
.getTempFiles().close();