Remove the request to SauceLab's broken rest API which seems to explode when you hit it while a job is ongoing
parent
e8eb677b0b
commit
2cab588d06
|
@ -1,6 +1,5 @@
|
|||
/* global process */
|
||||
var WebDriver = require("selenium-webdriver");
|
||||
var Https = require("https");
|
||||
|
||||
var driver;
|
||||
if (process.env.SAUCE_USERNAME !== undefined) {
|
||||
|
@ -17,37 +16,15 @@ if (process.env.SAUCE_USERNAME !== undefined) {
|
|||
driver = new WebDriver.Builder().withCapabilities({ browserName: "chrome" }).build();
|
||||
}
|
||||
|
||||
var logSauceLink = function (cb) {
|
||||
Https.request("https://saucelabs.com/rest/v1.1/" + process.env.SAUCE_USERNAME +
|
||||
"/jobs?auto_only=true&full=true&limit=50&subaccounts=true", function (resp) {
|
||||
var str = '';
|
||||
resp.on('data', function (chunk) { str += chunk; });
|
||||
resp.on('end', function () {
|
||||
JSON.parse(str).jobs.forEach(function (j) {
|
||||
var banner = new Array(80).join('=');
|
||||
if (j.build === process.env.TRAVIS_JOB_NUMBER) {
|
||||
console.log("\n\n\n" + banner);
|
||||
console.log("SauceLabs Link: " + j.video_url.replace(/\/video\.flv$/), '');
|
||||
console.log(banner + "\n\n\n");
|
||||
}
|
||||
});
|
||||
console.log(str);
|
||||
cb();
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
driver.get('http://localhost:3000/assert/');
|
||||
var report = driver.wait(WebDriver.until.elementLocated(WebDriver.By.className("report")), 5000);
|
||||
report.getAttribute("class").then(function (cls) {
|
||||
driver.quit();
|
||||
logSauceLink(function () {
|
||||
if (!cls) {
|
||||
throw new Error("cls is null");
|
||||
} else if (cls.indexOf("failure") !== -1) {
|
||||
throw new Error("cls contains the word failure");
|
||||
} else if (cls.indexOf("success") === -1) {
|
||||
throw new Error("cls does not contain the word success");
|
||||
}
|
||||
});
|
||||
if (!cls) {
|
||||
throw new Error("cls is null");
|
||||
} else if (cls.indexOf("failure") !== -1) {
|
||||
throw new Error("cls contains the word failure");
|
||||
} else if (cls.indexOf("success") === -1) {
|
||||
throw new Error("cls does not contain the word success");
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue