0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00
ghost/test/unit/meta/author_image_spec.js
Hannah Wolfe 884f39d045
Moved meta + sitemap tests out of data folder
- we moved the meta folder out of data a really long time ago
- we also moved the sitemap out of data/xml into a service
- this moves the tests to roughly match
2021-06-30 17:08:28 +01:00

90 lines
2.8 KiB
JavaScript

const should = require('should');
const sinon = require('sinon');
const getAuthorImage = require('../../../core/frontend/meta/author_image');
describe('getAuthorImage', function () {
afterEach(function () {
sinon.restore();
});
it('should return author image url if post and has url', function () {
const imageUrl = getAuthorImage({
context: ['post'],
post: {
primary_author: {
profile_image: '/content/images/2016/01/myimage.jpg'
}
}
}, false);
imageUrl.should.equal('/content/images/2016/01/myimage.jpg');
});
it('should return absolute author image url if post and has url', function () {
const imageUrl = getAuthorImage({
context: ['post'],
post: {
primary_author: {
profile_image: '/content/images/2016/01/myimage.jpg'
}
}
}, true);
imageUrl.should.not.equal('/content/images/2016/01/myimage.jpg');
imageUrl.should.match(/\/content\/images\/2016\/01\/myimage\.jpg$/);
});
it('should return author image url if AMP post and has url', function () {
const imageUrl = getAuthorImage({
context: ['amp', 'post'],
post: {
primary_author: {
profile_image: '/content/images/2016/01/myimage.jpg'
}
}
}, false);
imageUrl.should.equal('/content/images/2016/01/myimage.jpg');
});
it('should return absolute author image url if AMP post and has url', function () {
const imageUrl = getAuthorImage({
context: ['amp', 'post'],
post: {
primary_author: {
profile_image: '/content/images/2016/01/myimage.jpg'
}
}
}, true);
imageUrl.should.not.equal('/content/images/2016/01/myimage.jpg');
imageUrl.should.match(/\/content\/images\/2016\/01\/myimage\.jpg$/);
});
it('should return null if context does not contain author image url and is a post', function () {
const imageUrl = getAuthorImage({
context: ['post'],
post: {
primary_author: {
name: 'Test Author'
}
}
});
should(imageUrl).equal(null);
});
it('should return null if context does not contain author and is a post', function () {
const imageUrl = getAuthorImage({
context: ['post'],
post: {}
});
should(imageUrl).equal(null);
});
it('should return null if context is not a post', function () {
const imageUrl = getAuthorImage({
context: ['tag']
});
should(imageUrl).equal(null);
});
});