mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
- move all test files from core/test to test/ - updated all imports and other references - all code inside of core/ is then application code - tests are correctly at the root level - consistent with other repos/projects Co-authored-by: Kevin Ansfield <kevin@lookingsideways.co.uk>
80 lines
2.6 KiB
JavaScript
80 lines
2.6 KiB
JavaScript
var should = require('should'),
|
|
getAuthorFacebookUrl = require('../../../../core/frontend/meta/author_fb_url');
|
|
|
|
describe('getAuthorFacebookUrl', function () {
|
|
it('should return author facebook url if post and has url',
|
|
function () {
|
|
var facebookUrl = getAuthorFacebookUrl({
|
|
context: ['post'],
|
|
post: {
|
|
primary_author: {
|
|
facebook: 'https://www.facebook.com/user'
|
|
}
|
|
}
|
|
});
|
|
facebookUrl.should.equal('https://www.facebook.com/user');
|
|
});
|
|
|
|
it('should return author facebook url if AMP post and has url',
|
|
function () {
|
|
var facebookUrl = getAuthorFacebookUrl({
|
|
context: ['amp', 'post'],
|
|
post: {
|
|
primary_author: {
|
|
facebook: 'https://www.facebook.com/user'
|
|
}
|
|
}
|
|
});
|
|
facebookUrl.should.equal('https://www.facebook.com/user');
|
|
});
|
|
|
|
it('should return null if context does not contain author facebook url and is a post',
|
|
function () {
|
|
var facebookUrl = getAuthorFacebookUrl({
|
|
context: ['post'],
|
|
post: {
|
|
primary_author: {
|
|
facebook: ''
|
|
}
|
|
}
|
|
});
|
|
should(facebookUrl).equal(null);
|
|
});
|
|
|
|
it('should return null if context does not contain author and is a post', function () {
|
|
var facebookUrl = getAuthorFacebookUrl({
|
|
context: ['post'],
|
|
post: {}
|
|
});
|
|
should(facebookUrl).equal(null);
|
|
});
|
|
|
|
it('should return author facebook url if author and has url',
|
|
function () {
|
|
var facebookUrl = getAuthorFacebookUrl({
|
|
context: ['author'],
|
|
author: {
|
|
facebook: 'https://www.facebook.com/user'
|
|
}
|
|
});
|
|
facebookUrl.should.equal('https://www.facebook.com/user');
|
|
});
|
|
|
|
it('should return null if context does not contain author facebook url and is a author',
|
|
function () {
|
|
var facebookUrl = getAuthorFacebookUrl({
|
|
context: ['author'],
|
|
author: {
|
|
facebook: ''
|
|
}
|
|
});
|
|
should(facebookUrl).equal(null);
|
|
});
|
|
|
|
it('should return null if context is not a post', function () {
|
|
var facebookUrl = getAuthorFacebookUrl({
|
|
context: ['tag']
|
|
});
|
|
should(facebookUrl).equal(null);
|
|
});
|
|
});
|