diff --git a/core/server/apps/subscribers/lib/helpers/input_email.js b/core/server/apps/subscribers/lib/helpers/input_email.js index 1c5327d162..b439a1b7ef 100644 --- a/core/server/apps/subscribers/lib/helpers/input_email.js +++ b/core/server/apps/subscribers/lib/helpers/input_email.js @@ -29,11 +29,15 @@ module.exports = function input_email(options) { // eslint-disable-line camelcas extras += ' value="' + options.hash.value + '"'; } + if (options.hash.id) { + extras += ' id="' + options.hash.id + '"'; + } + output = templates.input({ type: 'email', name: 'email', className: className, - extras: extras + extras: (extras ? extras.trim() : '') }); return new SafeString(output); diff --git a/core/server/helpers/tpl/subscribe_form.hbs b/core/server/helpers/tpl/subscribe_form.hbs index 1fdce8af2b..7da8ff94af 100644 --- a/core/server/helpers/tpl/subscribe_form.hbs +++ b/core/server/helpers/tpl/subscribe_form.hbs @@ -1,11 +1,11 @@ -
+ {{! This is required for the form to work correctly }} {{hidden}}
- {{input_email class=input_class placeholder=placeholder value=email autofocus=autofocus}} + {{input_email id=input_id class=input_class placeholder=placeholder value=email autofocus=autofocus}}
- + {{! This is used to get extra info about where this subscriber came from }} {{script}}
diff --git a/core/test/unit/apps/subscribers/input_email_spec.js b/core/test/unit/apps/subscribers/input_email_spec.js new file mode 100644 index 0000000000..4bd4c4f384 --- /dev/null +++ b/core/test/unit/apps/subscribers/input_email_spec.js @@ -0,0 +1,87 @@ +var should = require('should'), + // Stuff we are testing + input_email = require('../../../../server/apps/subscribers/lib/helpers/input_email'); + +describe('{{input_email}} helper', function () { + it('has input_email helper', function () { + should.exist(input_email); + }); + + it('returns the correct input when no custom options are specified', function () { + var markup = '', + rendered = input_email(); + should.exist(rendered); + + String(rendered).should.equal(markup); + }); + + it('returns the correct input when a custom class is specified', function () { + var markup = '', + options = { + hash: { + class: 'test-class' + } + }, + rendered = input_email(options); + + should.exist(rendered); + + String(rendered).should.equal(markup); + }); + + it('returns the correct input when an autofocus is specified', function () { + var markup = '', + options = { + hash: { + autofocus: true + } + }, + rendered = input_email(options); + + should.exist(rendered); + + String(rendered).should.equal(markup); + }); + + it('returns the correct input when a placeholder is specified', function () { + var markup = '', + options = { + hash: { + placeholder: 'Test' + } + }, + rendered = input_email(options); + + should.exist(rendered); + + String(rendered).should.equal(markup); + }); + + it('returns the correct input when a value is specified', function () { + var markup = '', + options = { + hash: { + value: 'Test value' + } + }, + rendered = input_email(options); + + should.exist(rendered); + + String(rendered).should.equal(markup); + }); + + it('returns the correct input when an id is specified', function () { + var markup = '', + options = { + hash: { + id: 'test-id' + } + }, + rendered = input_email(options); + + should.exist(rendered); + + String(rendered).should.equal(markup); + }); +}); diff --git a/core/test/unit/apps/subscribers/subscribe_form_spec.js b/core/test/unit/apps/subscribers/subscribe_form_spec.js new file mode 100644 index 0000000000..72145a1241 --- /dev/null +++ b/core/test/unit/apps/subscribers/subscribe_form_spec.js @@ -0,0 +1,56 @@ +var should = require('should'), + hbs = require('../../../../server/services/themes/engine'), + configUtils = require('../../../utils/configUtils'), + // Stuff we are testing + subscribe_form = require('../../../../server/apps/subscribers/lib/helpers/subscribe_form'); + +describe('{{subscribe_form}} helper', function () { + before(function (done) { + hbs.express4({partialsDir: [configUtils.config.get('paths').helperTemplates]}); + hbs.cachePartials(function () { + done(); + }); + + hbs.registerHelper('subscribe_form', subscribe_form); + }); + + after(function () { + // @NOTE: We have to deregister the new helper, otherwise we operate on the global hbs engine + // which has registered the subscribe form helper. This is caused by the theme engine creating + // a global hbs instance as soon as you require the file. + hbs.handlebars.unregisterHelper('subscribe_form'); + }); + + it('returns a form with basic expected structure', function () { + var rendered = subscribe_form({data: {root: ''}, hash: {}}); + should.exist(rendered); + + should.exist(rendered); + rendered.string.should.match(/form method="post" action="\/subscribe\/"/); + rendered.string.should.match(/button id="" class="" type="submit"/); + }); + + it('returns adds classes when passed as parameters', function () { + var rendered = subscribe_form({data: {root: ''}, hash: { + form_class: 'form-class', + button_class: 'button-class' + }}); + should.exist(rendered); + + should.exist(rendered); + rendered.string.should.match(/form method="post" action="\/subscribe\/" id="" class="form-class"/); + rendered.string.should.match(/button id="" class="button-class" type="submit"/); + }); + + it('returns adds classes when passed as parameters', function () { + var rendered = subscribe_form({data: {root: ''}, hash: { + form_id: 'form-id', + button_id: 'button-id' + }}); + should.exist(rendered); + + should.exist(rendered); + rendered.string.should.match(/form method="post" action="\/subscribe\/" id="form-id" class=""/); + rendered.string.should.match(/button id="button-id" class="" type="submit"/); + }); +}); diff --git a/core/test/unit/helpers/index_spec.js b/core/test/unit/helpers/index_spec.js index 7c430e5b4a..599b9a08ae 100644 --- a/core/test/unit/helpers/index_spec.js +++ b/core/test/unit/helpers/index_spec.js @@ -6,7 +6,7 @@ var should = require('should'), helpers = require.main.require('core/server/helpers'); describe('Helpers', function () { - var hbsHelpers = ['each', 'if', 'unless', 'with', 'helperMissing', 'blockHelperMissing', 'log', 'lookup'], + var hbsHelpers = ['each', 'if', 'unless', 'with', 'helperMissing', 'blockHelperMissing', 'log', 'lookup', 'block', 'contentFor'], ghostHelpers = [ 'asset', 'author', 'authors', 'body_class', 'content', 'date', 'encode', 'excerpt', 'facebook_url', 'foreach', 'get', 'ghost_foot', 'ghost_head', 'has', 'img_url', 'is', 'lang', 'meta_description', 'meta_title', 'navigation', @@ -17,6 +17,7 @@ describe('Helpers', function () { describe('Load Core Helpers', function () { before(function () { + hbs.express4(); helpers.loadCoreHelpers(); }); diff --git a/core/test/unit/helpers/navigation_spec.js b/core/test/unit/helpers/navigation_spec.js index 68e3562258..5d3fe6b551 100644 --- a/core/test/unit/helpers/navigation_spec.js +++ b/core/test/unit/helpers/navigation_spec.js @@ -15,7 +15,7 @@ describe('{{navigation}} helper', function () { optionsData; before(function (done) { - hbs.express3({ + hbs.express4({ partialsDir: [configUtils.config.get('paths').helperTemplates] }); @@ -184,7 +184,7 @@ describe('{{navigation}} helper with custom template', function () { var optionsData; before(function (done) { - hbs.express3({ + hbs.express4({ partialsDir: [path.resolve(configUtils.config.get('paths').corePath, 'test/unit/helpers/test_tpl')] }); diff --git a/core/test/unit/helpers/pagination_spec.js b/core/test/unit/helpers/pagination_spec.js index 431e616298..8eae7e1023 100644 --- a/core/test/unit/helpers/pagination_spec.js +++ b/core/test/unit/helpers/pagination_spec.js @@ -7,7 +7,7 @@ var should = require('should'), describe('{{pagination}} helper', function () { before(function (done) { - hbs.express3({partialsDir: [configUtils.config.get('paths').helperTemplates]}); + hbs.express4({partialsDir: [configUtils.config.get('paths').helperTemplates]}); hbs.cachePartials(function () { done(); @@ -122,7 +122,7 @@ describe('{{pagination}} helper', function () { describe('{{pagination}} helper with custom template', function () { before(function (done) { - hbs.express3({partialsDir: [path.resolve(configUtils.config.get('paths').corePath, 'test/unit/helpers/test_tpl')]}); + hbs.express4({partialsDir: [path.resolve(configUtils.config.get('paths').corePath, 'test/unit/helpers/test_tpl')]}); hbs.cachePartials(function () { done();