-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.js
94 lines (81 loc) · 2.61 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
var path = require('path'),
fs = require('fs'),
mkdirp = require('mkdirp');
var suites = {};
var specs = {};
var myReporter = {
suiteStarted: function(suite){
currentSuite = suite;
currentSuite.specs = []
},
suiteDone: function(suite) {
suites[suite.id] = suite
},
jasmineDone: function(){
this.onSingleFileOutput(suites)
},
specDone: function(spec) {
browser.getSession().then(function(session) {
spec.sessionID = session.getId();
currentSuite.specs.push(spec)
specs[spec.id] = spec
});
},
onSingleFileOutput: function (suites) {
const xml = this.prepareXml(suites)
var write = this.write;
browser.getProcessedConfig().then(function(config) {
var browserName = config.capabilities.browserName;
let filename = `REPORT-browserstack.${browserName}.xml`
write(filename, xml)
});
},
prepareName: function(name = 'Skipped test') {
return name.split(/[^a-zA-Z0-9]+/).filter(
(item) => item && item.length
).join('_')
},
prepareXml: function(suites){
var xmlbuilder = require('xmlbuilder');
const builder = xmlbuilder.create('testsuites', {encoding: 'UTF-8', allowSurrogateChars: true})
for (let suiteIndex in suites) {
const suite = suites[suiteIndex]
const suiteName = this.prepareName(suite.description)
const testSuite = builder.ele("testsuite", {name: suiteName})
let SESSION_ID;
for (let specIndex in suite.specs) {
const test = suite.specs[specIndex]
const testName = this.prepareName(test.description)
const { sessionID } = test;
SESSION_ID = sessionID;
const testCase = testSuite.ele("testcase",{name: testName, id: `${suiteName}_${sessionID}.${testName}{0}`, index: 0 });
testCase.ele("session", {}, sessionID);
}
testSuite.att('name', `${suiteName}_${SESSION_ID}`);
}
return builder.end({ pretty: true});
},
write: function(filename, xml) {
var outputDir = "./browserstack-reports"
try {
const dir = path.resolve(outputDir)
const filepath = path.join(dir, filename)
mkdirp.sync(dir)
fs.writeFileSync(filepath, xml)
console.log(`Wrote xunit report "${filename}" to [${outputDir}].`)
} catch (e) {
console.log(`Failed to write xunit report "${filename}"
to [${outputDir}]. Error: ${e}`)
}
},
format: function(val) {
return JSON.stringify(baseReporter.limit(val))
}
}
var BrowserStackReporter = {
name: "browserstack-protractor-plugin",
onPrepare: function() {
jasmine.getEnv().addReporter(myReporter);
},
}
module.exports = BrowserStackReporter