OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/frontend/app/components/common/notifications/notifications.service.test.js

141 lines
4.7 KiB

// -- copyright
// OpenProject is a project management system.
// Copyright (C) 2012-2015 the OpenProject Foundation (OPF)
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License version 3.
//
// OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
// Copyright (C) 2006-2013 Jean-Philippe Lang
// Copyright (C) 2010-2013 the ChiliProject Team
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
// See doc/COPYRIGHT.rdoc for more details.
// ++
describe('NotificationsService', function () {
var NotificationsService,
$rootScope;
beforeEach(angular.mock.module('openproject.services'));
beforeEach(angular.mock.inject(function (_$rootScope_, _NotificationsService_) {
$rootScope = _$rootScope_;
NotificationsService = _NotificationsService_;
}));
it('should be able to create notifications', function () {
var notification = NotificationsService.add('message');
expect(notification).to.eql({message: 'message'});
});
it('should be able to create warnings', function () {
var notification = NotificationsService.addWarning('warning!');
expect(notification).to.eql({message: 'warning!', type: 'warning'});
});
it('should be able to create error messages with errors', function () {
var notification = NotificationsService.addError('a super cereal error', ['fooo', 'baarr']);
expect(notification).to.eql({
message: 'a super cereal error',
errors: ['fooo', 'baarr'],
type: 'error'
});
});
it('should be able to create error messages with only a message', function () {
var notification = NotificationsService.addError('a super cereal error');
expect(notification).to.eql({
message: 'a super cereal error',
errors: [],
type: 'error'
});
});
it('should be able to create upload messages with uploads', function () {
var notification = NotificationsService.addWorkPackageUpload('uploading...', [0, 1, 2]);
expect(notification).to.eql({
message: 'uploading...',
type: 'upload',
uploads: [0, 1, 2]
});
});
it('should throw an Error if trying to create an upload without uploads', function () {
expect(function () {
NotificationsService.addWorkPackageUpload('themUploads');
}).to.throw(Error);
});
it('sends a broadcast on rootScope upon adding', function () {
sinon.spy($rootScope, '$broadcast');
NotificationsService.add('very important');
expect($rootScope.$broadcast).to.have.been.calledWith('notification.add');
});
it('sends a broadcast on rootScope upon removal', function () {
sinon.spy($rootScope, '$broadcast');
NotificationsService.remove({message: 'blubs', type: 'success'});
expect($rootScope.$broadcast).to.have.been.calledWith('notification.remove');
});
it('sends a broadcast to remove the first notification upon adding a second success notification',
function () {
sinon.spy($rootScope, '$broadcast');
var firstNotification = NotificationsService.add('blubs');
NotificationsService.addSuccess('blubs2');
expect($rootScope.$broadcast).to.have.been.calledWith('notification.remove',
firstNotification);
});
it('sends a broadcast to remove the first notification upon adding a second error notification',
function () {
sinon.spy($rootScope, '$broadcast');
var firstNotification = NotificationsService.add('blubs');
NotificationsService.addError('blubs2');
expect($rootScope.$broadcast).to.have.been.calledWith('notification.remove',
firstNotification);
});
it('does not send a broadcast upon the second error/success ' +
'if the notification has already been removed',
function () {
var firstNotification = NotificationsService.add('blubs');
$rootScope.$broadcast('notification.remove', firstNotification);
sinon.spy($rootScope, '$broadcast');
NotificationsService.addError('blubs2');
expect($rootScope.$broadcast).not.to.have.been.calledWith('notification.remove',
firstNotification);
});
});