forked from Percona-Lab/codeceptjs-saucehelper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
103 lines (90 loc) · 2.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
"use strict";
const codeceptjs = require("codeceptjs");
/**
* Sauce Labs Helper for Codeceptjs
*
* @author Puneet Kala
*/
class SauceHelper extends Helper {
constructor(config) {
super(config);
}
/**
*
* @param data Test name, etc
* @private
*/
_updateSauceJob(data) {
const restHelper = this.helpers["REST"];
if (!restHelper) {
throw new Error("REST helper must be enabled, add REST: {} to helpers config");
}
const sessionId = this._getSessionId();
const config = this._getConfig();
let sauce_url = "Test finished. Link to job: https://saucelabs.com/jobs/";
sauce_url = sauce_url.concat(sessionId);
codeceptjs.output.say(sauce_url);
return restHelper.sendPutRequest(
this._createStatusUrl(config, sessionId),
data,
{ Authorization: this._createAuthHeader(config) }
);
}
/**
* Helper function gets called if the test is passing
* @param test
* @private
*/
_passed(test) {
return this._updateSauceJob({ passed: true, name: test.title });
}
/**
* Helper function gets called if the test execution fails
* @param test
* @param error
* @private
*/
_failed(test, error) {
return this._updateSauceJob({ passed: false, name: test.title });
}
_createAuthHeader(config) {
let credentials = config.user;
credentials = credentials.concat(":");
credentials = credentials.concat(config.key);
return "Basic ".concat(Buffer.from(credentials).toString("base64"));
}
_createStatusUrl(config, sessionId) {
let status_url = "https://saucelabs.com/rest/v1/";
if (config.region === "eu") {
status_url = "https://eu-central-1.saucelabs.com/rest/v1/";
}
status_url = status_url.concat(config.user);
status_url = status_url.concat("/jobs/");
return status_url.concat(sessionId);
}
_getConfig() {
if (this.helpers["WebDriver"]) {
return this.helpers["WebDriver"].config;
}
if (this.helpers["Appium"]) {
return this.helpers["Appium"].config;
}
if (this.helpers["WebDriverIO"]) {
return this.helpers["WebDriverIO"].config;
}
throw new Error("No matching helper found. Supported helpers: WebDriver/Appium/WebDriverIO");
}
_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 = SauceHelper;