0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00
ghost/test/unit/frontend/services/routing/helpers/fetch-data.test.js
Hannah Wolfe 9d8089a748
Removed deprecated routes.yaml data format
refs: https://github.com/TryGhost/Ghost/issues/10434
refs: https://github.com/TryGhost/Ghost/pull/10449
refs: https://github.com/TryGhost/Ghost/pull/10559

- We originally had a weird structure returned for data keys in routes.yaml.
- To the best of my knowledge this was never desired or really used
- I'm removing it now simply because I'm trying to remove all references to v2/v3 in tests, and this had a comment saying it was deprecated in v3
- I could have changed the comment to be a proper @deprecated comment and leave this til we rewrite dynamic routing
- However it's weird and confusing and I believe entirely unused - so getting rid is way way better
2022-01-21 20:16:43 +00:00

189 lines
6.8 KiB
JavaScript

const should = require('should');
const sinon = require('sinon');
const API_VERSION = 'canary';
const api = require('../../../../../../core/server/api')[API_VERSION];
const helpers = require('../../../../../../core/frontend/services/routing/helpers');
const testUtils = require('../../../../../utils');
describe('Unit - services/routing/helpers/fetch-data', function () {
let posts;
let tags;
let locals;
let browsePostsStub;
let readTagsStub;
beforeEach(function () {
posts = [
testUtils.DataGenerator.forKnex.createPost({url: '/a/'}),
testUtils.DataGenerator.forKnex.createPost({url: '/b/'}),
testUtils.DataGenerator.forKnex.createPost({url: '/c/'}),
testUtils.DataGenerator.forKnex.createPost({url: '/d/'})
];
tags = [
testUtils.DataGenerator.forKnex.createTag(),
testUtils.DataGenerator.forKnex.createTag(),
testUtils.DataGenerator.forKnex.createTag(),
testUtils.DataGenerator.forKnex.createTag()
];
browsePostsStub = sinon.stub().resolves({
posts: posts,
meta: {
pagination: {
pages: 2
}
}
});
sinon.stub(api, 'postsPublic').get(() => {
return {
browse: browsePostsStub
};
});
readTagsStub = sinon.stub().resolves({tags: tags});
sinon.stub(api, 'tagsPublic').get(() => {
return {
read: readTagsStub
};
});
locals = {apiVersion: API_VERSION};
});
afterEach(function () {
sinon.restore();
});
it('should handle no options', function (done) {
helpers.fetchData(null, null, locals).then(function (result) {
should.exist(result);
result.should.be.an.Object().with.properties('posts', 'meta');
result.should.not.have.property('data');
browsePostsStub.calledOnce.should.be.true();
browsePostsStub.firstCall.args[0].should.be.an.Object();
browsePostsStub.firstCall.args[0].should.have.property('include');
browsePostsStub.firstCall.args[0].should.not.have.property('filter');
done();
}).catch(done);
});
it('should handle path options with page/limit', function (done) {
helpers.fetchData({page: 2, limit: 10}, null, locals).then(function (result) {
should.exist(result);
result.should.be.an.Object().with.properties('posts', 'meta');
result.should.not.have.property('data');
result.posts.length.should.eql(posts.length);
browsePostsStub.calledOnce.should.be.true();
browsePostsStub.firstCall.args[0].should.be.an.Object();
browsePostsStub.firstCall.args[0].should.have.property('include');
browsePostsStub.firstCall.args[0].should.have.property('limit', 10);
browsePostsStub.firstCall.args[0].should.have.property('page', 2);
done();
}).catch(done);
});
it('should handle multiple queries', function (done) {
const pathOptions = {};
const routerOptions = {
data: {
featured: {
type: 'browse',
resource: 'posts',
options: {
filter: 'featured:true',
limit: 3
}
}
}
};
helpers.fetchData(pathOptions, routerOptions, locals).then(function (result) {
should.exist(result);
result.should.be.an.Object().with.properties('posts', 'meta', 'data');
result.data.should.be.an.Object().with.properties('featured');
result.posts.length.should.eql(posts.length);
result.data.featured.length.should.eql(posts.length);
browsePostsStub.calledTwice.should.be.true();
browsePostsStub.firstCall.args[0].should.have.property('include', 'authors,tags');
browsePostsStub.secondCall.args[0].should.have.property('filter', 'featured:true');
browsePostsStub.secondCall.args[0].should.have.property('limit', 3);
done();
}).catch(done);
});
it('should handle multiple queries with page param', function (done) {
const pathOptions = {
page: 2
};
const routerOptions = {
data: {
featured: {
type: 'browse',
resource: 'posts',
options: {filter: 'featured:true', limit: 3}
}
}
};
helpers.fetchData(pathOptions, routerOptions, locals).then(function (result) {
should.exist(result);
result.should.be.an.Object().with.properties('posts', 'meta', 'data');
result.data.should.be.an.Object().with.properties('featured');
result.posts.length.should.eql(posts.length);
result.data.featured.length.should.eql(posts.length);
browsePostsStub.calledTwice.should.be.true();
browsePostsStub.firstCall.args[0].should.have.property('include', 'authors,tags');
browsePostsStub.firstCall.args[0].should.have.property('page', 2);
browsePostsStub.secondCall.args[0].should.have.property('filter', 'featured:true');
browsePostsStub.secondCall.args[0].should.have.property('limit', 3);
done();
}).catch(done);
});
it('should handle queries with slug replacements', function (done) {
const pathOptions = {
slug: 'testing'
};
const routerOptions = {
filter: 'tags:%s',
data: {
tag: {
controller: 'tagsPublic',
type: 'read',
resource: 'tags',
options: {slug: '%s'}
}
}
};
helpers.fetchData(pathOptions, routerOptions, locals).then(function (result) {
should.exist(result);
result.should.be.an.Object().with.properties('posts', 'meta', 'data');
result.data.should.be.an.Object().with.properties('tag');
result.posts.length.should.eql(posts.length);
result.data.tag.length.should.eql(tags.length);
browsePostsStub.calledOnce.should.be.true();
browsePostsStub.firstCall.args[0].should.have.property('include');
browsePostsStub.firstCall.args[0].should.have.property('filter', 'tags:testing');
browsePostsStub.firstCall.args[0].should.not.have.property('slug');
readTagsStub.firstCall.args[0].should.have.property('slug', 'testing');
done();
}).catch(done);
});
});