🐛 Fixed custom post excerpt length (#8826)

closes #8823

- if a custom post excerpt is set, the default max length of 50 was used, which was wrong
- adds more tests
This commit is contained in:
Aileen Nowak 2017-08-02 15:09:12 +04:00 committed by Katharina Irrgang
parent 2f866a99f6
commit a63c26a82b
3 changed files with 109 additions and 8 deletions

View File

@ -19,6 +19,13 @@ module.exports = function excerpt(options) {
truncateOptions[key] = parseInt(truncateOptions[key], 10); truncateOptions[key] = parseInt(truncateOptions[key], 10);
}); });
if (!_.isEmpty(this.custom_excerpt)) {
truncateOptions.characters = this.custom_excerpt.length;
if (truncateOptions.words) {
delete truncateOptions.words;
}
}
return new SafeString( return new SafeString(
getMetaDataExcerpt(excerptText, truncateOptions) getMetaDataExcerpt(excerptText, truncateOptions)
); );

View File

@ -56,4 +56,30 @@ describe('getExcerpt', function () {
getExcerpt(html, {characters: '8'}).should.equal(expected); getExcerpt(html, {characters: '8'}).should.equal(expected);
}); });
it('should fall back to 50 words if not specified',
function () {
var html = '<p>There are <br />10<br> types<br/> of people in <img src="a">the world:' +
'<img src=b alt="c"> those who <img src="@" onclick="javascript:alert(\'hello\');">' +
'understand trinary</p>, those who don\'t <div style="" class=~/\'-,._?!|#>and' +
'< test > those<<< test >>> who mistake it &lt;for&gt; binary.',
expected = 'There are 10 types of people in the world: those who understand trinary, those who ' +
'don\'t and those>> who mistake it &lt;for&gt; binary.';
getExcerpt(html).should.equal(expected);
});
it('should truncate plain text for custom excerpts',
function () {
var html = 'This is a custom excerpt. It should always be rendered in full length and not being cut ' +
'off. The maximum length of a custom excerpt is 300 characters. Enough to tell a bit about ' +
'your story and make a nice summary for your readers. It\s only allowed to truncate anything ' +
'after 300 characters. This give',
expected = 'This is a custom excerpt. It should always be rendered in full length and not being cut ' +
'off. The maximum length of a custom excerpt is 300 characters. Enough to tell a bit about ' +
'your story and make a nice summary for your readers. It\s only allowed to truncate anything ' +
'after 300 characters. This give';
getExcerpt(html, {characters: '300'}).should.equal(expected);
});
}); });

View File

@ -6,7 +6,10 @@ var should = require('should'), // jshint ignore:line
describe('{{excerpt}} Helper', function () { describe('{{excerpt}} Helper', function () {
it('can render excerpt', function () { it('can render excerpt', function () {
var html = 'Hello World', var html = 'Hello World',
rendered = helpers.excerpt.call({html: html}); rendered = helpers.excerpt.call({
html: html,
custom_excerpt: ''
});
should.exist(rendered); should.exist(rendered);
rendered.string.should.equal(html); rendered.string.should.equal(html);
@ -19,7 +22,10 @@ describe('{{excerpt}} Helper', function () {
'< test > those<<< test >>> who mistake it &lt;for&gt; binary.', '< test > those<<< test >>> who mistake it &lt;for&gt; binary.',
expected = 'There are 10 types of people in the world: those who understand trinary, those who ' + expected = 'There are 10 types of people in the world: those who understand trinary, those who ' +
'don\'t and those>> who mistake it &lt;for&gt; binary.', 'don\'t and those>> who mistake it &lt;for&gt; binary.',
rendered = helpers.excerpt.call({html: html}); rendered = helpers.excerpt.call({
html: html,
custom_excerpt: ''
});
should.exist(rendered); should.exist(rendered);
rendered.string.should.equal(expected); rendered.string.should.equal(expected);
@ -28,7 +34,10 @@ describe('{{excerpt}} Helper', function () {
it('strips multiple inline footnotes', function () { it('strips multiple inline footnotes', function () {
var html = '<p>Testing<sup id="fnref:1"><a href="#fn:1" rel="footnote">1</a></sup>, my footnotes. And stuff. Footnote<sup id="fnref:2"><a href="#fn:2" rel="footnote">2</a></sup><a href="http://google.com">with a link</a> right after.', var html = '<p>Testing<sup id="fnref:1"><a href="#fn:1" rel="footnote">1</a></sup>, my footnotes. And stuff. Footnote<sup id="fnref:2"><a href="#fn:2" rel="footnote">2</a></sup><a href="http://google.com">with a link</a> right after.',
expected = 'Testing, my footnotes. And stuff. Footnotewith a link right after.', expected = 'Testing, my footnotes. And stuff. Footnotewith a link right after.',
rendered = helpers.excerpt.call({html: html}); rendered = helpers.excerpt.call({
html: html,
custom_excerpt: ''
});
should.exist(rendered); should.exist(rendered);
rendered.string.should.equal(expected); rendered.string.should.equal(expected);
@ -38,7 +47,10 @@ describe('{{excerpt}} Helper', function () {
var html = '<p>Testing<sup id="fnref:1"><a href="#fn:1" rel="footnote">1</a></sup> a very short post with a single footnote.</p>\n' + var html = '<p>Testing<sup id="fnref:1"><a href="#fn:1" rel="footnote">1</a></sup> a very short post with a single footnote.</p>\n' +
'<div class="footnotes"><ol><li class="footnote" id="fn:1"><p><a href="https://ghost.org">https://ghost.org</a> <a href="#fnref:1" title="return to article">↩</a></p></li></ol></div>', '<div class="footnotes"><ol><li class="footnote" id="fn:1"><p><a href="https://ghost.org">https://ghost.org</a> <a href="#fnref:1" title="return to article">↩</a></p></li></ol></div>',
expected = 'Testing a very short post with a single footnote.', expected = 'Testing a very short post with a single footnote.',
rendered = helpers.excerpt.call({html: html}); rendered = helpers.excerpt.call({
html: html,
custom_excerpt: ''
});
should.exist(rendered); should.exist(rendered);
rendered.string.should.equal(expected); rendered.string.should.equal(expected);
@ -49,7 +61,10 @@ describe('{{excerpt}} Helper', function () {
expected = 'Hello World!', expected = 'Hello World!',
rendered = ( rendered = (
helpers.excerpt.call( helpers.excerpt.call(
{html: html}, {
html: html,
custom_excerpt: ''
},
{hash: {words: '2'}} {hash: {words: '2'}}
) )
); );
@ -63,7 +78,10 @@ describe('{{excerpt}} Helper', function () {
expected = 'Едквюэ опортэат', expected = 'Едквюэ опортэат',
rendered = ( rendered = (
helpers.excerpt.call( helpers.excerpt.call(
{html: html}, {
html: html,
custom_excerpt: ''
},
{hash: {words: '2'}} {hash: {words: '2'}}
) )
); );
@ -77,7 +95,10 @@ describe('{{excerpt}} Helper', function () {
expected = 'Hello Wo', expected = 'Hello Wo',
rendered = ( rendered = (
helpers.excerpt.call( helpers.excerpt.call(
{html: html}, {
html: html,
custom_excerpt: ''
},
{hash: {characters: '8'}} {hash: {characters: '8'}}
) )
); );
@ -89,7 +110,30 @@ describe('{{excerpt}} Helper', function () {
it('uses custom excerpt if provided instead of truncating html', function () { it('uses custom excerpt if provided instead of truncating html', function () {
var html = '<p>Hello <strong>World! It\'s me!</strong></p>', var html = '<p>Hello <strong>World! It\'s me!</strong></p>',
customExcerpt = 'My Custom Excerpt wins!', customExcerpt = 'My Custom Excerpt wins!',
expected = 'My Custo', expected = 'My Custom Excerpt wins!',
rendered = (
helpers.excerpt.call(
{
html: html,
custom_excerpt: customExcerpt
}
)
);
should.exist(rendered);
rendered.string.should.equal(expected);
});
it('does not truncate custom excerpt if characters options is provided', function () {
var html = '<p>Hello <strong>World! It\'s me!</strong></p>',
customExcerpt = 'This is a custom excerpt. It should always be rendered in full length and not being cut ' +
'off. The maximum length of a custom excerpt is 300 characters. Enough to tell a bit about ' +
'your story and make a nice summary for your readers. It\s only allowed to truncate anything ' +
'after 300 characters. This give',
expected = 'This is a custom excerpt. It should always be rendered in full length and not being cut ' +
'off. The maximum length of a custom excerpt is 300 characters. Enough to tell a bit about ' +
'your story and make a nice summary for your readers. It\s only allowed to truncate anything ' +
'after 300 characters. This give',
rendered = ( rendered = (
helpers.excerpt.call( helpers.excerpt.call(
{ {
@ -103,4 +147,28 @@ describe('{{excerpt}} Helper', function () {
should.exist(rendered); should.exist(rendered);
rendered.string.should.equal(expected); rendered.string.should.equal(expected);
}); });
it('does not truncate custom excerpt if words options is provided', function () {
var html = '<p>Hello <strong>World! It\'s me!</strong></p>',
customExcerpt = 'This is a custom excerpt. It should always be rendered in full length and not being cut ' +
'off. The maximum length of a custom excerpt is 300 characters. Enough to tell a bit about ' +
'your story and make a nice summary for your readers. It\s only allowed to truncate anything ' +
'after 300 characters. This give',
expected = 'This is a custom excerpt. It should always be rendered in full length and not being cut ' +
'off. The maximum length of a custom excerpt is 300 characters. Enough to tell a bit about ' +
'your story and make a nice summary for your readers. It\s only allowed to truncate anything ' +
'after 300 characters. This give',
rendered = (
helpers.excerpt.call(
{
html: html,
custom_excerpt: customExcerpt
},
{hash: {words: '10'}}
)
);
should.exist(rendered);
rendered.string.should.equal(expected);
});
}); });