Ghost/core/test/integration/update_check_spec.js
Vijay Kandy f2d09df512 Support for custom notifications (#7077)
closes #5071

- Send application/json requests to UpdateCheck service. New UpdateCheck service accepts JSON request
- If UpdateCheck service respponse has messages[] array, iterate over the array and create custom notifications intended for current version
- Save custom notification if its not already in the store AND its uuid is not in seenNotifications array
- When a custom notification is dismissed, store its uuid in seenNotifications array
- setup test fixtures to trigger tests properly
- api_notification_spec test to ensure custom notification can be added to store and added to seenNotifications when dismissed
- update_check_spec test to ensure custom notification can be displayed for a specific Ghost version
- added test to ensure messages meant for other versions don't create notifications
2016-07-22 14:02:10 +01:00

106 lines
4.1 KiB
JavaScript

var _ = require('lodash'),
testUtils = require('../utils'),
should = require('should'),
rewire = require('rewire'),
uuid = require('node-uuid'),
// Stuff we are testing
packageInfo = require('../../../package'),
updateCheck = rewire('../../server/update-check'),
NotificationsAPI = require('../../server/api/notifications');
describe('Update Check', function () {
describe('Reporting to UpdateCheck', function () {
var environmentsOrig;
before(function () {
environmentsOrig = updateCheck.__get__('allowedCheckEnvironments');
updateCheck.__set__('allowedCheckEnvironments', ['development', 'production', 'testing']);
});
after(function () {
updateCheck.__set__('allowedCheckEnvironments', environmentsOrig);
});
beforeEach(testUtils.setup('owner', 'posts', 'perms:setting', 'perms:user', 'perms:init'));
afterEach(testUtils.teardown);
it('should report the correct data', function (done) {
var updateCheckData = updateCheck.__get__('updateCheckData');
updateCheckData().then(function (data) {
should.exist(data);
data.ghost_version.should.equal(packageInfo.version);
data.node_version.should.equal(process.versions.node);
data.env.should.equal(process.env.NODE_ENV);
data.database_type.should.match(/sqlite3|pg|mysql/);
data.blog_id.should.be.a.String();
data.blog_id.should.not.be.empty();
data.theme.should.be.equal('casper');
data.apps.should.be.a.String();
data.blog_created_at.should.be.a.Number();
data.user_count.should.be.above(0);
data.post_count.should.be.above(0);
data.npm_version.should.be.a.String();
data.npm_version.should.not.be.empty();
done();
}).catch(done);
});
});
describe('Custom Notifications', function () {
var currentVersionOrig;
before(function () {
currentVersionOrig = updateCheck.__get__('currentVersion');
updateCheck.__set__('currentVersion', '0.9.0');
});
after(function () {
updateCheck.__set__('currentVersion', currentVersionOrig);
});
beforeEach(testUtils.setup('owner', 'posts', 'settings', 'perms:setting', 'perms:notification', 'perms:user', 'perms:init'));
afterEach(testUtils.teardown);
it('should create a custom notification for target version', function (done) {
var createCustomNotification = updateCheck.__get__('createCustomNotification'),
message = {
id: uuid.v4(),
version: '0.9.x',
content: '<p>Hey there! This is for 0.9.0 version</p>'
};
createCustomNotification(message).then(function () {
return NotificationsAPI.browse(testUtils.context.internal);
}).then(function (results) {
should.exist(results);
should.exist(results.notifications);
results.notifications.length.should.be.above(0);
should.exist(_.find(results.notifications, {uuid: message.id}));
done();
}).catch(done);
});
it('should not create notifications meant for other versions', function (done) {
var createCustomNotification = updateCheck.__get__('createCustomNotification'),
message = {
id: uuid.v4(),
version: '0.5.x',
content: '<p>Hey there! This is for 0.5.0 version</p>'
};
createCustomNotification(message).then(function () {
return NotificationsAPI.browse(testUtils.context.internal);
}).then(function (results) {
should.not.exist(_.find(results.notifications, {uuid: message.id}));
done();
}).catch(done);
});
});
});