summaryrefslogtreecommitdiffstats
path: root/test/plugins.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/plugins.js')
-rw-r--r--test/plugins.js239
1 files changed, 120 insertions, 119 deletions
diff --git a/test/plugins.js b/test/plugins.js
index c7d1f90..14f4a2f 100644
--- a/test/plugins.js
+++ b/test/plugins.js
@@ -1,189 +1,190 @@
-var path = require('path');
var _ = require('lodash');
-var assert = require('assert');
-var fs = require("fs");
-
-var Plugin = require("../lib/plugin");
+var should = require('should');
+var path = require('path');
-var PLUGINS_ROOT = path.resolve(__dirname, "plugins");
+var Plugin = require('../lib/plugin');
+var PLUGINS_ROOT = path.resolve(__dirname, 'plugins');
describe('Plugins', function () {
- describe('invalid plugin', function() {
- it('should signal as invalid', function() {
- var plugin = new Plugin(books[0], "invalid");
+ var book;
+
+ before(function() {
+ return books.parse("basic")
+ .then(function(_book) {
+ book = _book;
+ });
+ });
+
+ describe('Invalid', function() {
+ var plugin;
+
+ before(function() {
+ plugin = new Plugin(book, "invalid");
plugin.load("./invalid", PLUGINS_ROOT);
- assert(!plugin.isValid());
+ });
+
+ it('should be detected', function() {
+ should(plugin.isValid()).be.exactly(false);
});
});
- describe('empty plugin', function() {
- var plugin = new Plugin(books[0], "invalid");
- plugin.load("./empty", PLUGINS_ROOT);
+ describe('Empty', function() {
+ var plugin;
+
+ before(function() {
+ plugin = new Plugin(book, "empty");
+ plugin.load("./empty", PLUGINS_ROOT);
+ });
it('should valid a plugin', function() {
- assert(plugin.isValid());
+ should(plugin.isValid()).be.exactly(true);
});
- it('should return an empty list of resources', function(done) {
- qdone(
- plugin.getResources()
- .then(function(resources) {
- _.each(Plugin.RESOURCES, function(resName) {
- assert.equal(resources[resName].length, 0);
- });
- }),
- done);
+ it('should return an empty list of resources', function() {
+ return plugin.getResources()
+ .then(function(resources) {
+ _.each(Plugin.RESOURCES, function(resName) {
+ resources[resName].should.have.lengthOf(0);
+ });
+ });
});
});
- describe('resources plugin', function() {
- var plugin = new Plugin(books[0], "resources");
- plugin.load("./resources", PLUGINS_ROOT);
+ describe('Resources', function() {
+ var plugin;
+
+ before(function() {
+ plugin = new Plugin(book, "resources");
+ plugin.load("./resources", PLUGINS_ROOT);
- before(function(done) {
- qdone(books[0].plugins.load(plugin), done);
+ return book.plugins.load(plugin);
});
it('should valid a plugin', function() {
- assert(plugin.isValid());
+ should(plugin.isValid()).be.exactly(true);
});
- it('should return a valid list of resources (website)', function(done) {
- qdone(
- plugin.getResources("website")
- .then(function(resources) {
- assert.equal(resources["js"].length, 1);
- }),
- done);
- });
+ describe('Website', function() {
+ it('should return a valid list of resources', function() {
+ return plugin.getResources("website")
+ .then(function(resources) {
+ resources["js"].should.have.lengthOf(1);
+ });
+ });
- it('should return a valid list of resources (ebook)', function(done) {
- qdone(
- plugin.getResources("ebook")
- .then(function(resources) {
- assert.equal(resources["css"].length, 1);
- }),
- done);
+ it('should extend books plugins', function() {
+ var resources = book.plugins.resources("website");
+ resources["js"].should.have.lengthOf(1);
+ });
});
- it('should extend books plugins (website)', function() {
- var resources = books[0].plugins.resources("website");
- assert.equal(resources["js"].length, 1);
- });
+ describe('eBook', function() {
+ it('should return a valid list of resources', function() {
+ return plugin.getResources("ebook")
+ .then(function(resources) {
+ resources["css"].should.have.lengthOf(1);
+ });
+ });
- it('should extend books plugins (ebook)', function() {
- var resources = books[0].plugins.resources("ebook");
- assert.equal(resources["css"].length, 1);
+ it('should extend books plugins', function() {
+ var resources = book.plugins.resources("ebook");
+ resources["css"].should.have.lengthOf(1);
+ });
});
});
- describe('filters', function() {
- var plugin = new Plugin(books[0], "filters");
- plugin.load("./filters", PLUGINS_ROOT);
+ describe('Filters', function() {
+ var plugin;
+
+ before(function() {
+ plugin = new Plugin(book, "filters");
+ plugin.load("./filters", PLUGINS_ROOT);
- before(function(done) {
- qdone(books[0].plugins.load(plugin), done);
+ return book.plugins.load(plugin);
});
it('should valid a plugin', function() {
- assert(plugin.isValid());
+ should(plugin.isValid()).be.exactly(true);
});
it('should return a map of filters', function() {
var filters = plugin.getFilters();
- assert.equal(_.size(filters), 2);
- assert(filters["hello"]);
- assert(filters["helloCtx"]);
+
+ _.size(filters).should.equal(2);
+ filters.should.have.property("hello");
+ filters.should.have.property("helloCtx");
});
- it('should correctly extend template filters', function(done) {
- qdone(
- books[0].template.renderString('{{ "World"|hello }}')
+ it('should correctly extend template filters', function() {
+ return book.template.renderString('{{ "World"|hello }}')
.then(function(content) {
- assert.equal(content, "Hello World");
- }),
- done
- );
+ content.should.equal("Hello World");
+ });
});
- it('should correctly set book as context', function(done) {
- qdone(
- books[0].template.renderString('{{ "root"|helloCtx }}')
+ it('should correctly set book as context', function() {
+ return book.template.renderString('{{ "root"|helloCtx }}')
.then(function(content) {
- assert.equal(content, "root:"+books[0].root);
- }),
- done
- );
+ content.should.equal("root:"+book.root);
+ });
});
});
- describe('blocks', function() {
- var plugin = new Plugin(books[0], "blocks");
- plugin.load("./blocks", PLUGINS_ROOT);
+ describe('Blocks', function() {
+ var plugin;
- var testTpl = function(str, args, options) {
- return books[0].template.renderString(str, args, options)
- .then(books[0].template.postProcess)
- };
+ before(function() {
+ plugin = new Plugin(book, "blocks");
+ plugin.load("./blocks", PLUGINS_ROOT);
- before(function(done) {
- qdone(books[0].plugins.load(plugin), done);
+ return book.plugins.load(plugin);
});
+ var testTpl = function(str, args, options) {
+ return book.template.renderString(str, args, options)
+ .then(book.template.postProcess)
+ };
+
it('should valid a plugin', function() {
- assert(plugin.isValid());
+ should(plugin.isValid()).be.exactly(true);
});
- it('should correctly extend template blocks', function(done) {
- qdone(
- testTpl('{% test %}hello{% endtest %}')
+ it('should correctly extend template blocks', function() {
+ return testTpl('{% test %}hello{% endtest %}')
.then(function(content) {
- assert.equal(content, "testhellotest");
- }),
- done
- );
+ content.should.equal("testhellotest");
+ });
});
- it('should correctly accept shortcuts', function(done) {
- qdone(
- testTpl('$$hello$$', {}, {
+ it('should correctly accept shortcuts', function() {
+ return testTpl('$$hello$$', {}, {
type: "markdown"
})
.then(function(content) {
- assert.equal(content, "testhellotest");
- }),
- done
- );
+ content.should.equal("testhellotest");
+ });
});
- it('should correctly extend template blocks with defined end', function(done) {
- qdone(
- testTpl('{% test2 %}hello{% endtest2end %}')
+ it('should correctly extend template blocks with defined end', function() {
+ return testTpl('{% test2 %}hello{% endtest2end %}')
.then(function(content) {
- assert.equal(content, "test2hellotest2");
- }),
- done
- );
+ content.should.equal("test2hellotest2");
+ });
});
- it('should correctly extend template blocks with sub-blocks', function(done) {
- qdone(
- testTpl('{% test3join separator=";" %}hello{% also %}world{% endtest3join %}')
+ it('should correctly extend template blocks with sub-blocks', function() {
+ return testTpl('{% test3join separator=";" %}hello{% also %}world{% endtest3join %}')
.then(function(content) {
- assert.equal(content, "hello;world");
- }),
- done
- );
+ content.should.equal("hello;world");
+ });
});
- it('should correctly extend template blocks with different sub-blocks', function(done) {
- qdone(
- testTpl('{% test4join separator=";" %}hello{% also %}the{% finally %}world{% endtest4join %}')
+ it('should correctly extend template blocks with different sub-blocks', function() {
+ return testTpl('{% test4join separator=";" %}hello{% also %}the{% finally %}world{% endtest4join %}')
.then(function(content) {
- assert.equal(content, "hello;the;world");
- }),
- done
- );
+ content.should.equal("hello;the;world");
+ });
});
});
});
+