mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
- 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
101 lines
3.3 KiB
JavaScript
101 lines
3.3 KiB
JavaScript
const should = require('should');
|
|
const getCreatorTwitterUrl = require('../../../core/frontend/meta/creator_url');
|
|
|
|
describe('getCreatorTwitterUrl', function () {
|
|
it('should return author twitter url if post and has url',
|
|
function () {
|
|
const twitterUrl = getCreatorTwitterUrl({
|
|
context: ['post'],
|
|
post: {
|
|
primary_author: {
|
|
twitter: 'https://twitter.com/user'
|
|
}
|
|
}
|
|
});
|
|
twitterUrl.should.equal('https://twitter.com/user');
|
|
});
|
|
|
|
it('should return null if context does not contain author twitter url and is a post',
|
|
function () {
|
|
const twitterUrl = getCreatorTwitterUrl({
|
|
context: ['post'],
|
|
post: {
|
|
primary_author: {
|
|
twitter: ''
|
|
}
|
|
}
|
|
});
|
|
should(twitterUrl).equal(null);
|
|
});
|
|
|
|
it('should return null if context does not contain author and is a post', function () {
|
|
const twitterUrl = getCreatorTwitterUrl({
|
|
context: ['post'],
|
|
post: {}
|
|
});
|
|
should(twitterUrl).equal(null);
|
|
});
|
|
|
|
it('should return author twitter url if AMP post and has url',
|
|
function () {
|
|
const twitterUrl = getCreatorTwitterUrl({
|
|
context: ['amp', 'post'],
|
|
post: {
|
|
primary_author: {
|
|
twitter: 'https://twitter.com/user'
|
|
}
|
|
}
|
|
});
|
|
twitterUrl.should.equal('https://twitter.com/user');
|
|
});
|
|
|
|
it('should return null if context does not contain author twitter url and is an AMP post',
|
|
function () {
|
|
const twitterUrl = getCreatorTwitterUrl({
|
|
context: ['amp', 'post'],
|
|
post: {
|
|
primary_author: {
|
|
twitter: ''
|
|
}
|
|
}
|
|
});
|
|
should(twitterUrl).equal(null);
|
|
});
|
|
|
|
it('should return null if context does not contain author and is an AMP post', function () {
|
|
const twitterUrl = getCreatorTwitterUrl({
|
|
context: ['amp', 'post'],
|
|
post: {}
|
|
});
|
|
should(twitterUrl).equal(null);
|
|
});
|
|
|
|
it('should return author twitter url if author and has url',
|
|
function () {
|
|
const twitterUrl = getCreatorTwitterUrl({
|
|
context: ['author'],
|
|
author: {
|
|
twitter: 'https://twitter.com/user'
|
|
}
|
|
});
|
|
twitterUrl.should.equal('https://twitter.com/user');
|
|
});
|
|
|
|
it('should return null if context does not contain author twitter url and is a author',
|
|
function () {
|
|
const twitterUrl = getCreatorTwitterUrl({
|
|
context: ['author'],
|
|
author: {
|
|
twitter: ''
|
|
}
|
|
});
|
|
should(twitterUrl).equal(null);
|
|
});
|
|
|
|
it('should return null if context is not a post', function () {
|
|
const twitterUrl = getCreatorTwitterUrl({
|
|
context: ['tag']
|
|
});
|
|
should(twitterUrl).equal(null);
|
|
});
|
|
});
|