forked from karma-runner/karma-junit-reporter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
134 lines (113 loc) · 3.94 KB
/
index.js
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
var os = require('os');
var path = require('path');
var fs = require('fs');
var builder = require('xmlbuilder');
var JUnitReporter = function(baseReporterDecorator, config, logger, helper, formatError) {
var log = logger.create('reporter.junit');
var reporterConfig = config.junitReporter || {};
var pkgName = reporterConfig.suite || '';
var sonarFormatFlg = reporterConfig.sonarFormatFlg || false;
var outputFile = helper.normalizeWinPath(path.resolve(config.basePath, reporterConfig.outputFile
|| 'test-results.xml'));
var xml;
var suites;
var pendingFileWritings = 0;
var fileWritingFinished = function() {};
var allMessages = [];
baseReporterDecorator(this);
this.adapters = [function(msg) {
allMessages.push(msg);
}];
var initliazeXmlForBrowser = function(browser) {
var timestamp = (new Date()).toISOString().substr(0, 19);
var suite = suites[browser.id] = xml.ele('testsuite', {
name: browser.name, 'package': pkgName, timestamp: timestamp, id: 0, hostname: os.hostname()
});
suite.ele('properties').ele('property', {name: 'browser.fullName', value: browser.fullName});
};
this.onRunStart = function(browsers) {
suites = Object.create(null);
xml = builder.create('testsuites');
// TODO(vojta): remove once we don't care about Karma 0.10
browsers.forEach(initliazeXmlForBrowser);
};
this.onBrowserStart = function(browser) {
initliazeXmlForBrowser(browser);
};
this.onBrowserComplete = function(browser) {
var suite = suites[browser.id];
if (!suite) {
// This browser did not signal `onBrowserStart`. That happens
// if the browser timed out during the start phase.
return;
}
var result = browser.lastResult;
suite.att('tests', result.total);
suite.att('errors', result.disconnected || result.error ? 1 : 0);
suite.att('failures', result.failed);
suite.att('time', (result.netTime || 0) / 1000);
suite.ele('system-out').dat(allMessages.join() + '\n');
suite.ele('system-err');
};
this.onRunComplete = function() {
var xmlToOutput = xml;
pendingFileWritings++;
helper.mkdirIfNotExists(path.dirname(outputFile), function() {
fs.writeFile(outputFile, xmlToOutput.end({pretty: true}), function(err) {
if (err) {
log.warn('Cannot write JUnit xml\n\t' + err.message);
} else {
log.debug('JUnit results written to "%s".', outputFile);
}
if (!--pendingFileWritings) {
fileWritingFinished();
}
});
});
suites = xml = null;
allMessages.length = 0;
};
function getSpec(browser,result){
return suites[browser.id].ele('testcase', {
name: result.description, time: ((result.time || 0) / 1000),
classname: (pkgName ? pkgName + ' ' : '') + browser.name + '.' + result.suite.join(' ').replace(/\./g, '_')
});
}
this.specSuccess = this.specSkipped = this.specFailure = function(browser, result) {
if(!sonarFormatFlg) {
var spec = getSpec(browser, result);
if (result.skipped) {
spec.ele('skipped');
}
if (!result.success) {
result.log.forEach(function(err) {
spec.ele('failure', {type: ''}, formatError(err));
});
}
}else {
if (result.skipped) {
var spec = getSpec(browser, result);
spec.ele('skipped');
}
if (!result.success) {
result.log.forEach(function(err) {
var spec = getSpec(browser, result);
spec.ele('failure', {message: 'Failure'}, formatError(err));
});
}
}
};
// wait for writing all the xml files, before exiting
this.onExit = function(done) {
if (pendingFileWritings) {
fileWritingFinished = done;
} else {
done();
}
};
};
JUnitReporter.$inject = ['baseReporterDecorator', 'config', 'logger', 'helper', 'formatError'];
// PUBLISH DI MODULE
module.exports = {
'reporter:junit': ['type', JUnitReporter]
};