Ghost/test/unit/helpers/meta_title_spec.js
Hannah Wolfe 22e13acd65 Updated var declarations to const/let and no lists
- All var declarations are now const or let as per ES6
- All comma-separated lists / chained declarations are now one declaration per line
- This is for clarity/readability but also made running the var-to-const/let switch smoother
- ESLint rules updated to match

How this was done:

- npm install -g jscodeshift
- git clone https://github.com/cpojer/js-codemod.git
- git clone git@github.com:TryGhost/Ghost.git shallow-ghost
- cd shallow-ghost
- jscodeshift -t ../js-codemod/transforms/unchain-variables.js . -v=2
- jscodeshift -t ../js-codemod/transforms/no-vars.js . -v=2
- yarn
- yarn test
- yarn lint / fix various lint errors (almost all indent) by opening files and saving in vscode
- grunt test-regression
- sorted!
2020-04-29 16:51:13 +01:00

216 lines
7.5 KiB
JavaScript

const should = require('should');
const sinon = require('sinon');
const configUtils = require('../../utils/configUtils');
const helpers = require('../../../core/frontend/helpers');
const settingsCache = require('../../../core/server/services/settings/cache');
describe('{{meta_title}} helper', function () {
describe('no meta_title', function () {
before(function () {
sinon.stub(settingsCache, 'get').callsFake(function (key) {
return {
title: 'Ghost'
}[key];
});
});
after(function () {
configUtils.restore();
sinon.restore();
});
it('returns correct title for homepage', function () {
const rendered = helpers.meta_title.call(
{},
{data: {root: {context: ['home']}}}
);
should.exist(rendered);
String(rendered).should.equal('Ghost');
});
it('returns correct title for paginated page', function () {
const rendered = helpers.meta_title.call(
{},
{data: {root: {context: [], pagination: {total: 2, page: 2}}}}
);
should.exist(rendered);
String(rendered).should.equal('Ghost (Page 2)');
});
it('returns correct title for a post', function () {
const rendered = helpers.meta_title.call(
{post: {title: 'Post Title'}},
{data: {root: {context: ['post']}}}
);
should.exist(rendered);
String(rendered).should.equal('Post Title');
});
it('returns correct title for a post with meta_title set', function () {
const rendered = helpers.meta_title.call(
{post: {title: 'Post Title', meta_title: 'Awesome Post'}},
{data: {root: {context: ['post']}}}
);
should.exist(rendered);
String(rendered).should.equal('Awesome Post');
});
it('returns correct title for a page with meta_title set', function () {
const rendered = helpers.meta_title.call(
{post: {title: 'About Page', meta_title: 'All about my awesomeness', page: true}},
{data: {root: {context: ['page']}}}
);
should.exist(rendered);
String(rendered).should.equal('All about my awesomeness');
});
it('returns correct title for a tag page', function () {
const tag = {relativeUrl: '/tag/rasper-red', tag: {name: 'Rasper Red'}};
const rendered = helpers.meta_title.call(
tag,
{data: {root: {context: ['tag']}}}
);
should.exist(rendered);
String(rendered).should.equal('Rasper Red - Ghost');
});
it('returns correct title for a paginated tag page', function () {
const rendered = helpers.meta_title.call(
{tag: {name: 'Rasper Red'}},
{data: {root: {context: ['tag', 'paged'], pagination: {total: 2, page: 2}}}}
);
should.exist(rendered);
String(rendered).should.equal('Rasper Red - Ghost (Page 2)');
});
it('uses tag meta_title to override default response on tag page', function () {
const rendered = helpers.meta_title.call(
{tag: {name: 'Rasper Red', meta_title: 'Sasper Red'}},
{data: {root: {context: ['tag']}}}
);
should.exist(rendered);
String(rendered).should.equal('Sasper Red');
});
it('uses tag meta_title to override default response on paginated tag page', function () {
const rendered = helpers.meta_title.call(
{tag: {name: 'Rasper Red', meta_title: 'Sasper Red'}},
{data: {root: {context: ['tag']}}}
);
should.exist(rendered);
String(rendered).should.equal('Sasper Red');
});
it('returns correct title for an author page', function () {
const rendered = helpers.meta_title.call(
{author: {name: 'Donald Duck'}},
{data: {root: {context: ['author']}}}
);
should.exist(rendered);
String(rendered).should.equal('Donald Duck - Ghost');
});
it('returns correct title for a paginated author page', function () {
const rendered = helpers.meta_title.call(
{author: {name: 'Donald Duck'}},
{data: {root: {context: ['author', 'paged'], pagination: {total: 2, page: 2}}}}
);
should.exist(rendered);
String(rendered).should.equal('Donald Duck - Ghost (Page 2)');
});
it('returns correctly escaped title of a post', function () {
const rendered = helpers.meta_title.call(
{post: {title: 'Post Title "</>'}},
{data: {root: {context: ['post']}}}
);
should.exist(rendered);
String(rendered).should.equal('Post Title "</>');
});
it('returns meta_title on post when used within {{#foreach posts}}', function () {
const rendered = helpers.meta_title.call(
{meta_title: 'Awesome Post'},
{data: {root: {context: ['home']}}}
);
should.exist(rendered);
String(rendered).should.equal('Awesome Post');
});
});
describe('with meta_title', function () {
it('returns correct title for homepage when meta_title is defined', function () {
sinon.stub(settingsCache, 'get').callsFake(function (key) {
return {
title: 'Ghost',
meta_title: 'Meta Title Ghost'
}[key];
});
const rendered = helpers.meta_title.call(
{},
{data: {root: {context: ['home']}}}
);
should.exist(rendered);
String(rendered).should.equal('Meta Title Ghost');
});
it('returns correct title for paginated page', function () {
const rendered = helpers.meta_title.call(
{},
{data: {root: {context: [], pagination: {total: 2, page: 2}}}}
);
should.exist(rendered);
String(rendered).should.equal('Ghost (Page 2)');
});
it('returns correct title for a tag page', function () {
const tag = {relativeUrl: '/tag/rasper-red', tag: {name: 'Rasper Red'}};
const rendered = helpers.meta_title.call(
tag,
{data: {root: {context: ['tag']}}}
);
should.exist(rendered);
String(rendered).should.equal('Rasper Red - Ghost');
});
it('returns correct title for an author page', function () {
const rendered = helpers.meta_title.call(
{author: {name: 'Donald Duck'}},
{data: {root: {context: ['author']}}}
);
should.exist(rendered);
String(rendered).should.equal('Donald Duck - Ghost');
});
it('returns correct title for a paginated author page', function () {
const rendered = helpers.meta_title.call(
{author: {name: 'Donald Duck'}},
{data: {root: {context: ['author', 'paged'], pagination: {total: 2, page: 2}}}}
);
should.exist(rendered);
String(rendered).should.equal('Donald Duck - Ghost (Page 2)');
});
});
});