Ghost/test/unit/meta/creator-url_spec.js
Hannah Wolfe af4bfb8862
Changed meta filenames to correct casing
- purely for cleanliness!
- we use kebabcase by default
- tests should be kebab-case-file_spec.js (one day we want this to be .test.js)
2021-07-01 12:30:25 +01:00

102 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);
});
});