%PDF- %PDF-
Direktori : /var/www/html/news/public/bower_components/AngularJS-Toaster/test/ |
Current File : //var/www/html/news/public/bower_components/AngularJS-Toaster/test/toasterServiceSpec.js |
/* global describe global it global beforeEach global angular global inject global expect */ 'use strict'; describe('toasterService', function () { var toaster, toasterConfig, rootScope, $compile; beforeEach(function () { // load dependencies module('testApp'); module('toaster') // inject the toaster service inject(function (_toaster_, _toasterConfig_, _$rootScope_, _$compile_) { toaster = _toaster_; toasterConfig = _toasterConfig_; rootScope = _$rootScope_; $compile = _$compile_; }); }); it('should create an error method from error icon class', function () { var container = angular.element('<toaster-container></toaster-container>'); $compile(container)(rootScope); rootScope.$digest(); var scope = container.scope(); expect(scope.toasters.length).toBe(0) expect(toasterConfig['icon-classes'].error).toBe('toast-error'); toaster.error('test', 'test'); rootScope.$digest(); expect(scope.toasters.length).toBe(1) expect(scope.toasters[0].type).toBe('toast-error'); }); it('should create an info method from info icon class', function () { var container = angular.element('<toaster-container></toaster-container>'); $compile(container)(rootScope); rootScope.$digest(); var scope = container.scope(); expect(scope.toasters.length).toBe(0) expect(toasterConfig['icon-classes'].info).toBe('toast-info'); toaster.info('test', 'test'); rootScope.$digest(); expect(scope.toasters.length).toBe(1) expect(scope.toasters[0].type).toBe('toast-info'); }); it('should create an wait method from wait icon class', function () { var container = angular.element('<toaster-container></toaster-container>'); $compile(container)(rootScope); rootScope.$digest(); var scope = container.scope(); expect(scope.toasters.length).toBe(0) expect(toasterConfig['icon-classes'].wait).toBe('toast-wait'); toaster.wait('test', 'test'); rootScope.$digest(); expect(scope.toasters.length).toBe(1) expect(scope.toasters[0].type).toBe('toast-wait'); }); it('should create an success method from success icon class', function () { var container = angular.element('<toaster-container></toaster-container>'); $compile(container)(rootScope); rootScope.$digest(); var scope = container.scope(); expect(scope.toasters.length).toBe(0) expect(toasterConfig['icon-classes'].success).toBe('toast-success'); toaster.success('test', 'test'); rootScope.$digest(); expect(scope.toasters.length).toBe(1) expect(scope.toasters[0].type).toBe('toast-success'); }); it('should create an warning method from warning icon class', function () { var container = angular.element('<toaster-container></toaster-container>'); $compile(container)(rootScope); rootScope.$digest(); var scope = container.scope(); expect(scope.toasters.length).toBe(0) expect(toasterConfig['icon-classes'].warning).toBe('toast-warning'); toaster.warning('test', 'test'); rootScope.$digest(); expect(scope.toasters.length).toBe(1) expect(scope.toasters[0].type).toBe('toast-warning'); }); it('should create a method from the icon class that takes an object', function () { var container = angular.element('<toaster-container></toaster-container>'); $compile(container)(rootScope); rootScope.$digest(); var scope = container.scope(); expect(scope.toasters.length).toBe(0) expect(toasterConfig['icon-classes'].error).toBe('toast-error'); toaster.error({ title: 'test', body: 'test'}); rootScope.$digest(); expect(scope.toasters.length).toBe(1) expect(scope.toasters[0].type).toBe('toast-error'); }); it('should return a toast wrapper instance from pop', function () { var container = angular.element('<toaster-container></toaster-container>'); $compile(container)(rootScope); rootScope.$digest(); var toast = toaster.pop('success', 'title', 'body'); expect(toast).toBeDefined(); expect(angular.isObject(toast)).toBe(true); expect(angular.isUndefined(toast.toasterId)).toBe(true); expect(toast.toastId).toBe(container.scope().toasters[0].toastId); }); it('should return a toast wrapper instance from each helper function', function () { var container = angular.element('<toaster-container></toaster-container>'); $compile(container)(rootScope); rootScope.$digest(); var errorToast = toaster.error('title', 'body'); var infoToast = toaster.info('title', 'body'); var waitToast = toaster.wait('title', 'body'); var successToast = toaster.success('title', 'body'); var warningToast = toaster.warning('title', 'body'); expect(errorToast).toBeDefined(); expect(infoToast).toBeDefined(); expect(waitToast).toBeDefined(); expect(successToast).toBeDefined(); expect(warningToast).toBeDefined(); }); it('clear should take toast wrapper returned from pop', function () { var container = angular.element('<toaster-container></toaster-container>'); $compile(container)(rootScope); rootScope.$digest(); var scope = container.scope(); var toast = toaster.pop('success', 'title', 'body'); expect(scope.toasters.length).toBe(1); toaster.clear(toast); expect(scope.toasters.length).toBe(0); }); it('clear should take individual arguments from toast wrapper returned from pop', function () { var container = angular.element('<toaster-container></toaster-container>'); $compile(container)(rootScope); rootScope.$digest(); var scope = container.scope(); var toast = toaster.pop('success', 'title', 'body'); expect(scope.toasters.length).toBe(1); toaster.clear(toast.toasterId, toast.toastId); expect(scope.toasters.length).toBe(0); }); });