Ghost/test/unit/helpers/is_spec.js
Sam Lord caea330647 Change to use @tryghost/logging
no issue

Logging is now controlled by a logginrc.js file in the root of the project - and now we can just import @tryghost/logging everywhere
2021-06-15 15:59:11 +01:00

69 lines
1.8 KiB
JavaScript

const sinon = require('sinon');
const helpers = require('../../../core/frontend/helpers');
const logging = require('@tryghost/logging');
describe('{{#is}} helper', function () {
afterEach(function () {
sinon.restore();
});
// All positive tests
it('should match single context "index"', function () {
const fn = sinon.spy();
const inverse = sinon.spy();
helpers.is.call(
{},
'index',
{fn: fn, inverse: inverse, data: {root: {context: ['home', 'index']}}}
);
fn.called.should.be.true();
inverse.called.should.be.false();
});
it('should match OR context "index, paged"', function () {
const fn = sinon.spy();
const inverse = sinon.spy();
helpers.is.call(
{},
'index, paged',
{fn: fn, inverse: inverse, data: {root: {context: ['tag', 'paged']}}}
);
fn.called.should.be.true();
inverse.called.should.be.false();
});
it('should not match "paged"', function () {
const fn = sinon.spy();
const inverse = sinon.spy();
helpers.is.call(
{},
'paged',
{fn: fn, inverse: inverse, data: {root: {context: ['index', 'home']}}}
);
fn.called.should.be.false();
inverse.called.should.be.true();
});
it('should log warning with no args', function () {
const fn = sinon.spy();
const inverse = sinon.spy();
const logWarn = sinon.stub(logging, 'warn');
helpers.is.call(
{},
undefined,
{fn: fn, inverse: inverse, data: {root: {context: ['index', 'home']}}}
);
logWarn.called.should.be.true();
fn.called.should.be.false();
inverse.called.should.be.false();
});
});