95d27e7f58
- this is a small part of a bit of cleanup of our test files - the goal is to make the existing tests clearer with a view to making it easier to write more tests - this makes the test structure follow the codebase structure more closely - eventually we will colocate the frontend tests with the frontend code
102 lines
3.3 KiB
JavaScript
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);
|
|
});
|
|
});
|