aboutsummaryrefslogtreecommitdiffstats
path: root/testing-drivers/src/org/aspectj/testing/drivers/Harness.java
blob: d1651043b274313fd26ab762434157d9916156a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
/* *******************************************************************
 * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC),
 *               2003 Contributors.
 * All rights reserved. 
 * This program and the accompanying materials are made available 
 * under the terms of the Common Public License v1.0 
 * which accompanies this distribution and is available at 
 * http://www.eclipse.org/legal/cpl-v10.html 
 *  
 * Contributors: 
 *     Xerox/PARC     initial implementation 
 *     Wes Isberg     2003 changes.
 * ******************************************************************/

package org.aspectj.testing.drivers;

import org.aspectj.bridge.IMessage;
import org.aspectj.bridge.IMessageHolder;
import org.aspectj.bridge.MessageHandler;
import org.aspectj.bridge.MessageUtil;
import org.aspectj.testing.harness.bridge.AbstractRunSpec;
import org.aspectj.testing.harness.bridge.AjcTest;
import org.aspectj.testing.harness.bridge.CompilerRun;
import org.aspectj.testing.harness.bridge.FlatSuiteReader;
import org.aspectj.testing.harness.bridge.IncCompilerRun;
import org.aspectj.testing.harness.bridge.JavaRun;
import org.aspectj.testing.harness.bridge.RunSpecIterator;
import org.aspectj.testing.harness.bridge.Sandbox;
import org.aspectj.testing.harness.bridge.Validator;
import org.aspectj.testing.run.IRun;
import org.aspectj.testing.run.IRunIterator;
import org.aspectj.testing.run.IRunListener;
import org.aspectj.testing.run.IRunStatus;
import org.aspectj.testing.run.IRunValidator;
import org.aspectj.testing.run.RunListener;
import org.aspectj.testing.run.RunStatus;
import org.aspectj.testing.run.RunValidator;
import org.aspectj.testing.run.Runner;
import org.aspectj.testing.util.BridgeUtil;
import org.aspectj.testing.util.RunUtils;
import org.aspectj.testing.util.StreamsHandler;
import org.aspectj.testing.util.StreamsHandler.Result;
import org.aspectj.testing.xml.AjcSpecXmlReader;
import org.aspectj.testing.xml.XMLWriter;
import org.aspectj.util.FileUtil;
import org.aspectj.util.LangUtil;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.io.PrintStream;
import java.io.PrintWriter;
import java.text.DecimalFormat;
import java.text.SimpleDateFormat;
import java.util.*;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.Set;
import java.util.StringTokenizer;

/**
 * Test harness for running AjcTest.Suite test suites.
 * This can be easily extended by subclassing.
 * <ul>
 * <li>template algorithms for reading arguments, printing syntax,
 *     reading suites, and reporting results all
 *     delegate to methods that subclasses can override to support
 *     additional arguments or different reporting.</li>
 * <li>implement arbitrary features as IRunListeners</li>
 * <li>support single-option aliases to any number of single-options </li>
 * </ul>
 * See {@link report(IRunStatus, int, int)} for an explanation of test result
 * categories.
 */
public class Harness {
    /** 
     * Spaces up to the width that an option should take in the syntax,
     * including the two-space leader
     */
    protected static final String SYNTAX_PAD = "                    "; 
    protected static final String OPTION_DELIM = ";";
    private static final String JAVA_VERSION;
    private static final String ASPECTJ_VERSION;
    static {
        String version = "UNKNOWN";
        try {  version = System.getProperty("java.version", "UNKNOWN"); }
        catch (Throwable t) {}
        JAVA_VERSION = version;
        
        version = "UNKNOWN";
        try {
            Class c = Class.forName("org.aspectj.bridge.Version");
            version = (String) c.getField("text").get(null);            
        } catch (Throwable t) {
            // ignore
        }
        ASPECTJ_VERSION = version;
    }
    
    /** factory for the subclass currently anointed as default */
    public static Harness makeHarness() {
        return new FeatureHarness();
    }
    
    /** @param args String[] like runMain(String[]) args */
    public static void main(String[] args) throws Exception {
        if (LangUtil.isEmpty(args)) {
            File argFile = new File("HarnessArgs.txt");
            if (argFile.canRead()) {
                args = readArgs(argFile);
            } else {
                args = new String[] { "-help" };
            }
        }
        makeHarness().runMain(args, null);
    }

    /**
     * Get known option aliases.
     * Subclasses may add new aliases, where the key is the alias option,
     * and the value is a comma-delimited String of target options.
     * @return Properties with feature aliases or null
     */
    protected static Properties getOptionAliases() {
        if (null == optionAliases) {
            optionAliases = new Properties();
            // XXX load from **OptionAliases.properties
        }
        return optionAliases;
    }

    /**
     * Read argFile contents into String[],
     * delimiting at any whitespace
     */ 
    private static String[] readArgs(File argFile) {
        ArrayList args = new ArrayList();
        int lineNum = 0;

        try {
            BufferedReader stream =
                new BufferedReader(new FileReader(argFile));
            String line;
            while (null != (line = stream.readLine())) {
                StringTokenizer st = new StringTokenizer(line);
                while (st.hasMoreTokens()) {
                    args.add(st.nextToken());
                }
            }
        } catch (IOException e) {
            e.printStackTrace(System.err);
        }    
        return (String[]) args.toArray(new String[0]);
    }
    
    /** aliases key="option" value="option{,option}" */
    private static Properties optionAliases;
    
    /** be extra noisy if true */
    private boolean verboseHarness;
    
    /** be extra quiet if true */
    private boolean quietHarness;
    
    /** just don't say anything! */
    protected boolean silentHarness;

    /** map of feature names to features */
    private HashMap features;

	/** if true, do not delete temporary files. */
	private boolean keepTemp;

    /** if true, delete temporary files as each test completes. */
    private boolean killTemp;

	/** if true, then log results in report(..) when done */
	private boolean logResults;
    
    protected Harness() {
        features = new HashMap();
    }

    
    /** 
     * Entry point for a test.
     * This reads in the arguments, 
     * creates the test suite(s) from the input file(s),
     * and for each suite does setup, run, report, and cleanup. 
     * When arguments are read, any option ending with "-" causes
     * option variants, a set of args with and another without the
     * option. See {@link LangUtil.optionVariants(String[])} for 
     * more details.
     * @param args the String[] for the test suite - use -help to get options,
     *         and use "-" suffixes for variants.
     * @param resultList List for IRunStatus results - ignored if null 
     */
    public void runMain(String[] args, List resultList) {
        LangUtil.throwIaxIfFalse(!LangUtil.isEmpty(args), "empty args");
        // read arguments
        final ArrayList globals = new ArrayList();
        final ArrayList files = new ArrayList();
        final LinkedList argList = new LinkedList();
        argList.addAll(Arrays.asList(args));
        for (int i = 0; i < argList.size(); i++) {
            String arg = (String) argList.get(i);
            List aliases = aliasOptions(arg);
            if (!LangUtil.isEmpty(aliases)) {
                argList.remove(i);
                argList.addAll(i, aliases);
                i--;
                continue;
            }
            if ("-help".equals(arg)) {
                logln("java " + Harness.class.getName() + " {option|suiteFile}..");
                printSyntax(getLogStream());
                return;
            } else if (isSuiteFile(arg)) {
                files.add(arg); 
            } else if (!acceptOption(arg)) {
                globals.add(arg); 
            } // else our options absorbed
        }
        if (0 == files.size()) {
            logln("## Error reading arguments: at least 1 suite file required");
            logln("java " + Harness.class.getName() + " {option|suiteFile}..");
            printSyntax(getLogStream());
            return;
        }
        String[] globalOptions = (String[]) globals.toArray(new String[0]);
        String[][] globalOptionVariants = LangUtil.optionVariants(globalOptions);
        AbstractRunSpec.RT runtime = new AbstractRunSpec.RT();
        if (verboseHarness) {
            runtime.setVerbose(true);
        }
        
        // run suites read from each file
        AjcTest.Suite.Spec spec;
        for (Iterator iter = files.iterator(); iter.hasNext();) {
            File suiteFile = new File((String) iter.next());
            if (!suiteFile.canRead()) {
                logln("runMain(..) cannot read file: " + suiteFile);
                continue;
            }
            if (null == (spec = readSuite(suiteFile))) {
                logln("runMain(..) cannot read suite from file: " + suiteFile);
                continue;
            }

            MessageHandler holder = new MessageHandler();
            for (int i = 0; i < globalOptionVariants.length; i++) {
                runtime.setOptions(globalOptionVariants[i]);
                holder.init();
                boolean skip = !spec.adoptParentValues(runtime, holder);                
                // awful/brittle assumption about number of skips == number of skip messages
                final List skipList = MessageUtil.getMessages(holder, IMessage.INFO, false, "skip");
                if ((verboseHarness || skip || (0 < skipList.size()))) {
                    final List curArgs = Arrays.asList(globalOptionVariants[i]);
					logln("runMain(" + suiteFile + ", " + curArgs + ")");
					doStartSuite(suiteFile);			
                    if (verboseHarness) {
                        String format = "yyyy.MM.dd G 'at' hh:mm:ss a zzz";
                        SimpleDateFormat formatter = new SimpleDateFormat (format);
                        String date = formatter.format(new Date());
                        logln("test date: " + date);
                        logln("harness features: " + listFeatureNames());
                        logln("Java version: " + JAVA_VERSION);
                        logln("AspectJ version: " + ASPECTJ_VERSION);
                    }
                    if (!(quietHarness || silentHarness) && holder.hasAnyMessage(null, true)) {
                        MessageUtil.print(getLogStream(), holder, "skip - ");
                        MessageUtil.printMessageCounts(getLogStream(), holder, "skip - ");
                    }
                }
                if (!skip) {
                    final long startTime = System.currentTimeMillis();
                    RunResult result = run(spec);
                    if (null != resultList) {
                        resultList.add(result);
                    }
                    final long elapsed = System.currentTimeMillis() - startTime; 
                    doEndSuite(suiteFile,elapsed);
                    report(result.status, skipList.size(), result.numIncomplete, elapsed);                   
                }
            }
		}
    }   
    

	/**
	 * Tell all IRunListeners that we are about to start a test suite
	 * @param suiteFile
	 * @param elapsed
	 */
	private void doEndSuite(File suiteFile, long elapsed) {
		Collection c = features.values();
		for (Iterator iter = c.iterator(); iter.hasNext();) {
			Feature element = (Feature) iter.next();
			if (element.listener instanceof TestCompleteListener) {
				((TestCompleteListener)element.listener).doEndSuite(suiteFile,elapsed);
			}
		}					
	}

	/**
	 * @param suiteFile
	 */
	private void doStartSuite(File suiteFile) {
		Collection c = features.values();
		for (Iterator iter = c.iterator(); iter.hasNext();) {
			Feature element = (Feature) iter.next();
			if (element.listener instanceof TestCompleteListener) {
				((TestCompleteListener)element.listener).doStartSuite(suiteFile);
			}
		}		
	}

	/** Run the test suite specified by the spec */
    protected RunResult run(AjcTest.Suite.Spec spec) {
        LangUtil.throwIaxIfNull(spec, "spec");
        /*
         * For each run, initialize the runner and validator,
         * create a new set of IRun{Iterator} tests,
         * and run them. 
         * Delete all temp files when done.
         */
        Runner runner = new Runner();
        if (0 != features.size()) {
            for (Iterator iter = features.entrySet().iterator(); iter.hasNext();) {
                Feature feature = (Feature) ((Map.Entry) iter.next()).getValue();
                runner.registerListener(feature.clazz, feature.listener);
            }
        }
        IMessageHolder holder = new MessageHandler();
        int numIncomplete = 0;
        RunStatus status = new RunStatus(holder, runner);
        status.setIdentifier(spec);
        // validator is used for all setup in entire tree...
        Validator validator = new Validator(status);
        if (!killTemp) {
            validator.lock(this);
        }
        Sandbox sandbox = null;
        try {
            sandbox = new Sandbox(spec.getSuiteDirFile(), validator);
            IRunIterator tests = spec.makeRunIterator(sandbox, validator);
            runner.runIterator(tests, status, null);
            if (tests instanceof RunSpecIterator) {
                numIncomplete = ((RunSpecIterator) tests).getNumIncomplete();
            }
        } finally {
        	if (!keepTemp) {
                if (!killTemp) {
                    validator.unlock(this);
                }
	            validator.deleteTempFiles(verboseHarness);
        	}
        }
        return new RunResult(status, numIncomplete);
    }
    
    /** 
     * Report the results of a test run after it is completed.
     * Clients should be able to identify the number of:
     * <ul>
     * <li>tests run and passed</li>
     * <li>tests failed, i.e., run and not passed (fail, error, etc.)</li>
     * <li>tests incomplete, i.e., test definition read but test run setup failed</li>
     * <li>tests skipped, i.e., test definition read and found incompatible with
     *     the current configuration.</li>
     * <ul>
     * 
     * @param status returned from the run
     * @param numSkipped int tests that were skipped because of 
     *         configuration incompatibilities
     * @param numIncomplete int tests that failed during setup,
     *         usually indicating a test definition or configuration error.
     * @param msElapsed elapsed time in milliseconds
     * */
    protected void report(IRunStatus status, int numSkipped, int numIncomplete, 
        long msElapsed ) {
    	if (logResults) {
            RunUtils.AJCSUITE_PRINTER.printRunStatus(getLogStream(), status);
        } else if (!(quietHarness || silentHarness) && (0 < status.numMessages(null, true))) {
        	if (!silentHarness) {
            	MessageUtil.print(getLogStream(), status, "");    
        	}
        }
        
       	logln(BridgeUtil.childString(status, numSkipped, numIncomplete) 
            + " " + (msElapsed/1000) + " seconds");
        
    }

    // --------------- delegate methods
    protected void logln(String s) {
    	if (!silentHarness) {
        	getLogStream().println(s);
    	}
    }
    
    protected PrintStream getLogStream() {
        return System.out;
    }
    
    protected boolean isSuiteFile(String arg) {
        return ((null != arg) 
                && (arg.endsWith(".txt") || arg.endsWith(".xml"))
                && new File(arg).canRead());
    }
    
    /** 
     * Get the options that the input option is an alias for.
     * Subclasses may add options directly to the getFeatureAliases result
     * or override this.
     * @return null if the input is not an alias for other options,
     * or a non-empty List (String) of options that this option is an alias for 
     */
    protected List aliasOptions(String option) {
        Properties aliases = Harness.getOptionAliases();
        if (null != aliases) {
            String args = aliases.getProperty(option);
            if (!LangUtil.isEmpty(args)) {
                return LangUtil.anySplit(args, OPTION_DELIM);
            }
        }
        return null;
    }

    /** 
     * Read and implement any of our options.
     * Options other than this and suite files will be
     * passed down as parent options through the test spec hierarchy.
     * Subclasses override this to implement new options.
     */
    protected boolean acceptOption(String option) {
        boolean result = false;
        if (LangUtil.isEmpty(option)) {
            return true; // skip bad input
        } else if ("-verboseHarness".equals(option)) {
            verboseHarness = true;
		} else if ("-quietHarness".equals(option)) {
			quietHarness = true;
		} else if ("-silentHarness".equals(option)) {
			silentHarness = true;
        } else if ("-keepTemp".equals(option)) {
            keepTemp = true; 
        } else if ("-killTemp".equals(option)) {
            killTemp = true; 
        } else if ("-logResults".equals(option)) {
            logResults = true; 
        } else {
	        return false;
        }
        return true;    
    }    
    
    /** 
     * Read a test suite file.
     * This implementation knows how to read .txt and .xml files
     * and logs any errors.
     * Subclasses override this to read new kinds of suites.
     * @return null if unable to read (logging errors) or AjcTest.Suite.Spec otherwise
     */
    protected AjcTest.Suite.Spec readSuite(File suiteFile) {
        if (null != suiteFile) {
            String path = suiteFile.getPath();
            try {
                if (path.endsWith(".xml")) {
                    return AjcSpecXmlReader.getReader().readAjcSuite(suiteFile);
                } else if (path.endsWith(".txt")) {
                    return FlatSuiteReader.ME.readSuite(suiteFile);
                } else {
                    logln("unrecognized extension? " + path);
                }
            } catch (IOException e) {
                e.printStackTrace(getLogStream());
            }
        }
        return null;
    }
    
    /** Add feature to take effect during the next runMain(..) invocation.
     * @param feature the Feature to add, using feature.name as key.
     */
    protected void addFeature(Feature feature) {
        if (null != feature) {
            features.put(feature.name, feature);
        }
    }
    
    /** remove feature by name (same as feature.name) */
    protected void removeFeature(String name) {
        if (!LangUtil.isEmpty(name)) {
            features.remove(name);
        }
    }
    
    /** @return unmodifiable Set of feature names */
    protected Set listFeatureNames() {
        return Collections.unmodifiableSet(features.keySet());
    }

    /** print detail message for syntax of main(String[]) command-line */
    protected void printSyntax(PrintStream out) {
        out.println("  {??}              unrecognized options are used as test spec globals");
        out.println("  -help             print this help message");
        out.println("  -verboseHarness   harness components log verbosely");
        out.println("  -quietHarness     harness components suppress logging");
        out.println("  -keepTemp         do not delete temporary files");
        out.println("  -logResults       log results at end, verbosely if fail");
        out.println("  {suiteFile}.xml.. specify test suite XML file");
        out.println("  {suiteFile}.txt.. specify test suite .txt file (deprecated)");
    }

    /** print known aliases at the end of the syntax message */
    protected void printAliases(PrintStream out) {
        LangUtil.throwIaxIfNull(out, "out");
        Properties props = getOptionAliases();
        if (null == props) {
            return;
        }
        int pdLength = SYNTAX_PAD.length();
        Set entries = props.entrySet();
        for (Iterator iter = entries.iterator(); iter.hasNext();) {
			Map.Entry entry = (Map.Entry) iter.next();
			String alias = "  " + (String) entry.getKey();
            int buf = pdLength - alias.length();
            if (0 < buf) {
                alias += SYNTAX_PAD.substring(0, buf);
            } else {
                alias += " ";
            }
            out.println(alias + entry.getValue());
        }
    }
    
    /** result struct for run(AjcTest.Spec) */
    public static class RunResult {
        public final IRunStatus status;
        public final int numIncomplete;
        public RunResult(IRunStatus status, int numIncomplete) {
            this.status = status;
            this.numIncomplete = numIncomplete;
        }
    }
    /** feature implemented as named IRunIterator/IRun association */
    public static class Feature {
        /** never null, always assignable to IRun */
        public final Class clazz;
        
        /** never null */
        public final IRunListener listener;
        
        /** never null or empty */
        public final String name;
        
        /** @throws IllegalArgumentException if any is null/empty or clazz is
         *           not assignable to IRun
         */
        public Feature(String name, Class clazz, IRunListener listener) {
            LangUtil.throwIaxIfNull(clazz, "class");
            if (!IRun.class.isAssignableFrom(clazz)
                && !IRunIterator.class.isAssignableFrom(clazz)) {
                String s = clazz.getName() + "is not assignable to IRun or IRunIterator";
                LangUtil.throwIaxIfFalse(false, s);
            }
            LangUtil.throwIaxIfNull(listener, "listener");
            LangUtil.throwIaxIfNull(name, "name");
            LangUtil.throwIaxIfFalse(0 < name.length(), "empty name");        
            this.clazz = clazz;
            this.listener = listener;
            this.name = name;
        }
        
        /** @return feature name */
        public String toString() {
            return name;
        }
    }
}


/** 
 * Harness with features for controlling output
 * (logging results and hiding streams).
 * Use -help to get a list of feature options.
 */
class FeatureHarness extends Harness {

    private static final String[] ALIASES = new String[] 
        { "-hideStreams", 
            "-hideCompilerStreams" 
            + OPTION_DELIM + "-hideRunStreams",
          "-jim", 
            "-logMinFail"   
            + OPTION_DELIM + "-hideStreams",
          "-loud", 
            "-verboseHarness",
          "-baseline", 
            "-verboseHarness" 
            + OPTION_DELIM + "-traceTestsMin" 
            + OPTION_DELIM + "-hideStreams",
          "-release", 
              "-baseline" 
              + OPTION_DELIM + "-ajctestSkipKeywords=knownLimitation,purejava",
          "-junit",
          	  "-silentHarness" + OPTION_DELIM + "-logJUnit" + OPTION_DELIM +
          	  "-hideStreams", 
          "-cruisecontrol",
          	  "-junit" + OPTION_DELIM + "-ajctestSkipKeywords=knownLimitation,purejava"
        };
    static {
        Properties optionAliases = Harness.getOptionAliases();
        if (null != optionAliases) {
            for (int i = 1; i < ALIASES.length; i += 2) {
                optionAliases.put(ALIASES[i-1], ALIASES[i]);
			}
        }
    }

    /** controller for suppressing and sniffing error and output streams. */
    StreamsHandler streamsHandler; 

    /** facility of hiding-streams may be applied in many features */
    IRunListener streamHider;

    /** facility of capture/log may be applied in many features */
    IRunListener captureLogger;
    
    /** when making tests, do not run them */
    TestMaker testMaker;
    
    public FeatureHarness() {
        super();
        streamsHandler = new StreamsHandler(false, true);
    }
    /** override to make tests or run as usual */
    protected RunResult run(AjcTest.Suite.Spec spec) {
        if (null != testMaker) {
            System.out.println("generating rather than running tests...");
            return testMaker.run(spec);
        } else {
            return super.run(spec);
        }
    }

    /**
     * Log via StreamsHandler-designated log stream.
     * @see org.aspectj.testing.drivers.Harness#log(String)
	 */
	protected void logln(String s) {
		if (!silentHarness)
        	streamsHandler.lnlog(s);
	}

    /**
	 * @see org.aspectj.testing.drivers.Harness#getLogStream()
     * @return StreamsHandler-designated log stream.
	 */
	protected PrintStream getLogStream() {
		return streamsHandler.out;
	}


    /** print detail message for syntax of main(String[]) command-line */
    protected void printSyntax(PrintStream out) {
        super.printSyntax(out);
        out.println("  -progressDots     log . or ! for each AjcTest pass or fail");
        out.println("  -logFail          log each failed AjcTest");
        out.println("  -logPass          log each passed AjcTest");
        out.println("  -logAll           log each AjcTest");
        out.println("  -logMinFail       log each AjcTest failure with minimal excess data");
        out.println("  -logMinPass       log each AjcTest success with minimal excess data");
        out.println("  -logMinAll        log all AjcTest with minimal excess data");
        out.println("  -logXMLFail       log XML definition for each failed AjcTest");
        out.println("  -logXMLPass       log XML definition for each passed AjcTest");
        out.println("  -logXMLAll        log XML definition for each AjcTest");
        out.println("  -logJUnit         log all tests in JUnit XML report style");
        out.println("  -hideRunStreams   hide err/out streams during java runs");
        out.println("  -hideCompilerStreams   hide err/out streams during compiler runs");
        out.println("  -traceTests       log pass|fail, /time/memory taken after each test");
        out.println("  -traceTestsMin    log pass|fail after each test");
        out.println("  -XmakeTests       create source files/dirs for initial compile run of each test");
        out.println("  -XlogPublicType   log test XML if \"public type\" in an error message");
        out.println("  -XlogSourceIn=Y,Z log test XML if Y or Z is in path of any sources");
        super.printAliases(out);
    }

    /** Accept a number of logging and output options */
	protected boolean acceptOption(String option) {
        if (null == option) {
            return false;
        }
        
        final StreamsHandler streams = streamsHandler;
        final IRunValidator validator = RunValidator.NORMAL;
        final RunUtils.IRunStatusPrinter verbose 
            = RunUtils.VERBOSE_PRINTER;
        final RunUtils.IRunStatusPrinter terse 
            = RunUtils.TERSE_PRINTER;
        final boolean LOGPASS = true;
        final boolean LOGFAIL = true;
        final boolean SKIPPASS = false;
        final boolean SKIPFAIL = false;
        final boolean LOGSTREAMS = true;
        final boolean SKIPSTREAMS = false;
        
		Feature feature = null;
        if (super.acceptOption(option)) {
            // ok, result returned below
            
        } else if ("-XmakeTests".equals(option)) {
            testMaker = TestMaker.ME;
        } else if (option.startsWith("-traceTestsMin")) {
            feature = new Feature(option, AjcTest.class,new TestTraceLogger(streams, false));
        } else if (option.startsWith("-traceTests")) {
            feature = new Feature(option, AjcTest.class,new TestTraceLogger(streams, true));
        } else if (option.startsWith("-logMin")) {
            feature = new Feature(option, AjcTest.class, 
                new RunLogger(option, SKIPSTREAMS, streams, validator, terse));
        } else if (option.startsWith("-logXML")) {
            feature = new Feature(option, AjcTest.class, 
                new XmlLogger(option, streams, validator));
        } else if (option.startsWith("-logJUnit")) {
        	feature = new Feature(option, AjcTest.class,
        		new JUnitXMLLogger(option,streams,validator));
        } else if (option.startsWith("-log")) {
            feature = new Feature(option, AjcTest.class, 
                new RunLogger(option, SKIPSTREAMS, streams, validator, verbose));
        } else if ("-hideRunStreams".equals(option)) {
            feature = new Feature(option, JavaRun.class, getStreamHider());       
        } else if ("-hideCompilerStreams".equals(option)) {
            addFeature(new Feature(option, IncCompilerRun.class, getStreamHider()));   // hmmm    
            feature = new Feature(option, CompilerRun.class, getStreamHider());       
        } else if ("-progressDots".equals(option)) {
            IRunListener listener = new RunListener() {
				public void runCompleted(IRunStatus run) {
                    streamsHandler.log((validator.runPassed(run) ? "." : "!"));
				}
            };
            feature = new Feature(option, AjcTest.class, listener);       
        } else if (option.startsWith("-XlogPublicType")) {
            String label = option + TestCompleteListener.PASS; // print when validator true
            feature = new Feature(option, AjcTest.class, 
                new XmlLogger(label, streams, MessageRunValidator.PUBLIC_TYPE_ERROR));
        } else if (option.startsWith("-XlogSourceIn")) {
            String input = option.substring("-XlogSourceIn=".length());
            LangUtil.throwIaxIfFalse(0 < input.length(), option);
            String label = "-XlogSourceIn="  + TestCompleteListener.PASS; // print when validator true
            StringRunner sr = new SubstringRunner(input, false);
            feature = new Feature(option, AjcTest.class, 
                new XmlLogger(label, streams, new SourcePathValidator(sr)));
        } else {
            return false;
        }       
        addFeature(feature);
        return true;
	}

    /** lazy construction for shared hider */
    protected IRunListener getStreamHider() {
        if (null == streamHider) {
            streamHider =  new RunListener() {
                public void runStarting(IRunStatus run) {
                    streamsHandler.hide();
                }
                public void runCompleted(IRunStatus run) {
                    streamsHandler.show();
                }
                public String toString() { return "Harness StreamHider"; }
            };
        }
        return streamHider;
    }
}

/** Generate any needed test case files for any test. */
class TestMaker  {
    
    static TestMaker ME = new TestMaker();
    
    /** @throws Error if unable to make dir */
    static void mkdirs(File dir) {
        if (null != dir && !dir.exists()) {
            if (!dir.mkdirs()) {
                throw new Error("unable to make dir: " + dir);
            }
        }
    }
    static String getFileContents(File baseDir, File file, String label) {
        String fileName = file.getName();
        if (fileName.endsWith(".java")) {
            fileName = fileName.substring(0, fileName.length() - 5);
        }
        StringBuffer sb = new StringBuffer();
        String filePath = file.getParentFile().getAbsolutePath();
        String dirPath = baseDir.getAbsolutePath();
        String pack = null;
        if (filePath.startsWith(dirPath)) {
            pack = filePath.substring(dirPath.length()).replace('/', '.');
        }
        if (!LangUtil.isEmpty(pack)) {
           sb.append("package " + pack + ";");
        }
        final String EOL = "\n"; // XXX find discovered EOL
        sb.append( EOL 
            + EOL + "import org.aspectj.testing.Tester;"
            + EOL + ""
            + EOL + "/** @testcase " + label + " */"
            + EOL + "public class " + fileName + " {"
            + EOL + "\tpublic static void main(String[] args) { "
            + EOL + "\t\tTester.check(null != args, \"null args\"); "
            + EOL + "\t}"
            + EOL + "}"
            + EOL 
            );
            
        return sb.toString();
    }
    
    /** create a minimal source file for a test */
    static void createSrcFile(File baseDir, File file, String testName) {
        if (file.exists()) {
            return;
        }
        String contents = getFileContents(baseDir, file, testName);
        String error = FileUtil.writeAsString(file, contents);
        if (null != error) {
            throw new Error(error);
        }
    }
    
    /** create an empty arg file for a test */
    static void createArgFile(File baseDir, File file, String testName) {
        if (file.exists()) {
            return;
        }
        String contents = "// argfile " + file;
        String error = FileUtil.writeAsString(file, contents);
        if (null != error) {
            throw new Error(error);
        }
    }
	
    public Harness.RunResult run(AjcTest.Suite.Spec spec) {
        ArrayList kids = spec.getChildren();
        for (Iterator iter = kids.iterator(); iter.hasNext();) {
			makeTest( (AjcTest.Spec) iter.next());			
		}
        IRunStatus status = new RunStatus(new MessageHandler(), new Runner());
        status.start();
        status.finish(IRunStatus.PASS);
        return new Harness.RunResult(status, 0);
    }
    
    private void makeTest(AjcTest.Spec spec) {
        CompilerRun.Spec compileSpec = AjcTest.unwrapCompilerRunSpec(spec);
        if (null == spec) {
            throw new Error("null spec");
        }
        System.out.println("  generating test files for test: " + spec.getDescription());
        File dir = spec.getSuiteDir();
        if (null != dir) {
            TestMaker.mkdirs(dir);
        }
        String offset = spec.getTestDirOffset();
        if (!LangUtil.isEmpty(offset)) {
            if (null == dir) {
                dir = new File(offset);
            } else {
                dir = new File(dir.getAbsolutePath() + "/" + offset);
            }
        } else if (null == dir) {
            dir = new File(".");
        }
        StringBuffer testName = new StringBuffer();
        int pr = spec.getBugId();
        if (0 < pr) {
            testName.append("PR#" + pr + " ");
        }
        
        testName.append(spec.getDescription());
        final String label = testName.toString();
        final File[] srcFiles = FileUtil.getBaseDirFiles(dir, compileSpec.getPathsArray());
        if (!LangUtil.isEmpty(srcFiles)) {
            for (int i = 0; i < srcFiles.length; i++) {
                TestMaker.createSrcFile(dir, srcFiles[i], label);            
            }
        }
        final File[] argFiles = FileUtil.getBaseDirFiles(dir, compileSpec.getArgfilesArray());
        if (!LangUtil.isEmpty(argFiles)) {
            for (int i = 0; i < argFiles.length; i++) {
                TestMaker.createArgFile(dir, argFiles[i], label);            
            }
        }
        
	}
    
    /** @return "Testmaker()" */    
    public String toString() {
        return "TestMaker()";
    }
}

interface StringRunner {
    boolean accept(String s);
}

/**
 * StringRunner than accepts input matching 0+ substrings,
 * optionally case-insensitive.
 */
class SubstringRunner implements StringRunner {
    private static String[] extractSubstrings(
            String substrings, 
            boolean caseSensitive) {
        if (null == substrings) {
            return null;
        }
        StringTokenizer st = new StringTokenizer(substrings, ",");
        String[] result = new String[st.countTokens()];
        for (int i = 0; i < result.length; i++) {
			result[i] = st.nextToken().trim();
		    LangUtil.throwIaxIfFalse(0 < result[i].length(), "empty entry");
            if (!caseSensitive) {
                result[i] = result[i].toLowerCase();
            }
        }
        return result;
    }
    
    private final String[] substrings;
    private final boolean caseSensitive;
    
    /**
     * @param substrings the String containing comma-separated substrings
     *                    to find in input - if null, any input accepted
     * @param caseSensitive if true, do case-sensitive comparison
     * @throws IllegalArgumentException if any substrings contains empty entry ", ,"
     */
    SubstringRunner(String substrings, boolean caseSensitive) {
        this.caseSensitive = caseSensitive;
        this.substrings = extractSubstrings(substrings, caseSensitive); 
    }
    
    public boolean accept(String input) {
        if (null == substrings) {
            return true;
        }
        if (null == input) {
            return false;
        }
        
        if (!caseSensitive) {
            input = input.toLowerCase();
        }
        for (int i = 0; i < substrings.length; i++) {
			if (-1 != input.indexOf(substrings[i])) {
                return true;
            }
		}
        return false;
    }
}

/** 
 * Signal whether run "passed" based on validating absolute source paths.
 * (Static evaluation - no run necessary)
 */
class SourcePathValidator implements IRunValidator { // static - no run needed
    private final StringRunner validator;
    // XXX hoist common
    SourcePathValidator(StringRunner validator) {
        LangUtil.throwIaxIfNull(validator, "validator");
        this.validator = validator;        
    }
    /**
     * @return true if any source files in compile spec are
     *          accepted by the validator.
	 * @see org.aspectj.testing.run.IRunValidator#runPassed(IRunStatus)
	 */
	public boolean runPassed(IRunStatus run) {
        AjcTest.Spec testSpec = AjcTest.unwrapSpec(run);
        if (null != testSpec) {
            CompilerRun.Spec compileSpec = AjcTest.unwrapCompilerRunSpec(testSpec);
            File basedir = new File(testSpec.getSuiteDir(), testSpec.getTestDirOffset());
            String[] paths = compileSpec.getPathsArray();
            File[] files = FileUtil.getBaseDirFiles(basedir, paths);
            for (int i = 0; i < files.length; i++) {
				if (validator.accept(files[i].getAbsolutePath())) {
                    return true;
                }
			}
        }
		return false;
	}
    
}

/** Signal whether run "passed" based on message kind and content */
class MessageRunValidator implements IRunValidator {
    
    /** signals "passed" if any error contains "public type" */
    static final IRunValidator PUBLIC_TYPE_ERROR 
        = new MessageRunValidator("public type", IMessage.ERROR, false);
    
    private final IMessage.Kind kind;
    private final String sought;
    private final boolean orGreater;
    
    /**
     * @param sought the String to seek anywhere in any message of the right kind
     *         if null, accept any message of the right kind.
     * @param kind the IMessage.Kind of messages to search - all if null
     */
    MessageRunValidator(String sought, IMessage.Kind kind, boolean orGreater) {
        this.sought = sought;
        this.kind = kind;
        this.orGreater = orGreater;
    }
    
    /** @return true if this run has messages of the right kind and text */
	public boolean runPassed(IRunStatus run) {
        return gotMessage(new IRunStatus[] {run});
    }
    
    /**
     * Search these children and their children recursively
     * for messages of the right kind and content.
     * @return true at first match of message of the right kind and content
     */
    private boolean gotMessage(IRunStatus[] children) {
        if (LangUtil.isEmpty(children)) {
            return false;
        }
        for (int i = 0; i < children.length; i++) {
			IRunStatus run = children[i];
            if (null == run) {
                continue; // hmm
            }
            IMessage[] messages = run.getMessages(kind, orGreater);
            if (!LangUtil.isEmpty(messages)) {
                if (LangUtil.isEmpty(sought)) {
                    return true;
                } else {
                    for (int j = 0; j < messages.length; j++) {
                        if (null == messages[j]) {
                            continue; // hmm
                        }
            			String text = messages[j].getMessage();
                        if ((null != text) && (-1 != text.indexOf(sought))) {
                            return true;
                        }
                    }
                }
    		}
            if (gotMessage(run.getChildren())) {
                return true;
            }
        }
    	return false;
	}
}

/** 
 * Base class for listeners that run depending on pass/fail status of input.
 * Template method runCompleted handled whether to run.
 * Subclasses implement doRunCompleted(..).
 */
abstract class TestCompleteListener extends RunListener {
    /** label suffix indicating both pass and fail */
    public static final String ALL = "All";

    /** label suffix indicating fail */
    public static final String FAIL = "Fail";

    /** label suffix indicating pass */
    public static final String PASS = "Pass";
    

    /** runValidator determines if a given run passed */
    protected final IRunValidator runValidator;

    /** label for this listener */
    final String label;
    
    /** if trun and run passed, then run doRunCompleted(..) */
    final boolean logOnPass;

    /** if true and run did not pass, then run doRunCompleted(..) */
    final boolean logOnNotPass;

    /** may be null */
    protected final StreamsHandler streamsHandler;
    
    /** true if the last run evaluation was ok */
    boolean lastRunOk;
    
    /** last run evaluated */
    IRunStatus lastRun; // XXX small memory leak - cache hashcode instead?
    
    /** @param label endsWith PASS || FAIL || ALL */
    protected TestCompleteListener(
        String label, 
        IRunValidator runValidator,
        StreamsHandler streamsHandler) {
        if (null == runValidator) {
            runValidator = RunValidator.NORMAL;
        }
        this.label = (null == label? "" : label);
        this.logOnPass = label.endsWith(PASS) || label.endsWith(ALL);
        this.logOnNotPass = label.endsWith(FAIL) || label.endsWith(ALL);
        this.runValidator = runValidator;
        this.streamsHandler = streamsHandler;
    }
    
    public void runStarted(IRunStatus run) {
        if (null != streamsHandler) {
            streamsHandler.startListening();
        }
    }
    
    /** subclasses implement this to do some per-test initialization */
    protected void doRunStarted(IRunStatus run) {
    }
    
    
    /** subclasses implement this to do some per-suite initialization */
    protected void doStartSuite(File suite) {
    }
    
    /** subclasses implement this to do end-of-suite processing */
    protected void doEndSuite(File suite, long duration) {
    }

    public final void runCompleted(IRunStatus run) {
        boolean doit = lastRunOk(run);
        StreamsHandler.Result result = null;
        if (null != streamsHandler) {
            streamsHandler.endListening(doit);
        }
        if (doit) {
            doRunCompleted(run, result);
        }
    }

    /**
     * @return true if run is ok per constructor specifications
     */
    protected boolean lastRunOk(IRunStatus run) {
        if (lastRun != run) {
            boolean passed = runValidator.runPassed(run);
            lastRunOk = (passed ? logOnPass : logOnNotPass);
        }
        return lastRunOk;
    }

    /** @return "{classname}({pass}{,fail})" indicating when this runs */    
    public String toString() { // XXX add label?
        return LangUtil.unqualifiedClassName(this)
            + "(" + (logOnPass ? (logOnNotPass ? "pass, fail)" : "pass)") 
                                       : (logOnNotPass ? "fail)" : ")"));
    }
    /** 
     * Subclasses implement this to do some completion action 
     * @param run the IRunStatus for this completed run
     * @param result the StreamsHandler.Result (if any - may be null)
     */
    public abstract void doRunCompleted(IRunStatus run, StreamsHandler.Result result);
}

/** 
 * Write XML for any test passed and/or failed.
 * Must register with Runner for RunSpecIterator.class,
 * most sensibly AjcTest.class.
 */
class XmlLogger extends TestCompleteListener {
    /** 
     * @param printer the component that prints any status - not null
     * @param runValidator if null, use RunValidator.NORMAL
     */
    public XmlLogger(
        String label,
        StreamsHandler streamsHandler, 
        IRunValidator runValidator) {
        super(label, runValidator, streamsHandler);
    }
    
    public void doRunCompleted(IRunStatus run, StreamsHandler.Result result) {
        PrintStream out = streamsHandler.getLogStream();
        out.println("");
        XMLWriter writer = new XMLWriter(new PrintWriter(out, true));
        Object id = run.getIdentifier();
        if (!(id instanceof Runner.IteratorWrapper)) {                
            out.println(this + " not IteratorWrapper: " 
                + id.getClass().getName() + ": " + id);
            return;
        }
        IRunIterator iter = ((Runner.IteratorWrapper) id).iterator;
        if (!(iter instanceof RunSpecIterator)) {                
            out.println(this + " not RunSpecIterator: " + iter.getClass().getName()
                + ": " + iter);
            return;
        }
        ((RunSpecIterator) iter).spec.writeXml(writer);
        out.flush();
    }
    
}

/**
 * Write junit style XML output (for incorporation into html test results and
 * cruise control reports
 * format is...
 * <?xml version="1.0" encoding="UTF-8" ?>
 * <testsuite errors="x" failures="x" name="suite-name" tests="xx" time="ss.ssss">
 * <properties/>
 * <testcase name="passingTest" time="s.hh"></testcase>
 * <testcase name="failingTest" time="s.hh">
 *   <failure message="failureMessage" type="ExceptionType">free text</failure>
 * </testcase>
 * </testsuite>
 */
class JUnitXMLLogger extends TestCompleteListener {

  private File suite;
  private StringBuffer junitOutput;
  private long startTimeMillis;
  private int numTests = 0;
  private int numFails = 0;
  private DecimalFormat timeFormatter = new DecimalFormat("#.##");

  public JUnitXMLLogger(        
  	String label,
  	StreamsHandler streamsHandler, 
  	IRunValidator runValidator) {
  		super(label + ALL, runValidator, streamsHandler);
  		junitOutput = new StringBuffer();	
  }
  
	/* (non-Javadoc)
	 * @see org.aspectj.testing.drivers.TestCompleteListener#doRunCompleted(org.aspectj.testing.run.IRunStatus, org.aspectj.testing.util.StreamsHandler.Result)
	 */
	public void doRunCompleted(IRunStatus run, Result result) {		
		long duration = System.currentTimeMillis()  - startTimeMillis;
		numTests++;
		junitOutput.append("<testcase name=\"" + run.getIdentifier() + "\" ");
		junitOutput.append("time=\"" + timeFormatter.format(((float)duration)/1000.0) + "\"");
		junitOutput.append(">");
		if (!run.runResult())  {
			numFails++;
			junitOutput.append("\n");
			junitOutput.append("<failure message=\"test failed\" type=\"unknown\">\n");
//			junitOutput.println(result.junitOutput);
//			junitOutput.println(result.err);
			junitOutput.append("</failure>\n");
		}
		junitOutput.append("</testcase>\n");
	}

	/* (non-Javadoc)
	 * @see org.aspectj.testing.drivers.TestCompleteListener#runStarted(org.aspectj.testing.run.IRunStatus)
	 */
	public void runStarting(IRunStatus run) {
		 super.runStarting(run);		
		 startTimeMillis = System.currentTimeMillis();
	}

	/* (non-Javadoc)
	 * @see org.aspectj.testing.drivers.TestCompleteListener#doEndSuite(java.io.File, long)
	 */
	protected void doEndSuite(File suite, long duration) {
		super.doEndSuite(suite, duration);
		String suiteName = suite.getName();
		// junit reporter doesn't like ".xml" on the end
		suiteName = suiteName.substring(0,suiteName.indexOf('.'));
		PrintStream out = streamsHandler.getLogStream();
		out.println("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
		String timeStr = new DecimalFormat("#.##").format(duration/1000.0);					
		out.print("<testsuite errors=\"" + numFails + "\" failures=\"0\" ");
		out.print("name=\"" + suite.getName() + "\" " );
		out.println("tests=\"" + numTests + "\" time=\"" + timeStr + "\">");
		out.print(junitOutput.toString());
		out.println("</testsuite>");	
	}

	/* (non-Javadoc)
	 * @see org.aspectj.testing.drivers.TestCompleteListener#doStartSuite(java.io.File)
	 */
	protected void doStartSuite(File suite) {
		super.doStartSuite(suite);
		this.suite = suite;
		numTests = 0;
		numFails = 0;
		junitOutput = new StringBuffer();
	}

}

/** log pass and/or failed runs */
class RunLogger extends TestCompleteListener {
    final boolean logStreams;
    final RunUtils.IRunStatusPrinter printer;

    /** 
     * @param printer the component that prints any status - not null
     * @param runValidator if null, use RunValidator.NORMAL
     */
    public RunLogger(
        String label,
        boolean logStreams,
        StreamsHandler streamsHandler,
        IRunValidator runValidator,
        RunUtils.IRunStatusPrinter printer) {
        super(label, runValidator, streamsHandler);
        LangUtil.throwIaxIfNull(streamsHandler, "streamsHandler");
        LangUtil.throwIaxIfNull(printer, "printer");
        this.logStreams = logStreams;
        this.printer = printer;
    }

    public void doRunCompleted(IRunStatus run, StreamsHandler.Result result) {
        PrintStream out = streamsHandler.getLogStream();
        printer.printRunStatus(out, run);
        if (logStreams) {
            if (!LangUtil.isEmpty(result.err)) {
                out.println("--- error");
                out.println(result.err); 
            }
            if (!LangUtil.isEmpty(result.out)) {
                out.println("--- ouput");
                out.println(result.out); 
            }
        }
        out.println("");
    }
}

/** trace time and memory between runStaring and runCompleted */
class TestTraceLogger extends TestCompleteListener {
    private static final Runtime runtime = Runtime.getRuntime();
    private long startTime;
    private long startMemoryFree;
    private final boolean verbose;
    
    public TestTraceLogger(StreamsHandler handler) {
        this(handler, true);
    }
    public TestTraceLogger(StreamsHandler handler, boolean verbose) {
        super("-traceTestsAll", null, handler);
        this.verbose = verbose;
    }
    public void runStarting(IRunStatus run) {
        super.runStarting(run);
        startTime = System.currentTimeMillis();
        startMemoryFree = runtime.freeMemory();    
    }
    
    public void doRunCompleted(IRunStatus run, StreamsHandler.Result result) {
        long elapsed = System.currentTimeMillis() - startTime;
        long free = runtime.freeMemory();
        long used = startMemoryFree - free;
        String label = run.runResult() ? "PASS " : "FAIL ";
        PrintStream out = streamsHandler.getLogStream();
        if (verbose) {
            label = label
                    + "elapsed: " + LangUtil.toSizedString(elapsed, 7)
                    + " free: " + LangUtil.toSizedString(free, 10)
                    + " used: " + LangUtil.toSizedString(used, 10)
                    + " id: ";
        }
        out.println(label + renderId(run));
    }
    
    /** @return true - always trace tests */
    protected boolean isFailLabel(String label) {
        return true;
    }
    
    /** @return true - always trace tests */
    protected boolean isPassLabel(String label) {
        return true;
    }

    /**
     * This implementation returns run identifier toString(). 
     * Subclasses override this to render id as message suffix.
     */
    protected String renderId(IRunStatus run) {
        return "" + run.getIdentifier();
    }
}
        // printing files
//        AjcTest.Spec testSpec = AjcTest.unwrapSpec(run);
//        if (null != testSpec) {
//            CompilerRun.Spec compileSpec = AjcTest.unwrapCompilerRunSpec(testSpec);
//            File dir = new File(testSpec.getSuiteDir(), testSpec.getTestDirOffset());
//            List files = compileSpec.getPathsAsFile(dir);
//            StringBuffer sb = new StringBuffer();
//            for (Iterator iter = files.iterator(); iter.hasNext();) {
//                File file = (File) iter.next();
//                sb.append(" " + file.getPath().replace('\\','/').substring(2));         
//            }
//            out.println("files: " + sb);
//        }