const should = require('should');
const sinon = require('sinon');
const urlService = require('../../../../core/server/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('foo, bar');
});
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('foo');
});
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('bar');
});
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('foo');
});
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('bar, baz');
});
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('bar');
});
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('foo, bar, baz');
});
});