This repository was archived by the owner on Sep 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathbrowserstack-service.js
96 lines (85 loc) · 2.16 KB
/
browserstack-service.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
const request = require('request-promise');
class BrowserstackService {
before() {
this.sessionId = global.browser.sessionId;
this.auth = global.browser.requestHandler.auth || {};
this.failures = 0;
return this._printSessionURL();
}
afterSuite(suite) {
if (suite.hasOwnProperty('err')) {
this.failures++;
}
}
afterTest(test) {
if (!test.passed) {
this.failures++;
}
}
afterStep(feature) {
if (feature.status === 'failed') {
++this.failures;
}
}
after() {
return this._update(this.sessionId, this._getBody());
}
onReload(oldSessionId, newSessionId) {
this.sessionId = newSessionId;
return this._update(oldSessionId, this._getBody())
.then(this._printSessionURL())
.then(() => {
this.failures = 0;
});
}
_update(sessionId, body) {
return request.put({
uri: `https://www.browserstack.com/automate/sessions/${sessionId}.json`,
json: true,
auth: this.auth,
body
});
}
_getBody() {
return {
status: this.failures === 0 ? 'completed' : 'error',
name: this.fullTitle,
reason: this.failReason
};
}
_printSessionURL() {
const capabilities = global.browser.desiredCapabilities;
return request.get(
{
uri: `https://www.browserstack.com/automate/sessions/${this
.sessionId}.json`,
json: true,
auth: this.auth
},
function(error, response, body) {
if (!error && response.statusCode === 200) {
// These keys describe the browser the test was run on
const browserDesc = [
'device',
'os',
'osVersion',
'os_version',
'browserName',
'browser',
'browserVersion',
'browser_version'
];
const browserString = browserDesc
.map(k => capabilities[k])
.filter(v => !!v)
.join(' ');
console.log(
`[Browserstack] ${browserString} session: ${body.automation_session
.browser_url}`
);
}
}
);
}
}
module.exports = BrowserstackService;