2017-11-07 20:00:03 +00:00
|
|
|
var should = require('should'),
|
|
|
|
sinon = require('sinon'),
|
|
|
|
rewire = require('rewire'),
|
2017-11-08 07:58:52 +00:00
|
|
|
configUtils = require('../../../utils/configUtils'),
|
2020-03-30 16:26:47 +01:00
|
|
|
rssCache = rewire('../../../../core/frontend/services/rss/cache');
|
2017-11-07 20:00:03 +00:00
|
|
|
|
|
|
|
describe('RSS: Cache', function () {
|
|
|
|
var generateSpy, generateFeedReset;
|
|
|
|
|
|
|
|
afterEach(function () {
|
|
|
|
configUtils.restore();
|
2019-01-21 17:53:44 +01:00
|
|
|
sinon.restore();
|
2017-11-07 20:00:03 +00:00
|
|
|
generateFeedReset();
|
|
|
|
});
|
|
|
|
|
|
|
|
beforeEach(function () {
|
|
|
|
configUtils.set({url: 'http://my-ghost-blog.com'});
|
|
|
|
|
2019-01-21 17:53:44 +01:00
|
|
|
generateSpy = sinon.spy(rssCache.__get__('generateFeed'));
|
2017-11-07 20:00:03 +00:00
|
|
|
generateFeedReset = rssCache.__set__('generateFeed', generateSpy);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not rebuild xml for same data and url', function (done) {
|
|
|
|
var xmlData1,
|
|
|
|
data = {
|
|
|
|
title: 'Test Title',
|
|
|
|
description: 'Testing Desc',
|
2017-11-10 07:36:39 +00:00
|
|
|
posts: [],
|
|
|
|
meta: {pagination: {pages: 1}}
|
2017-11-07 20:00:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
rssCache.getXML('/rss/', data)
|
|
|
|
.then(function (_xmlData) {
|
|
|
|
xmlData1 = _xmlData;
|
|
|
|
|
|
|
|
// We should have called generateFeed
|
|
|
|
generateSpy.callCount.should.eql(1);
|
|
|
|
|
|
|
|
// Call RSS again to check that we didn't rebuild
|
|
|
|
return rssCache.getXML('/rss/', data);
|
|
|
|
})
|
|
|
|
.then(function (xmlData2) {
|
|
|
|
// Assertions
|
|
|
|
|
|
|
|
// We should not have called generateFeed again
|
|
|
|
generateSpy.callCount.should.eql(1);
|
|
|
|
|
|
|
|
// The data should be identical, no changing lastBuildDate
|
|
|
|
xmlData1.should.equal(xmlData2);
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done);
|
|
|
|
});
|
|
|
|
});
|