Skip to content

Instantly share code, notes, and snippets.

@mikberg
Created January 23, 2016 17:26
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikberg/ce463e09d6adf46f987c to your computer and use it in GitHub Desktop.
Save mikberg/ce463e09d6adf46f987c to your computer and use it in GitHub Desktop.
Report Nightwatch results to SauceLabs
/* eslint no-console:0 */
const https = require('https');
module.exports = function sauce(callback) {
const currentTest = this.client.currentTest;
const username = this.client.options.username;
const sessionId = this.client.capabilities['webdriver.remote.sessionid'];
const accessKey = this.client.options.accessKey;
if (!this.client.launch_url.match(/saucelabs/)) {
console.log('Not saucelabs ...');
return callback();
}
if (!username || !accessKey || !sessionId) {
console.log(this.client);
console.log('No username, accessKey or sessionId');
return callback();
}
const passed = currentTest.results.passed === currentTest.results.tests;
const data = JSON.stringify({
passed,
});
const requestPath = `/rest/v1/${username}/jobs/${sessionId}`;
function responseCallback(res) {
res.setEncoding('utf8');
console.log('Response: ', res.statusCode, JSON.stringify(res.headers));
res.on('data', function onData(chunk) {
console.log('BODY: ' + chunk);
});
res.on('end', function onEnd() {
console.info('Finished updating saucelabs');
callback();
});
}
try {
console.log('Updating saucelabs', requestPath);
const req = https.request({
hostname: 'saucelabs.com',
path: requestPath,
method: 'PUT',
auth: `${username}:${accessKey}`,
headers: {
'Content-Type': 'application/json',
'Content-Length': data.length,
},
}, responseCallback);
req.on('error', function onError(e) {
console.log('problem with request: ' + e.message);
});
req.write(data);
req.end();
} catch (error) {
console.log('Error', error);
callback();
}
};
@shcallaway
Copy link

Thanks for this. 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment