Ghost/test/unit/data/meta/keywords_spec.js

65 lines
1.7 KiB
JavaScript
Raw Normal View History

var should = require('should'),
sinon = require('sinon'),
models = require('../../../../core/server/models'),
getKeywords = require('../../../../core/frontend/meta/keywords');
describe('getKeywords', function () {
before(function () {
models.init();
});
afterEach(function () {
sinon.restore();
});
it('should return tags as keywords if post has tags', function () {
var keywords = getKeywords({
post: {
tags: [
{name: 'one'},
{name: 'two'},
{name: 'three'}
]
}
});
should.deepEqual(keywords, ['one', 'two', 'three']);
});
it('should only return visible tags', function () {
var keywords = getKeywords({
post: {
tags: [
{name: 'one', visibility: 'public'},
{name: 'two', visibility: 'internal'},
{name: 'three'},
{name: 'four', visibility: 'internal'}
]
}
});
should.deepEqual(keywords, ['one', 'three']);
});
it('should return null if post has tags is empty array', function () {
var keywords = getKeywords({
post: {
tags: []
}
});
should.equal(keywords, null);
});
it('should return null if post has no tags', function () {
var keywords = getKeywords({
post: {}
});
should.equal(keywords, null);
});
it('should return null if not a post', function () {
var keywords = getKeywords({
author: {}
});
should.equal(keywords, null);
});
});