Ghost/test/unit/frontend/helpers/price.test.js
Hannah Wolfe 95d27e7f58
Moved frontend unit tests into their own folder
- this is a small part of a bit of cleanup of our test files
- the goal is to make the existing tests clearer with a view to making it easier to write more tests
- this makes the test structure follow the codebase structure more closely
- eventually we will colocate the frontend tests with the frontend code
2021-10-06 11:58:29 +01:00

105 lines
3.4 KiB
JavaScript

const should = require('should');
const price = require('../../../../core/frontend/helpers/price');
const handlebars = require('../../../../core/frontend/services/theme-engine/engine').handlebars;
function compile(templateString) {
const template = handlebars.compile(templateString);
template.with = (locals = {}, globals) => {
return template(locals, globals);
};
return template;
}
describe('{{price}} helper', function () {
before(function () {
handlebars.registerHelper('price', price);
});
it('throws an error for no provided parameters', function () {
(function compileWith() {
compile('{{price}}')
.with({});
}).should.throw();
});
it('throws an error for undefined parameter', function () {
(function compileWith() {
compile('{{price @dont.exist}}')
.with({});
}).should.throw();
});
it('throws if argument is not a number', function () {
(function compileWith() {
compile('{{price "not_a_number"}}')
.with({});
}).should.throw();
});
it('will format decimal adjusted amount', function () {
compile('{{price 2000}}')
.with({})
.should.equal('20');
});
it('will format with plan object', function () {
const plan = {
nickname: 'Monthly',
amount: 500,
interval: 'month',
currency: 'USD',
currency_symbol: '$'
};
const rendered = price.call({}, plan, {});
rendered.should.be.equal('$5');
});
it('will format with plan object with number format', function () {
const plan = {
nickname: 'Monthly',
amount: 500,
interval: 'month',
currency: 'USD',
currency_symbol: '$'
};
const rendered = price.call({}, plan, {hash: {numberFormat: 'long'}});
rendered.should.be.equal('$5.00');
});
it('will format symbol if only currency - USD', function () {
const rendered = price.call({}, {hash: {currency: 'USD'}});
rendered.should.be.equal('$');
});
it('will format symbol if only currency - EUR', function () {
const rendered = price.call({}, {hash: {currency: 'EUR'}});
rendered.should.be.equal('€');
});
it('will format with amount and currency', function () {
const rendered = price.call({}, 500, {hash: {currency: 'USD'}});
rendered.should.be.equal('$5');
});
it('will format with long number format', function () {
const rendered = price.call({}, 500, {hash: {currency: 'USD', numberFormat: 'long'}});
rendered.should.be.equal('$5.00');
});
it('will format with short number format with decimal value', function () {
const rendered = price.call({}, 505, {hash: {currency: 'EUR', numberFormat: 'short'}});
rendered.should.be.equal('€5.05');
});
it('will format with short number format without decimal value', function () {
const rendered = price.call({}, 500, {hash: {currency: 'EUR', numberFormat: 'short'}});
rendered.should.be.equal('€5');
});
it('will format with name currency format', function () {
const rendered = price.call({}, 500, {hash: {currency: 'USD', currencyFormat: 'name'}});
rendered.should.be.equal('5 US dollars');
});
});