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
65 lines
1.7 KiB
JavaScript
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);
|
|
});
|
|
});
|