Ghost/test/unit/frontend/helpers/ghost_foot.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

92 lines
3.1 KiB
JavaScript

const should = require('should');
const sinon = require('sinon');
const ghost_foot = require('../../../../core/frontend/helpers/ghost_foot');
const {settingsCache} = require('../../../../core/frontend/services/proxy');
describe('{{ghost_foot}} helper', function () {
let settingsCacheStub;
afterEach(function () {
sinon.restore();
});
beforeEach(function () {
settingsCacheStub = sinon.stub(settingsCache, 'get');
});
it('outputs global injected code', function () {
settingsCacheStub.withArgs('codeinjection_foot').returns('<script>var test = \'I am a variable!\'</script>');
const rendered = ghost_foot({data: {}});
should.exist(rendered);
rendered.string.should.match(/<script>var test = 'I am a variable!'<\/script>/);
});
it('outputs post injected code', function () {
settingsCacheStub.withArgs('codeinjection_foot').returns('<script>var test = \'I am a variable!\'</script>');
const rendered = ghost_foot({
data: {
root: {
post: {
codeinjection_foot: 'post-codeinjection'
}
}
}
});
should.exist(rendered);
rendered.string.should.match(/<script>var test = 'I am a variable!'<\/script>/);
rendered.string.should.match(/post-codeinjection/);
});
it('handles post injected code being null', function () {
settingsCacheStub.withArgs('codeinjection_foot').returns('<script>var test = \'I am a variable!\'</script>');
const rendered = ghost_foot({
data: {
root: {
post: {
codeinjection_foot: null
}
}
}
});
should.exist(rendered);
rendered.string.should.match(/<script>var test = 'I am a variable!'<\/script>/);
rendered.string.should.not.match(/post-codeinjection/);
});
it('handles post injected code being empty', function () {
settingsCacheStub.withArgs('codeinjection_foot').returns('<script>var test = \'I am a variable!\'</script>');
const rendered = ghost_foot({
data: {
root: {
post: {
codeinjection_foot: ''
}
}
}
});
should.exist(rendered);
rendered.string.should.match(/<script>var test = 'I am a variable!'<\/script>/);
rendered.string.should.not.match(/post-codeinjection/);
});
it('handles global empty code injection', function () {
settingsCacheStub.withArgs('codeinjection_foot').returns('');
const rendered = ghost_foot({data: {}});
should.exist(rendered);
rendered.string.should.eql('');
});
it('handles global undefined code injection', function () {
settingsCacheStub.withArgs('codeinjection_foot').returns(undefined);
const rendered = ghost_foot({data: {}});
should.exist(rendered);
rendered.string.should.eql('');
});
});