0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00
ghost/test/unit/helpers/authors.test.js
Hannah Wolfe 1bbaf65a22
Removed need for index.js in frontend/helpers
- The index.js file was actually loader code
- It was mainly used by the unit tests, which needed to be rewritten to get each helper individually
2021-10-04 16:46:01 +01:00

216 lines
8.6 KiB
JavaScript

const should = require('should');
const sinon = require('sinon');
const urlService = require('../../../core/frontend/services/url');
const authorsHelper = require('../../../core/frontend/helpers/authors');
const models = require('../../../core/server/models');
const testUtils = require('../../utils');
describe('{{authors}} helper', function () {
before(function () {
models.init();
});
beforeEach(function () {
sinon.stub(urlService, 'getUrlByResourceId');
});
afterEach(function () {
sinon.restore();
});
it('can return string with authors', function () {
const authors = [
testUtils.DataGenerator.forKnex.createUser({name: 'Michael'}),
testUtils.DataGenerator.forKnex.createUser({name: 'Thomas'})
];
const rendered = authorsHelper.call({authors: authors}, {hash: {autolink: 'false'}});
should.exist(rendered);
String(rendered).should.equal('Michael, Thomas');
});
it('can return string with authors with special chars', function () {
const authors = [
testUtils.DataGenerator.forKnex.createUser({name: 'John O\'Nolan'}),
testUtils.DataGenerator.forKnex.createUser({name: 'AB=CD`EF'})
];
const rendered = authorsHelper.call({authors: authors}, {hash: {autolink: 'false'}});
should.exist(rendered);
String(rendered).should.equal('John O'Nolan, AB=CD`EF');
});
it('can use a different separator', function () {
const authors = [
testUtils.DataGenerator.forKnex.createUser({name: 'haunted'}),
testUtils.DataGenerator.forKnex.createUser({name: 'ghost'})
];
const rendered = authorsHelper.call({authors: authors}, {hash: {separator: '|', autolink: 'false'}});
should.exist(rendered);
String(rendered).should.equal('haunted|ghost');
});
it('can add a single prefix to multiple authors', function () {
const authors = [
testUtils.DataGenerator.forKnex.createUser({name: 'haunted'}),
testUtils.DataGenerator.forKnex.createUser({name: 'ghost'})
];
const rendered = authorsHelper.call({authors: authors}, {hash: {prefix: 'on ', autolink: 'false'}});
should.exist(rendered);
String(rendered).should.equal('on haunted, ghost');
});
it('can add a single suffix to multiple authors', function () {
const authors = [
testUtils.DataGenerator.forKnex.createUser({name: 'haunted'}),
testUtils.DataGenerator.forKnex.createUser({name: 'ghost'})
];
const rendered = authorsHelper.call({authors: authors}, {hash: {suffix: ' forever', autolink: 'false'}});
should.exist(rendered);
String(rendered).should.equal('haunted, ghost forever');
});
it('can add a prefix and suffix to multiple authors', function () {
const authors = [
testUtils.DataGenerator.forKnex.createUser({name: 'haunted'}),
testUtils.DataGenerator.forKnex.createUser({name: 'ghost'})
];
const rendered = authorsHelper.call({authors: authors}, {hash: {suffix: ' forever', prefix: 'on ', autolink: 'false'}});
should.exist(rendered);
String(rendered).should.equal('on haunted, ghost forever');
});
it('can add a prefix and suffix with HTML', function () {
const authors = [
testUtils.DataGenerator.forKnex.createUser({name: 'haunted'}),
testUtils.DataGenerator.forKnex.createUser({name: 'ghost'})
];
const rendered = authorsHelper.call({authors: authors}, {hash: {suffix: ' •', prefix: '… ', autolink: 'false'}});
should.exist(rendered);
String(rendered).should.equal('… haunted, ghost •');
});
it('does not add prefix or suffix if no authors exist', function () {
const rendered = authorsHelper.call({}, {hash: {prefix: 'on ', suffix: ' forever', autolink: 'false'}});
should.exist(rendered);
String(rendered).should.equal('');
});
it('can autolink authors to author pages', function () {
const authors = [
testUtils.DataGenerator.forKnex.createUser({name: 'foo', slug: 'foo-bar'}),
testUtils.DataGenerator.forKnex.createUser({name: 'bar', slug: 'bar'})
];
urlService.getUrlByResourceId.withArgs(authors[0].id).returns('author url 1');
urlService.getUrlByResourceId.withArgs(authors[1].id).returns('author url 2');
const rendered = authorsHelper.call({authors: authors});
should.exist(rendered);
String(rendered).should.equal('<a href="author url 1">foo</a>, <a href="author url 2">bar</a>');
});
it('can limit no. authors output to 1', function () {
const authors = [
testUtils.DataGenerator.forKnex.createUser({name: 'foo', slug: 'foo-bar'}),
testUtils.DataGenerator.forKnex.createUser({name: 'bar', slug: 'bar'})
];
urlService.getUrlByResourceId.withArgs(authors[0].id).returns('author url 1');
const rendered = authorsHelper.call({authors: authors}, {hash: {limit: '1'}});
should.exist(rendered);
String(rendered).should.equal('<a href="author url 1">foo</a>');
});
it('can list authors from a specified no.', function () {
const authors = [
testUtils.DataGenerator.forKnex.createUser({name: 'foo', slug: 'foo-bar'}),
testUtils.DataGenerator.forKnex.createUser({name: 'bar', slug: 'bar'})
];
urlService.getUrlByResourceId.withArgs(authors[1].id).returns('author url 2');
const rendered = authorsHelper.call({authors: authors}, {hash: {from: '2'}});
should.exist(rendered);
String(rendered).should.equal('<a href="author url 2">bar</a>');
});
it('can list authors to a specified no.', function () {
const authors = [
testUtils.DataGenerator.forKnex.createUser({name: 'foo', slug: 'foo-bar'}),
testUtils.DataGenerator.forKnex.createUser({name: 'bar', slug: 'bar'})
];
urlService.getUrlByResourceId.withArgs(authors[0].id).returns('author url');
const rendered = authorsHelper.call({authors: authors}, {hash: {to: '1'}});
should.exist(rendered);
String(rendered).should.equal('<a href="author url">foo</a>');
});
it('can list authors in a range', function () {
const authors = [
testUtils.DataGenerator.forKnex.createUser({name: 'foo', slug: 'foo-bar'}),
testUtils.DataGenerator.forKnex.createUser({name: 'bar', slug: 'bar'}),
testUtils.DataGenerator.forKnex.createUser({name: 'baz', slug: 'baz'})
];
urlService.getUrlByResourceId.withArgs(authors[1].id).returns('author url 2');
urlService.getUrlByResourceId.withArgs(authors[2].id).returns('author url 3');
const rendered = authorsHelper.call({authors: authors}, {hash: {from: '2', to: '3'}});
should.exist(rendered);
String(rendered).should.equal('<a href="author url 2">bar</a>, <a href="author url 3">baz</a>');
});
it('can limit no. authors and output from 2', function () {
const authors = [
testUtils.DataGenerator.forKnex.createUser({name: 'foo', slug: 'foo-bar'}),
testUtils.DataGenerator.forKnex.createUser({name: 'bar', slug: 'bar'}),
testUtils.DataGenerator.forKnex.createUser({name: 'baz', slug: 'baz'})
];
urlService.getUrlByResourceId.withArgs(authors[1].id).returns('author url x');
const rendered = authorsHelper.call({authors: authors}, {hash: {from: '2', limit: '1'}});
should.exist(rendered);
String(rendered).should.equal('<a href="author url x">bar</a>');
});
it('can list authors in a range (ignore limit)', function () {
const authors = [
testUtils.DataGenerator.forKnex.createUser({name: 'foo', slug: 'foo-bar'}),
testUtils.DataGenerator.forKnex.createUser({name: 'bar', slug: 'bar'}),
testUtils.DataGenerator.forKnex.createUser({name: 'baz', slug: 'baz'})
];
urlService.getUrlByResourceId.withArgs(authors[0].id).returns('author url a');
urlService.getUrlByResourceId.withArgs(authors[1].id).returns('author url b');
urlService.getUrlByResourceId.withArgs(authors[2].id).returns('author url c');
const rendered = authorsHelper.call({authors: authors}, {hash: {from: '1', to: '3', limit: '2'}});
should.exist(rendered);
String(rendered).should.equal('<a href="author url a">foo</a>, <a href="author url b">bar</a>, <a href="author url c">baz</a>');
});
});