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
|
/*
* Copyright 2011 Red Hat, Inc.
*
* This file is 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
*/
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.lang.reflect.Method;
import java.text.DecimalFormat;
import java.text.NumberFormat;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import java.util.Arrays;
import java.util.concurrent.TimeUnit;
import net.sourceforge.jnlp.annotations.Bug;
import net.sourceforge.jnlp.annotations.KnownToFail;
import net.sourceforge.jnlp.annotations.Remote;
import net.sourceforge.jnlp.browsertesting.Browsers;
import org.junit.internal.JUnitSystem;
import org.junit.runner.Description;
import org.junit.runner.Result;
import org.junit.runner.notification.Failure;
import org.junit.runner.notification.RunListener;
/**
* This class listens for events in junit testsuite and wrote output to xml.
* Xml tryes to follow ant-tests schema, and is enriched for by-class statistics
* stdout and err elements are added, but must be filled from elsewhere (eg tee
* in make) as junit suite and listener run from our executer have no access to
* them.
*
*/
public class JunitLikeXmlOutputListener extends RunListener {
private BufferedWriter writer;
private Failure testFailed = null;
private static final String ROOT = "testsuite";
private static final String DATE_ELEMENT = "date";
private static final String TEST_ELEMENT = "testcase";
private static final String BUGS = "bugs";
private static final String BUG = "bug";
private static final String K2F = "known-to-fail";
private static final String REMOTE = "remote";
private static final String TEST_NAME_ATTRIBUTE = "name";
private static final String TEST_TIME_ATTRIBUTE = "time";
private static final String TEST_IGNORED_ATTRIBUTE = "ignored";
private static final String TEST_ERROR_ELEMENT = "error";
private static final String TEST_CLASS_ATTRIBUTE = "classname";
private static final String ERROR_MESSAGE_ATTRIBUTE = "message";
private static final String ERROR_TYPE_ATTRIBUTE = "type";
private static final String SOUT_ELEMENT = "system-out";
private static final String SERR_ELEMENT = "system-err";
private static final String CDATA_START = "<![CDATA[";
private static final String CDATA_END = "]]>";
private static final String TEST_CLASS_ELEMENT = "class";
private static final String STATS_ELEMENT = "stats";
private static final String CLASSES_ELEMENT = "classes";
private static final String SUMMARY_ELEMENT = "summary";
private static final String SUMMARY_TOTAL_ELEMENT = "total";
private static final String SUMMARY_PASSED_ELEMENT = "passed";
private static final String SUMMARY_FAILED_ELEMENT = "failed";
private static final String SUMMARY_IGNORED_ELEMENT = "ignored";
private long testStart;
private int failedK2F=0;
private int passedK2F=0;
private int ignoredK2F=0;
private class ClassStat {
Class<?> c;
int total;
int failed;
int passed;
int ignored;
long time = 0;
int totalK2F=0;
int failedK2F=0;
int passedK2F=0;
int ignoredK2F=0;
}
Map<String, ClassStat> classStats = new HashMap<String, ClassStat>();
public JunitLikeXmlOutputListener(JUnitSystem system, File f) {
try {
writer = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(f), "UTF-8"));
} catch (Exception ex) {
throw new RuntimeException(ex);
}
}
@Override
public void testRunStarted(Description description) throws Exception {
openElement(ROOT);
writeElement(DATE_ELEMENT, new Date().toString());
}
private void openElement(String name) throws IOException {
openElement(name, null);
}
private void openElement(String name, Map<String, String> atts) throws IOException {
StringBuilder attString = new StringBuilder();
if (atts != null) {
attString.append(" ");
Set<Entry<String, String>> entries = atts.entrySet();
for (Entry<String, String> entry : entries) {
String k = entry.getKey();
String v = entry.getValue();
if (v == null) {
v = "null";
}
attString.append(k).append("=\"").append(attributize(v)).append("\"");
attString.append(" ");
}
}
writer.write("<" + name + attString.toString() + ">");
writer.newLine();
}
private static String attributize(String s) {
return s.replace("&", "&").replace("<", "<").replace("\"", """);
}
private void closeElement(String name) throws IOException {
writer.newLine();
writer.write("</" + name + ">");
writer.newLine();
}
private void writeContent(String content) throws IOException {
writer.write(CDATA_START + content + CDATA_END);
}
private void writeElement(String name, String content) throws IOException {
writeElement(name, content, null);
}
private void writeElement(String name, String content, Map<String, String> atts) throws IOException {
openElement(name, atts);
writeContent(content);
closeElement(name);
}
@Override
public void testStarted(Description description) throws Exception {
testFailed = null;
testStart = System.nanoTime();
}
@Override
public void testFailure(Failure failure) throws IOException {
testFailed = failure;
}
@Override
public void testIgnored(Description description) throws Exception {
testDone(description, 0, 0, true);
}
@Override
public void testFinished(org.junit.runner.Description description) throws Exception {
long testTime = TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - testStart);
double testTimeSeconds = ((double) testTime) / 1000d;
testDone(description, testTime, testTimeSeconds, false);
}
@SuppressWarnings("unchecked")
private void testDone(Description description, long testTime, double testTimeSeconds, boolean ignored) throws Exception {
Class<?> testClass = null;
Method testMethod = null;
try {
testClass = description.getTestClass();
String qs = description.getMethodName();
//handling @Browser'bugsIds marking of used browser
if (qs.contains(" - ")) {
qs = qs.replaceAll(" - .*", "");
}
testMethod = testClass.getMethod(qs);
} catch (Exception ex) {
ex.printStackTrace();
}
Map<String, String> testcaseAtts = new HashMap<String, String>(4);
NumberFormat formatter = new DecimalFormat("#0.0000");
String stringedTime = formatter.format(testTimeSeconds);
stringedTime.replace(",", ".");
testcaseAtts.put(TEST_TIME_ATTRIBUTE, stringedTime);
testcaseAtts.put(TEST_CLASS_ATTRIBUTE, description.getClassName());
testcaseAtts.put(TEST_NAME_ATTRIBUTE, description.getMethodName());
if (ignored){
testcaseAtts.put(TEST_IGNORED_ATTRIBUTE, Boolean.TRUE.toString());
}
KnownToFail k2f = LessVerboseTextListener.getAnnotation(testClass, testMethod.getName(), KnownToFail.class);
boolean thisTestIsK2F = false;
Remote remote = LessVerboseTextListener.getAnnotation(testClass, testMethod.getName(), Remote.class);
if (k2f != null) {
//determine if k2f in the current browser
//??
Browsers[] br = k2f.failsIn();
if(0 == br.length){//the KnownToFail annotation without optional parameter
thisTestIsK2F = true;
}else{
for(Browsers b : br){
if(description.toString().contains(b.toString())){
thisTestIsK2F = true;
}
}
}
}
if( thisTestIsK2F ) testcaseAtts.put(K2F, Boolean.TRUE.toString());
if (remote != null) {
testcaseAtts.put(REMOTE, Boolean.TRUE.toString());
}
openElement(TEST_ELEMENT, testcaseAtts);
if (testFailed != null) {
if (thisTestIsK2F) {
failedK2F++;
}
Map<String, String> errorAtts = new HashMap<String, String>(3);
errorAtts.put(ERROR_MESSAGE_ATTRIBUTE, testFailed.getMessage());
int i = testFailed.getTrace().indexOf(":");
if (i >= 0) {
errorAtts.put(ERROR_TYPE_ATTRIBUTE, testFailed.getTrace().substring(0, i));
} else {
errorAtts.put(ERROR_TYPE_ATTRIBUTE, "?");
}
writeElement(TEST_ERROR_ELEMENT, testFailed.getTrace(), errorAtts);
} else {
if (thisTestIsK2F) {
if (ignored) {
ignoredK2F++;
} else {
passedK2F++;
}
}
}
try {
if (testClass != null && testMethod != null) {
Bug bug = testMethod.getAnnotation(Bug.class);
if (bug != null) {
openElement(BUGS);
String[] bugsIds = bug.id();
for (String bugId : bugsIds) {
String idAndUrl[] = createBug(bugId);
Map<String, String> visibleNameAtt = new HashMap<String, String>(1);
visibleNameAtt.put("visibleName", idAndUrl[0]);
openElement(BUG, visibleNameAtt);
writer.write(idAndUrl[1]);
closeElement(BUG);
}
closeElement(BUGS);
}
}
} catch (Exception ex) {
ex.printStackTrace();
}
closeElement(TEST_ELEMENT);
writer.flush();
ClassStat classStat = classStats.get(description.getClassName());
if (classStat == null) {
classStat = new ClassStat();
classStat.c = description.getTestClass();
classStats.put(description.getClassName(), classStat);
}
classStat.total++;
if (thisTestIsK2F) {
classStat.totalK2F++;
}
classStat.time += testTime;
if (testFailed == null) {
if (ignored) {
classStat.ignored++;
if (thisTestIsK2F) {
classStat.ignoredK2F++;
}
} else {
classStat.passed++;
if (thisTestIsK2F) {
classStat.passedK2F++;
}
}
} else {
classStat.failed++;
if (thisTestIsK2F) {
classStat.failedK2F++;
}
}
}
@Override
@SuppressWarnings("unchecked")
public void testRunFinished(Result result) throws Exception {
writeElement(SOUT_ELEMENT, "@sout@");
writeElement(SERR_ELEMENT, "@serr@");
openElement(STATS_ELEMENT);
openElement(SUMMARY_ELEMENT);
int passed = result.getRunCount() - result.getFailureCount() - result.getIgnoreCount();
int failed = result.getFailureCount();
int ignored = result.getIgnoreCount();
writeElement(SUMMARY_TOTAL_ELEMENT, String.valueOf(result.getRunCount()),createKnownToFailSumamryAttribute(failedK2F+passedK2F+ignoredK2F));
writeElement(SUMMARY_FAILED_ELEMENT, String.valueOf(failed),createKnownToFailSumamryAttribute(failedK2F));
writeElement(SUMMARY_IGNORED_ELEMENT, String.valueOf(ignored),createKnownToFailSumamryAttribute(ignoredK2F));
writeElement(SUMMARY_PASSED_ELEMENT, String.valueOf(passed),createKnownToFailSumamryAttribute(passedK2F));
closeElement(SUMMARY_ELEMENT);
openElement(CLASSES_ELEMENT);
Set<Entry<String, ClassStat>> e = classStats.entrySet();
for (Entry<String, ClassStat> entry : e) {
Map<String, String> testcaseAtts = new HashMap<String, String>(3);
testcaseAtts.put(TEST_NAME_ATTRIBUTE, entry.getKey());
testcaseAtts.put(TEST_TIME_ATTRIBUTE, String.valueOf(entry.getValue().time));
openElement(TEST_CLASS_ELEMENT, testcaseAtts);
writeElement(SUMMARY_PASSED_ELEMENT, String.valueOf(entry.getValue().passed),createKnownToFailSumamryAttribute(entry.getValue().passedK2F));
writeElement(SUMMARY_FAILED_ELEMENT, String.valueOf(entry.getValue().failed),createKnownToFailSumamryAttribute(entry.getValue().failedK2F));
writeElement(SUMMARY_IGNORED_ELEMENT, String.valueOf(entry.getValue().ignored),createKnownToFailSumamryAttribute(entry.getValue().ignoredK2F));
writeElement(SUMMARY_TOTAL_ELEMENT, String.valueOf(entry.getValue().total),createKnownToFailSumamryAttribute(entry.getValue().totalK2F));
try {
Bug b = null;
if (entry.getValue().c != null) {
b = entry.getValue().c.getAnnotation(Bug.class);
}
if (b != null) {
openElement(BUGS);
String[] s = b.id();
for (String string : s) {
String ss[] = createBug(string);
Map<String, String> visibleNameAtt = new HashMap<String, String>(1);
visibleNameAtt.put("visibleName", ss[0]);
openElement(BUG, visibleNameAtt);
writer.write(ss[1]);
closeElement(BUG);
}
closeElement(BUGS);
}
} catch (Exception ex) {
ex.printStackTrace();
}
closeElement(TEST_CLASS_ELEMENT);
}
closeElement(CLASSES_ELEMENT);
closeElement(STATS_ELEMENT);
closeElement(ROOT);
writer.flush();
writer.close();
}
public Map<String, String> createKnownToFailSumamryAttribute(int count) {
Map<String, String> atts = new HashMap<String, String>(1);
atts.put(K2F, String.valueOf(count));
return atts;
}
/**
* When declare for suite class or for Test-marked method,
* should be interpreted by report generating tool to links.
* Known shortcuts are
* SX - http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=X
* PRX - http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=X
* RHX - https://bugzilla.redhat.com/show_bug.cgi?id=X
* DX - http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=X
* GX - http://bugs.gentoo.org/show_bug.cgi?id=X
* CAX - http://server.complang.tuwien.ac.at/cgi-bin/bugzilla/show_bug.cgi?id=X
* LPX - https://bugs.launchpad.net/bugs/X
*
* http://mail.openjdk.java.net/pipermail/distro-pkg-dev/
* and http://mail.openjdk.java.net/pipermail/ are proceed differently
*
* You just put eg @Bug(id="RH12345",id="http:/my.bukpage.com/terribleNew")
* and RH12345 will be transalated as
* <a href="https://bugzilla.redhat.com/show_bug.cgi?id=123456">123456<a> or
* similar, the url will be inclueded as is. Both added to proper tests or suites
*
* @return Strng[2]{nameToBeShown, hrefValue}
*/
public static String[] createBug(String string) {
String[] r = {"ex", string};
String[] prefixes = {
"S",
"PR",
"RH",
"D",
"G",
"CA",
"LP",};
String[] urls = {
"http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=",
"http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=",
"https://bugzilla.redhat.com/show_bug.cgi?id=",
"http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=",
"http://bugs.gentoo.org/show_bug.cgi?id=",
"http://server.complang.tuwien.ac.at/cgi-bin/bugzilla/show_bug.cgi?id",
"https://bugs.launchpad.net/bugs/",};
for (int i = 0; i < urls.length; i++) {
if (string.startsWith(prefixes[i])) {
r[0] = string;
r[1] = urls[i] + string.substring(prefixes[i].length());
return r;
}
}
String distro = "http://mail.openjdk.java.net/pipermail/distro-pkg-dev/";
String openjdk = "http://mail.openjdk.java.net/pipermail/";
if (string.startsWith(distro)) {
r[0] = "distro-pkg";
return r;
}
if (string.startsWith(openjdk)) {
r[0] = "openjdk";
return r;
}
return r;
}
public static void main(String[] args) {
String[] q = createBug("PR608");
System.out.println(q[0] + " : " + q[1]);
q = createBug("S4854");
System.out.println(q[0] + " : " + q[1]);
q = createBug("RH649423");
System.out.println(q[0] + " : " + q[1]);
q = createBug("D464");
System.out.println(q[0] + " : " + q[1]);
q = createBug("G6554");
System.out.println(q[0] + " : " + q[1]);
q = createBug("CA1654");
System.out.println(q[0] + " : " + q[1]);
q = createBug("LP5445");
System.out.println(q[0] + " : " + q[1]);
q = createBug("http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2011-November/016178.html");
System.out.println(q[0] + " : " + q[1]);
q = createBug("http://mail.openjdk.java.net/pipermail/awt-dev/2012-March/002324.html");
System.out.println(q[0] + " : " + q[1]);
q = createBug("http://lists.fedoraproject.org/pipermail/chinese/2012-January/008868.html");
System.out.println(q[0] + " : " + q[1]);
}
}
|