|
|
// Generated by CoffeeScript 1.6.3
var CSON, DocPad, PluginTester, RendererTester, ServerTester, balUtil, expect, extendr, joe, pathUtil, pluginPort, safefs, test, testers, _, _ref, _ref1, __indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; }, __hasProp = {}.hasOwnProperty, __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; };
pathUtil = require('path');
safefs = require('safefs');
balUtil = require('bal-util');
extendr = require('extendr');
joe = require('joe');
expect = require('chai').expect;
CSON = require('cson');
_ = require('lodash');
DocPad = require('./docpad');
pluginPort = 2000 + String((new Date()).getTime()).substr(-6, 4);
testers = { CSON: CSON, DocPad: DocPad };
testers.PluginTester = PluginTester = (function() { PluginTester.prototype.config = { testerName: null, pluginName: null, pluginPath: null, autoExit: true, testPath: null, outExpectedPath: null, removeEmptyLines: false };
PluginTester.prototype.docpadConfig = { port: null, growl: false, logLevel: ((__indexOf.call(process.argv, '-d') >= 0) ? 7 : 5), rootPath: null, outPath: null, srcPath: null, pluginPaths: null, enableUnlistedPlugins: true, enabledPlugins: null, skipUnsupportedPlugins: false, catchExceptions: false, environment: null };
PluginTester.prototype.docpad = null;
function PluginTester(config, docpadConfig, next) { var defaultEnabledPlugins, tester, _base, _base1, _base2, _base3, _base4, _base5, _base6, _base7, _base8; if (config == null) { config = {}; } if (docpadConfig == null) { docpadConfig = {}; } tester = this; this.config = extendr.deepExtendPlainObjects({}, PluginTester.prototype.config, this.config, config); this.docpadConfig = extendr.deepExtendPlainObjects({}, PluginTester.prototype.docpadConfig, this.docpadConfig, docpadConfig); if ((_base = this.docpadConfig).port == null) { _base.port = ++pluginPort; } if ((_base1 = this.config).testerName == null) { _base1.testerName = this.config.pluginName; } (_base2 = this.config).testPath || (_base2.testPath = pathUtil.join(this.config.pluginPath, 'test')); (_base3 = this.config).outExpectedPath || (_base3.outExpectedPath = pathUtil.join(this.config.testPath, 'out-expected')); (_base4 = this.docpadConfig).rootPath || (_base4.rootPath = this.config.testPath); (_base5 = this.docpadConfig).outPath || (_base5.outPath = pathUtil.join(this.docpadConfig.rootPath, 'out')); (_base6 = this.docpadConfig).srcPath || (_base6.srcPath = pathUtil.join(this.docpadConfig.rootPath, 'src')); if ((_base7 = this.docpadConfig).pluginPaths == null) { _base7.pluginPaths = [this.config.pluginPath]; } defaultEnabledPlugins = {}; defaultEnabledPlugins[this.config.pluginName] = true; (_base8 = this.docpadConfig).enabledPlugins || (_base8.enabledPlugins = defaultEnabledPlugins); joe.describe(this.config.testerName, function(suite, task) { tester.describe = tester.suite = suite; tester.it = tester.test = task; tester.done = tester.exit = function() {}; return typeof next === "function" ? next(null, tester) : void 0; }); this; }
PluginTester.prototype.testCreate = function() { var docpadConfig, tester; tester = this; docpadConfig = this.docpadConfig; this.test("create", function(done) { return DocPad.createInstance(docpadConfig, function(err, docpad) { if (err) { return done(err); } tester.docpad = docpad; return tester.docpad.action('clean', function(err) { if (err) { return done(err); } return tester.docpad.action('install', function(err) { return done(err); }); }); }); }); return this; };
PluginTester.prototype.testLoad = function() { var tester; tester = this; this.test("load plugin " + tester.config.pluginName, function(done) { return tester.docpad.loadedPlugin(tester.config.pluginName, function(err, loaded) { if (err) { return done(err); } expect(loaded).to.be.ok; return done(); }); }); return this; };
PluginTester.prototype.testServer = function(next) { var tester; tester = this; this.test("server", function(done) { return tester.docpad.action('server', function(err) { return done(err); }); }); return this; };
PluginTester.prototype.testGenerate = function() { var tester; tester = this; this.test("generate", function(done) { return tester.docpad.action('generate', function(err) { return done(err); }); }); return this; };
PluginTester.prototype.testEverything = function() { var tester; tester = this; this.testCreate(); this.testLoad(); this.testGenerate(); this.testServer(); if (typeof this.testCustom === "function") { this.testCustom(); } this.finish(); return this; };
PluginTester.prototype.finish = function() { var tester; tester = this; if (tester.config.autoExit) { this.test('finish up', function(done) { done(); tester.exit(); if (tester.config.autoExit !== 'safe') { return process.exit(); } }); } return this; };
return PluginTester;
})();
testers.ServerTester = ServerTester = (function(_super) { __extends(ServerTester, _super);
function ServerTester() { _ref = ServerTester.__super__.constructor.apply(this, arguments); return _ref; }
return ServerTester;
})(PluginTester);
testers.RendererTester = RendererTester = (function(_super) { __extends(RendererTester, _super);
function RendererTester() { _ref1 = RendererTester.__super__.constructor.apply(this, arguments); return _ref1; }
RendererTester.prototype.testGenerate = function() { var tester; tester = this; this.suite("generate", function(suite, test) { test('action', function(done) { return tester.docpad.action('generate', function(err) { return done(err); }); }); return suite('results', function(suite, test, done) { return balUtil.scantree(tester.docpadConfig.outPath, function(err, outResults) { if (err) { return done(err); } return balUtil.scantree(tester.config.outExpectedPath, function(err, outExpectedResults) { var outExpectedResultsKeys, outResultsKeys, replaceLinesRegex; if (err) { return done(err); } if (tester.config.removeWhitespace) { replaceLinesRegex = /(\\r|\\n|\\t|\s)+/g; outResults = JSON.parse(JSON.stringify(outResults).replace(replaceLinesRegex, '')); outExpectedResults = JSON.parse(JSON.stringify(outExpectedResults).replace(replaceLinesRegex, '')); } outResultsKeys = Object.keys(outResults); outExpectedResultsKeys = Object.keys(outExpectedResults); test('same files', function() { var outDifferenceKeys; outDifferenceKeys = _.difference(outResultsKeys, outExpectedResultsKeys); try { return expect(outDifferenceKeys).to.be.empty; } catch (_error) { err = _error; console.log(outDifferenceKeys); throw err; } }); outResultsKeys.forEach(function(key) { return test("same file content for: " + key, function() { return expect(outResults[key]).to.eql(outExpectedResults[key]); }); }); return done(); }); }); }); }); return this; };
return RendererTester;
})(PluginTester);
testers.test = test = function(testerConfig, docpadConfig) { var complete; if (testerConfig.testerClass == null) { testerConfig.testerClass = PluginTester; } testerConfig.pluginPath = pathUtil.resolve(testerConfig.pluginPath); if (testerConfig.pluginName == null) { testerConfig.pluginName = pathUtil.basename(testerConfig.pluginPath).replace('docpad-plugin-', ''); } if (testerConfig.testerPath == null) { testerConfig.testerPath = pathUtil.join('out', "" + testerConfig.pluginName + ".tester.js"); } if (testerConfig.testerPath) { testerConfig.testerPath = pathUtil.resolve(testerConfig.pluginPath, testerConfig.testerPath); } complete = function() { if (typeof testerConfig.testerClass === 'string') { testerConfig.testerClass = testers[testerConfig.testerClass]; } return new testerConfig.testerClass(testerConfig, docpadConfig, function(err, testerInstance) { if (err) { throw err; } return testerInstance.testEverything(); }); }; if (testerConfig.testerPath) { safefs.exists(testerConfig.testerPath, function(exists) { if (exists) { testerConfig.testerClass = require(testerConfig.testerPath)(testers); } return complete(); }); } else { complete(); } return testers; };
module.exports = testers;
|