Ghost/test/unit/meta/keywords_spec.js
Hannah Wolfe 884f39d045
Moved meta + sitemap tests out of data folder
- 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
2021-06-30 17:08:28 +01:00

65 lines
1.7 KiB
JavaScript

const should = require('should');
const sinon = require('sinon');
const models = require('../../../core/server/models');
const 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 () {
const keywords = getKeywords({
post: {
tags: [
{name: 'one'},
{name: 'two'},
{name: 'three'}
]
}
});
should.deepEqual(keywords, ['one', 'two', 'three']);
});
it('should only return visible tags', function () {
const 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 () {
const keywords = getKeywords({
post: {
tags: []
}
});
should.equal(keywords, null);
});
it('should return null if post has no tags', function () {
const keywords = getKeywords({
post: {}
});
should.equal(keywords, null);
});
it('should return null if not a post', function () {
const keywords = getKeywords({
author: {}
});
should.equal(keywords, null);
});
});