0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-27 22:49:56 -05:00
ghost/test/unit/data/meta/context_object_spec.js
Hannah Wolfe 7f1d3ebc07
Move tests from core to root (#11700)
- move all test files from core/test to test/
- updated all imports and other references
- all code inside of core/ is then application code
- tests are correctly at the root level
- consistent with other repos/projects

Co-authored-by: Kevin Ansfield <kevin@lookingsideways.co.uk>
2020-03-30 16:26:47 +01:00

80 lines
2.5 KiB
JavaScript

var should = require('should'),
sinon = require('sinon'),
getContextObject = require('../../../../core/frontend/meta/context_object.js'),
settingsCache = require('../../../../core/server/services/settings/cache');
describe('getContextObject', function () {
var data, context, contextObject;
it('should be a function', function () {
should.exist(getContextObject);
});
it('should return post context object for a post', function () {
data = {post: {id: 2}};
context = ['post'];
contextObject = getContextObject(data, context);
should.exist(contextObject);
contextObject.should.eql(data.post);
});
it('should return post context object for a static page', function () {
data = {post: {id: 2}};
context = ['page'];
contextObject = getContextObject(data, context);
should.exist(contextObject);
contextObject.should.eql(data.post);
});
it('should return post context object for an AMP post', function () {
data = {post: {id: 2}};
context = ['amp', 'post'];
contextObject = getContextObject(data, context);
should.exist(contextObject);
contextObject.should.eql(data.post);
});
it('should return post context object for a static page with amp context', function () {
data = {post: {id: 2}};
context = ['amp', 'page'];
contextObject = getContextObject(data, context);
should.exist(contextObject);
contextObject.should.eql(data.post);
});
it('should return page', function () {
data = {page: {id: 2}};
context = ['news', 'page'];
contextObject = getContextObject(data, context);
should.exist(contextObject);
contextObject.should.eql(data.page);
});
describe('override blog', function () {
before(function () {
sinon.stub(settingsCache, 'get').callsFake(function (key) {
return {
cover_image: 'test.png'
}[key];
});
});
after(function () {
sinon.restore();
});
it('should return blog context object for unknown context', function () {
data = {post: {id: 2}};
context = ['unknown'];
contextObject = getContextObject(data, context);
should.exist(contextObject);
contextObject.should.have.property('cover_image', 'test.png');
});
});
});