2020-06-17 15:12:32 +03:00
|
|
|
const path = require('path');
|
2020-04-08 20:21:15 +03:00
|
|
|
const should = require('should');
|
2020-06-23 17:54:58 +03:00
|
|
|
const sinon = require('sinon');
|
2020-06-17 15:12:32 +03:00
|
|
|
const nock = require('nock');
|
2020-04-08 20:21:15 +03:00
|
|
|
const configUtils = require('../../utils/configUtils');
|
|
|
|
const mobiledocLib = require('../../../core/server/lib/mobiledoc');
|
2020-06-17 15:12:32 +03:00
|
|
|
const storage = require('../../../core/server/adapters/storage');
|
2020-06-23 17:54:58 +03:00
|
|
|
const urlUtils = require('../../../core/shared/url-utils');
|
2020-07-02 20:03:22 +03:00
|
|
|
const mockUtils = require('../../utils/mocks');
|
2020-04-08 20:21:15 +03:00
|
|
|
|
|
|
|
describe('lib/mobiledoc', function () {
|
|
|
|
afterEach(function () {
|
2020-06-23 17:54:58 +03:00
|
|
|
sinon.restore();
|
2020-06-17 15:12:32 +03:00
|
|
|
nock.cleanAll();
|
2020-04-08 20:21:15 +03:00
|
|
|
configUtils.restore();
|
2020-06-15 18:45:36 +03:00
|
|
|
// ensure config changes are reset and picked up by next test
|
|
|
|
mobiledocLib.reload();
|
2020-07-02 20:03:22 +03:00
|
|
|
mockUtils.modules.unmockNonExistentModule(/sharp/);
|
2020-04-08 20:21:15 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('mobiledocHtmlRenderer', function () {
|
|
|
|
it('renders all default cards and atoms', function () {
|
|
|
|
let mobiledoc = {
|
|
|
|
version: '0.3.1',
|
2021-02-16 14:42:07 +03:00
|
|
|
ghostVersion: '0.3',
|
2020-04-08 20:21:15 +03:00
|
|
|
atoms: [
|
|
|
|
['soft-return', '', {}]
|
|
|
|
],
|
|
|
|
cards: [
|
|
|
|
['markdown', {
|
|
|
|
markdown: '# Markdown card\nSome markdown'
|
|
|
|
}],
|
2021-02-18 02:00:26 +03:00
|
|
|
['paywall', {}],
|
2020-04-08 20:21:15 +03:00
|
|
|
['hr', {}],
|
|
|
|
['image', {
|
|
|
|
cardWidth: 'wide',
|
|
|
|
src: '/content/images/2018/04/NatGeo06.jpg',
|
2020-06-15 18:24:02 +03:00
|
|
|
width: 4000,
|
|
|
|
height: 2000,
|
2020-04-08 20:21:15 +03:00
|
|
|
caption: 'Birdies'
|
|
|
|
}],
|
|
|
|
['html', {
|
|
|
|
html: '<h2>HTML card</h2>\n<div><p>Some HTML</p></div>'
|
|
|
|
}],
|
|
|
|
['embed', {
|
|
|
|
html: '<h2>Embed card</h2>'
|
|
|
|
}],
|
|
|
|
['gallery', {
|
|
|
|
images: [{
|
2020-06-11 15:27:56 +03:00
|
|
|
row: 0,
|
2020-04-08 20:21:15 +03:00
|
|
|
fileName: 'test.png',
|
2020-06-11 15:27:56 +03:00
|
|
|
src: '/content/images/test.png',
|
2020-04-08 20:21:15 +03:00
|
|
|
width: 1000,
|
|
|
|
height: 500
|
|
|
|
}]
|
|
|
|
}]
|
|
|
|
],
|
|
|
|
markups: [],
|
|
|
|
sections: [
|
|
|
|
[1, 'p', [
|
|
|
|
[0, [], 0, 'One'],
|
|
|
|
[1, [], 0, 0],
|
|
|
|
[0, [], 0, 'Two']
|
|
|
|
]],
|
|
|
|
[10, 0],
|
|
|
|
[1, 'p', [
|
|
|
|
[0, [], 0, 'Three']
|
|
|
|
]],
|
|
|
|
[10, 1],
|
|
|
|
[10, 2],
|
2021-02-18 02:00:26 +03:00
|
|
|
[10, 3],
|
2020-04-08 20:21:15 +03:00
|
|
|
[1, 'p', [
|
|
|
|
[0, [], 0, 'Four']
|
|
|
|
]],
|
|
|
|
[10, 4],
|
|
|
|
[10, 5],
|
2021-02-18 02:00:26 +03:00
|
|
|
[10, 6],
|
2020-04-08 20:21:15 +03:00
|
|
|
[1, 'p', []]
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
mobiledocLib.mobiledocHtmlRenderer.render(mobiledoc)
|
2021-02-18 22:49:40 +03:00
|
|
|
.should.eql('<p>One<br>Two</p><!--kg-card-begin: markdown--><h1 id="markdowncard">Markdown card</h1>\n<p>Some markdown</p>\n<!--kg-card-end: markdown--><p>Three</p><!--members-only--><hr><figure class="kg-card kg-image-card kg-width-wide kg-card-hascaption"><img src="/content/images/2018/04/NatGeo06.jpg" class="kg-image" alt loading="lazy" width="2000" height="1000" srcset="/content/images/size/w600/2018/04/NatGeo06.jpg 600w, /content/images/size/w1000/2018/04/NatGeo06.jpg 1000w, /content/images/size/w1600/2018/04/NatGeo06.jpg 1600w, /content/images/size/w2400/2018/04/NatGeo06.jpg 2400w" sizes="(min-width: 1200px) 1200px"><figcaption>Birdies</figcaption></figure><p>Four</p><!--kg-card-begin: html--><h2>HTML card</h2>\n<div><p>Some HTML</p></div><!--kg-card-end: html--><figure class="kg-card kg-embed-card"><h2>Embed card</h2></figure><figure class="kg-card kg-gallery-card kg-width-wide"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="/content/images/test.png" width="1000" height="500" loading="lazy" alt srcset="/content/images/size/w600/test.png 600w, /content/images/test.png 1000w" sizes="(min-width: 720px) 720px"></div></div></div></figure>');
|
2020-04-08 20:21:15 +03:00
|
|
|
});
|
2020-06-15 18:45:36 +03:00
|
|
|
|
2021-02-16 14:42:07 +03:00
|
|
|
it('renders according to ghostVersion', function () {
|
|
|
|
let mobiledoc = {
|
|
|
|
version: '0.3.1',
|
|
|
|
ghostVersion: '4.0',
|
|
|
|
atoms: [],
|
|
|
|
cards: [
|
|
|
|
['markdown', {
|
|
|
|
markdown: '# Header One'
|
|
|
|
}]
|
|
|
|
],
|
|
|
|
markups: [],
|
|
|
|
sections: [
|
|
|
|
[10, 0],
|
|
|
|
[1, 'h2', [
|
|
|
|
[0, [], 0, 'Héader Two']]
|
|
|
|
]
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
mobiledocLib.mobiledocHtmlRenderer.render(mobiledoc)
|
|
|
|
.should.eql('<!--kg-card-begin: markdown--><h1 id="header-one">Header One</h1>\n<!--kg-card-end: markdown--><h2 id="h%C3%A9ader-two">Héader Two</h2>');
|
|
|
|
});
|
|
|
|
|
2020-06-15 18:45:36 +03:00
|
|
|
it('respects srcsets config', function () {
|
|
|
|
configUtils.set('imageOptimization:srcsets', false);
|
|
|
|
|
|
|
|
let mobiledoc = {
|
|
|
|
version: '0.3.1',
|
|
|
|
atoms: [],
|
|
|
|
cards: [
|
|
|
|
['image', {
|
|
|
|
cardWidth: 'wide',
|
|
|
|
src: '/content/images/2018/04/NatGeo06.jpg',
|
|
|
|
width: 4000,
|
|
|
|
height: 2000,
|
|
|
|
caption: 'Birdies'
|
|
|
|
}],
|
|
|
|
['gallery', {
|
|
|
|
images: [{
|
|
|
|
row: 0,
|
|
|
|
fileName: 'test.png',
|
|
|
|
src: '/content/images/test.png',
|
|
|
|
width: 1000,
|
|
|
|
height: 500
|
|
|
|
}]
|
|
|
|
}]
|
|
|
|
],
|
|
|
|
markups: [],
|
|
|
|
sections: [
|
|
|
|
[10, 0],
|
|
|
|
[10, 1]
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
mobiledocLib.mobiledocHtmlRenderer.render(mobiledoc)
|
2021-02-18 22:49:40 +03:00
|
|
|
.should.eql('<figure class="kg-card kg-image-card kg-width-wide kg-card-hascaption"><img src="/content/images/2018/04/NatGeo06.jpg" class="kg-image" alt loading="lazy" width="2000" height="1000"><figcaption>Birdies</figcaption></figure><figure class="kg-card kg-gallery-card kg-width-wide"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="/content/images/test.png" width="1000" height="500" loading="lazy" alt></div></div></div></figure>');
|
2020-06-15 18:45:36 +03:00
|
|
|
});
|
2020-07-02 20:03:22 +03:00
|
|
|
|
|
|
|
it('does not render srcsets for non-resizable images', function () {
|
|
|
|
let mobiledoc = {
|
|
|
|
version: '0.3.1',
|
|
|
|
atoms: [],
|
|
|
|
cards: [
|
|
|
|
['image', {
|
|
|
|
cardWidth: '',
|
|
|
|
src: '/content/images/2020/07/animated.gif',
|
|
|
|
width: 4000,
|
|
|
|
height: 2000
|
|
|
|
}]
|
|
|
|
],
|
|
|
|
markups: [],
|
|
|
|
sections: [[10, 0]]
|
|
|
|
};
|
|
|
|
|
|
|
|
mobiledocLib.mobiledocHtmlRenderer.render(mobiledoc)
|
2021-02-18 22:49:40 +03:00
|
|
|
.should.eql('<figure class="kg-card kg-image-card"><img src="/content/images/2020/07/animated.gif" class="kg-image" alt loading="lazy" width="4000" height="2000"></figure>');
|
2020-07-02 20:03:22 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
it('does not render srcsets when sharp is not available', function () {
|
|
|
|
mockUtils.modules.mockNonExistentModule('sharp', new Error(), true);
|
|
|
|
|
|
|
|
let mobiledoc = {
|
|
|
|
version: '0.3.1',
|
|
|
|
atoms: [],
|
|
|
|
cards: [
|
|
|
|
['image', {
|
|
|
|
src: '/content/images/2018/04/NatGeo06.jpg',
|
|
|
|
width: 4000,
|
|
|
|
height: 2000
|
|
|
|
}]
|
|
|
|
],
|
|
|
|
markups: [],
|
|
|
|
sections: [
|
|
|
|
[10, 0]
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
mobiledocLib.mobiledocHtmlRenderer.render(mobiledoc)
|
2021-02-18 22:49:40 +03:00
|
|
|
.should.eql('<figure class="kg-card kg-image-card"><img src="/content/images/2018/04/NatGeo06.jpg" class="kg-image" alt loading="lazy" width="4000" height="2000"></figure>');
|
2020-07-02 20:03:22 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
it('does not render srcsets with incompatible storage engine', function () {
|
|
|
|
sinon.stub(storage.getStorage(), 'saveRaw').value(null);
|
|
|
|
|
|
|
|
let mobiledoc = {
|
|
|
|
version: '0.3.1',
|
|
|
|
atoms: [],
|
|
|
|
cards: [
|
|
|
|
['image', {
|
|
|
|
src: '/content/images/2018/04/NatGeo06.jpg',
|
|
|
|
width: 4000,
|
|
|
|
height: 2000
|
|
|
|
}]
|
|
|
|
],
|
|
|
|
markups: [],
|
|
|
|
sections: [
|
|
|
|
[10, 0]
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
mobiledocLib.mobiledocHtmlRenderer.render(mobiledoc)
|
2021-02-18 22:49:40 +03:00
|
|
|
.should.eql('<figure class="kg-card kg-image-card"><img src="/content/images/2018/04/NatGeo06.jpg" class="kg-image" alt loading="lazy" width="4000" height="2000"></figure>');
|
2020-07-02 20:03:22 +03:00
|
|
|
});
|
2020-04-08 20:21:15 +03:00
|
|
|
});
|
2020-06-17 15:12:32 +03:00
|
|
|
|
|
|
|
describe('populateImageSizes', function () {
|
|
|
|
let originalStoragePath;
|
|
|
|
|
|
|
|
beforeEach(function () {
|
|
|
|
originalStoragePath = storage.getStorage().storagePath;
|
|
|
|
storage.getStorage().storagePath = path.join(__dirname, '../../utils/fixtures/images/');
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(function () {
|
|
|
|
storage.getStorage().storagePath = originalStoragePath;
|
|
|
|
});
|
|
|
|
|
2020-06-18 17:35:40 +03:00
|
|
|
it('works', async function () {
|
2020-06-17 15:12:32 +03:00
|
|
|
let mobiledoc = {
|
|
|
|
cards: [
|
|
|
|
['image', {src: '/content/images/ghost-logo.png'}],
|
|
|
|
['image', {src: 'http://example.com/external.jpg'}],
|
2020-06-18 17:32:42 +03:00
|
|
|
['image', {src: 'https://images.unsplash.com/favicon_too_large?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=2000&fit=max&ixid=eyJhcHBfaWQiOjExNzczfQ'}],
|
|
|
|
['image', {}]
|
2020-06-17 15:12:32 +03:00
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
const unsplashMock = nock('https://images.unsplash.com/')
|
|
|
|
.get('/favicon_too_large')
|
|
|
|
.query(true)
|
|
|
|
.replyWithFile(200, path.join(__dirname, '../../utils/fixtures/images/favicon_not_square.png'), {
|
|
|
|
'Content-Type': 'image/png'
|
|
|
|
});
|
|
|
|
|
|
|
|
const transformedMobiledoc = await mobiledocLib.populateImageSizes(JSON.stringify(mobiledoc));
|
|
|
|
const transformed = JSON.parse(transformedMobiledoc);
|
|
|
|
|
|
|
|
unsplashMock.isDone().should.be.true();
|
|
|
|
|
2020-06-18 17:32:42 +03:00
|
|
|
transformed.cards.length.should.equal(4);
|
2020-06-23 14:47:20 +03:00
|
|
|
});
|
|
|
|
|
2020-06-23 17:54:58 +03:00
|
|
|
// images can be stored with and without subdir when a subdir is configured
|
|
|
|
// but storage adapter always needs paths relative to content dir
|
|
|
|
it('works with subdir', async function () {
|
|
|
|
// urlUtils is a class instance and won't pick up changes to config so
|
|
|
|
// it's necessary to stub out the internals used by
|
|
|
|
sinon.stub(urlUtils, 'getSubdir').returns('/subdir');
|
2020-06-23 14:47:20 +03:00
|
|
|
|
|
|
|
let mobiledoc = {
|
|
|
|
cards: [
|
|
|
|
['image', {src: '/content/images/ghost-logo.png'}],
|
|
|
|
['image', {src: '/subdir/content/images/ghost-logo.png'}]
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
const transformedMobiledoc = await mobiledocLib.populateImageSizes(JSON.stringify(mobiledoc));
|
|
|
|
const transformed = JSON.parse(transformedMobiledoc);
|
|
|
|
|
|
|
|
transformed.cards.length.should.equal(2);
|
2020-06-17 15:12:32 +03:00
|
|
|
|
|
|
|
should.exist(transformed.cards[0][1].width);
|
|
|
|
transformed.cards[0][1].width.should.equal(800);
|
|
|
|
should.exist(transformed.cards[0][1].height);
|
|
|
|
transformed.cards[0][1].height.should.equal(257);
|
|
|
|
|
2020-06-23 14:47:20 +03:00
|
|
|
should.exist(transformed.cards[1][1].width);
|
|
|
|
transformed.cards[1][1].width.should.equal(800);
|
|
|
|
should.exist(transformed.cards[1][1].height);
|
|
|
|
transformed.cards[1][1].height.should.equal(257);
|
2020-06-17 15:12:32 +03:00
|
|
|
});
|
|
|
|
});
|
2020-04-08 20:21:15 +03:00
|
|
|
});
|