-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
54 lines (46 loc) · 1.5 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
var TestingBot = require('testingbot-api');
class TestingBotHelper extends Helper {
constructor(config) {
super(config);
this.api = new TestingBot({
api_key: this.config.user,
api_secret: this.config.key
});
}
/**
* Sends test meta data to TestingBot
*/
_updateJob(sessionId, data) {
this.api.updateTest(data, sessionId, function(error) {
});
}
/**
* This helper function gets called when a test succeeds.
* Send the test status to TestingBot
*/
_passed(test) {
const sessionId = this._getSessionId();
this._updateJob(sessionId, { 'test[success]': true, 'test[name]': test.title });
}
/**
* This helper function gets called when a test fails.
* Send the test status to TestingBot
*/
_failed(test, error) {
const sessionId = this._getSessionId();
this._updateJob(sessionId, { 'test[success]': false, 'test[name]': test.title });
}
_getSessionId() {
if (this.helpers['WebDriver']) {
return this.helpers['WebDriver'].browser.sessionId;
}
if (this.helpers['Appium']) {
return this.helpers['Appium'].browser.sessionId;
}
if (this.helpers['WebDriverIO']) {
return this.helpers['WebDriverIO'].browser.requestHandler.sessionID;
}
throw new Error('No matching helper found. Supported helpers: WebDriver/Appium/WebDriverIO');
}
}
module.exports = TestingBotHelper;