Ghost/test/unit/frontend/helpers/tiers.test.js
Rishabh 665c30f255 Added new {{tiers}} theme helper
refs https://github.com/TryGhost/Team/issues/1004

- adds new `{{tiers}}` helper behind `multipleProducts` flag
- `{{tiers}}` outputs a string with list of tiers that have access to specific post when used in a post context in theme
- outputs empty string when used out of a post context and without access to `visibility` property
- uses tiers attached to post column for data
2022-03-04 18:22:59 +05:30

121 lines
3.6 KiB
JavaScript

const should = require('should');
const tiersHelper = require('../../../../core/frontend/helpers/tiers');
const {mockManager} = require('../../../utils/e2e-framework');
describe('{{tiers}} helper', function () {
beforeEach(function () {
mockManager.mockLabsEnabled('multipleProducts');
});
it('can return string with tiers', function () {
const tiers = [
{name: 'tier 1'},
{name: 'tier 2'},
{name: 'tier 3'}
];
const rendered = tiersHelper.call({tiers: tiers}, {hash: {}});
should.exist(rendered);
String(rendered).should.equal('tier 1, tier 2 and tier 3 tiers');
});
it('can use a different separator', function () {
const tiers = [
{name: 'tier 1'},
{name: 'tier 2'},
{name: 'tier 3'}
];
const rendered = tiersHelper.call({tiers: tiers}, {hash: {separator: '|'}});
should.exist(rendered);
String(rendered).should.equal('tier 1|tier 2 and tier 3 tiers');
});
it('can use a different final separator', function () {
const tiers = [
{name: 'tier 1'},
{name: 'tier 2'},
{name: 'tier 3'}
];
const rendered = tiersHelper.call({tiers: tiers}, {hash: {lastSeparator: ' as well as '}});
should.exist(rendered);
String(rendered).should.equal('tier 1, tier 2 as well as tier 3 tiers');
});
it('can add a single prefix to multiple tiers', function () {
const tiers = [
{name: 'tier 1'},
{name: 'tier 2'},
{name: 'tier 3'}
];
const rendered = tiersHelper.call({tiers: tiers}, {hash: {prefix: 'on '}});
should.exist(rendered);
String(rendered).should.equal('on tier 1, tier 2 and tier 3 tiers');
});
it('can add a single suffix to multiple tiers', function () {
const tiers = [
{name: 'tier 1'},
{name: 'tier 2'},
{name: 'tier 3'}
];
const rendered = tiersHelper.call({tiers: tiers}, {hash: {suffix: ' products'}});
should.exist(rendered);
String(rendered).should.equal('tier 1, tier 2 and tier 3 products');
});
it('can override empty suffix to multiple tiers', function () {
const tiers = [
{name: 'tier 1'},
{name: 'tier 2'},
{name: 'tier 3'}
];
const rendered = tiersHelper.call({tiers: tiers}, {hash: {suffix: ''}});
should.exist(rendered);
String(rendered).should.equal('tier 1, tier 2 and tier 3');
});
it('can add a prefix and suffix to multiple tiers', function () {
const tiers = [
{name: 'tier 1'},
{name: 'tier 2'},
{name: 'tier 3'}
];
const rendered = tiersHelper.call({tiers: tiers}, {hash: {prefix: 'on ', suffix: ' products'}});
should.exist(rendered);
String(rendered).should.equal('on tier 1, tier 2 and tier 3 products');
});
it('can add a prefix and suffix with HTML', function () {
const tiers = [
{name: 'tier 1'},
{name: 'tier 2'},
{name: 'tier 3'}
];
const rendered = tiersHelper.call({tiers: tiers}, {hash: {suffix: ' •', prefix: '… '}});
should.exist(rendered);
String(rendered).should.equal('… tier 1, tier 2 and tier 3 •');
});
it('does not add prefix or suffix if no tiers exist', function () {
const rendered = tiersHelper.call({}, {hash: {prefix: 'on ', suffix: ' products'}});
should.exist(rendered);
String(rendered).should.equal('');
});
});