|
1 |
| |
|
2 |
| |
|
3 |
| |
|
4 |
| |
|
5 |
| |
|
6 |
| |
|
7 |
| |
|
8 |
| |
|
9 |
| |
|
10 |
| |
|
11 |
| |
|
12 |
| |
|
13 |
| |
|
14 |
| |
|
15 |
| |
|
16 |
| |
|
17 |
| |
|
18 |
| |
|
19 |
| |
|
20 |
| |
|
21 |
| |
|
22 |
| package nu.xom.tests; |
|
23 |
| |
|
24 |
| import java.io.ByteArrayOutputStream; |
|
25 |
| import java.io.PrintStream; |
|
26 |
| import java.lang.reflect.InvocationTargetException; |
|
27 |
| import java.lang.reflect.Method; |
|
28 |
| |
|
29 |
| |
|
30 |
| |
|
31 |
| |
|
32 |
| |
|
33 |
| |
|
34 |
| |
|
35 |
| |
|
36 |
| |
|
37 |
| |
|
38 |
| public class InfoTest extends XOMTestCase { |
|
39 |
| |
|
40 |
| |
|
41 |
1
| public InfoTest(String name) {
|
|
42 |
1
| super(name);
|
|
43 |
| } |
|
44 |
| |
|
45 |
| |
|
46 |
| |
|
47 |
1
| public void testInfo() throws ClassNotFoundException, NoSuchMethodException,
|
|
48 |
| IllegalAccessException, InvocationTargetException { |
|
49 |
| |
|
50 |
1
| PrintStream systemOut = System.out;
|
|
51 |
1
| ByteArrayOutputStream out = new ByteArrayOutputStream();
|
|
52 |
1
| System.setOut(new PrintStream(out));
|
|
53 |
| |
|
54 |
1
| Class info = Class.forName("nu.xom.Info");
|
|
55 |
1
| Class[] args = {String[].class};
|
|
56 |
1
| Method main = info.getMethod("main", args);
|
|
57 |
1
| main.setAccessible(true);
|
|
58 |
1
| Object[] wrappedArgs = new Object[1];
|
|
59 |
1
| wrappedArgs[0] = new String[0];
|
|
60 |
1
| main.invoke(null, wrappedArgs);
|
|
61 |
1
| System.out.flush();
|
|
62 |
1
| System.setOut(systemOut);
|
|
63 |
1
| String output = new String(out.toByteArray());
|
|
64 |
1
| assertTrue(output.indexOf("Copyright 2002") > 0);
|
|
65 |
1
| assertEquals(19, output.indexOf(" Elliotte Rusty Harold") - output.indexOf("Copyright 2002"));
|
|
66 |
1
| assertTrue(output.indexOf("http://www.xom.nu") > 0);
|
|
67 |
1
| assertTrue(output.indexOf("General Public License") > 0);
|
|
68 |
1
| assertTrue(output.indexOf("GNU") > 0);
|
|
69 |
1
| assertTrue(output.indexOf("WITHOUT ANY WARRANTY") > 0);
|
|
70 |
1
| assertTrue(output.indexOf("without even the implied warranty") > 0);
|
|
71 |
| |
|
72 |
| } |
|
73 |
| |
|
74 |
| |
|
75 |
| } |