Code coverage report for lib/cli/view.js

Statements: 100% (29 / 29)      Branches: 100% (0 / 0)      Functions: 100% (12 / 12)      Lines: 100% (29 / 29)      Ignored: none     

All files » lib/cli/ » view.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 661 1 1                 1 2 1 1   1 1 1   1                     1 2 1 1   1 1 1   1                     1 2 1 1   1 1   1       1 1 1
var cli  = require('bagofcli');
var fs   = require('fs');
var text = require('bagoftext');
 
/**
 * Get a handler that calls Jenkins API to create a view with specific configuration.
 * Success view creation message will be logged when there's no error.
 *
 * @param {Function} cb: callback for argument handling
 * @return Jenkins API handler function
 */
function create(cb) {
  return function (name, configFile, args) {
    function resultCb(result) {
      console.log(text.__('View %s was created successfully'), name);
    }
    function jenkinsCb(jenkins) {
      var config = fs.readFileSync(configFile).toString();
      jenkins.createView(name, config, cli.exitCb(null, resultCb));
    }
    cb(args, jenkinsCb);
  };
}
 
/**
 * Get a handler that calls Jenkins API to update a view with specific configuration.
 * Success view update message will be logged when there's no error.
 *
 * @param {Function} cb: callback for argument handling
 * @return Jenkins API handler function
 */
function update(cb) {
  return function (name, configFile, args) {
    function resultCb(result) {
      console.log(text.__('View %s was updated successfully'), name);
    }
    function jenkinsCb(jenkins) {
      var config = fs.readFileSync(configFile).toString();
      jenkins.updateView(name, config, cli.exitCb(null, resultCb));
    }
    cb(args, jenkinsCb);
  };
}
 
/**
 * Get a handler that calls Jenkins API to fetch a view configuration.
 * Jenkins view config.xml will be logged when there's no error.
 *
 * @param {Function} cb: callback for argument handling
 * @return Jenkins API handler function
 */
function fetchConfig(cb) {
  return function (name, args) {
    function resultCb(result) {
      console.log(result);
    }
    function jenkinsCb(jenkins) {
      jenkins.fetchViewConfig(name, cli.exitCb(null, resultCb));
    }
    cb(args, jenkinsCb);
  };
}
 
exports.create      = create;
exports.update      = update;
exports.fetchConfig = fetchConfig;