Code coverage report for lib/api/util.js

Statements: 100% (23 / 23)      Branches: 100% (0 / 0)      Functions: 100% (9 / 9)      Lines: 100% (23 / 23)      Ignored: none     

All files » lib/api/ » util.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 791               1 1                 1 1                   1 1       1                 1 17 1                   1 3 1                   1 3 1       1 1 1 1 1 1
var text = require('bagoftext');
 
/**
 * Handle success simply by passing result's (response) body through to callback.
 *
 * @param {Object} result: result of the sent request as a string
 * @param {Function} cb: standard cb(err, result) callback
 */
function passThroughSuccess(result, cb) {
  cb(null, result.body);
}
 
/**
 * Handle success simply by passing result's (response) JSON string body parsed as an object through to callback.
 *
 * @param {Object} result: result of the sent request as object
 * @param {Function} cb: standard cb(err, result) callback
 */
function passThroughSuccessJson(result, cb) {
  cb(null, JSON.parse(result.body));
}
 
/**
 * Parse HTML error page from Jenkins, pass the error message to the callback.
 * This error is usually the response body of error 400.
 *
 * @param {Object} result: result of the sent request
 * @param {Function} cb: standard cb(err, result) callback
 */
function htmlError(result, cb) {
  var message = result.body
    .match(/<h1>Error<\/h1>.+<\/p>/).toString()
    .replace(/<h1>Error<\/h1>/, '')
    .replace(/<\/?p>/g, '');
  cb(new Error(message));
}
 
/**
 * Create a 'job not found' error handler function.
 *
 * @param {String} name: the job name
 * @return a handler function 
 */
function jobNotFoundError(name) {
  return function (result, cb) {
    cb(new Error(text.__('Job %s does not exist', name)));
  };
}
 
/**
 * Create a 'job require params' error handler function.
 *
 * @param {String} name: the job name
 * @return a handler function 
 */
function jobRequireParamsError(name) {
  return function (result, cb) {
    cb(new Error(text.__('Job %s requires build parameters', name)));
  };
}
 
/**
 * Create a 'view not found' error handler function.
 *
 * @param {String} name: the view name
 * @return a handler function 
 */
function viewNotFoundError(name) {
  return function (result, cb) {
    cb(new Error(text.__('View %s does not exist', name)));
  };
}
 
exports.passThroughSuccess     = passThroughSuccess;
exports.passThroughSuccessJson = passThroughSuccessJson;
exports.htmlError              = htmlError;
exports.jobNotFoundError       = jobNotFoundError;
exports.jobRequireParamsError  = jobRequireParamsError;
exports.viewNotFoundError      = viewNotFoundError;