blob: 864c5a4e4feae1030328465a07297bbf0175a414 [file] [log] [blame]
Matteo Scandolof6acdbe2016-12-13 10:29:37 -08001/// <reference path="../../../../typings/index.d.ts" />
2
Matteo Scandolo52fa5cb2016-12-16 10:06:13 -08003import * as $ from 'jquery';
4import 'jasmine-jquery';
Matteo Scandolof6acdbe2016-12-13 10:29:37 -08005import * as angular from 'angular';
6import 'angular-mocks';
Matteo Scandolo52fa5cb2016-12-16 10:06:13 -08007import {xosHeader, INotification} from './header';
Matteo Scandolo63e43eb2016-12-14 14:18:53 -08008import {Subject} from 'rxjs';
Matteo Scandolof6acdbe2016-12-13 10:29:37 -08009
Matteo Scandolo52fa5cb2016-12-16 10:06:13 -080010let element, scope: angular.IRootScopeService, compile: ng.ICompileService, isolatedScope;
11const events = new Subject();
12const sendEvent = (event: INotification): void => {
13 events.next(event);
14};
15const MockStore = function() {
16 this.query = () => {
17 return events.asObservable();
18 };
19};
Matteo Scandolo266907e2016-12-20 13:41:42 -080020
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -080021const MockToastr = {
Matteo Scandolo266907e2016-12-20 13:41:42 -080022 info: jasmine.createSpy('info')
23};
24
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -080025const MockAuth = {
26 getUser: () => {
27 return {email: 'test@xos.us'};
28 }
29};
30
Matteo Scandolo266907e2016-12-20 13:41:42 -080031const MockToastrConfig = {};
32
33const infoNotification = {
Matteo Scandolo52fa5cb2016-12-16 10:06:13 -080034 model: 'TestModel',
35 msg: {
36 changed_fields: ['backend_status'],
37 pk: 1,
38 object: {
39 name: 'TestName',
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -080040 backend_status: '0 - In Progress'
Matteo Scandolo52fa5cb2016-12-16 10:06:13 -080041 }
42 }
43};
44
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080045describe('header component', () => {
46 beforeEach(() => {
47 angular
Matteo Scandolo67c105f2017-01-09 09:30:52 -080048 .module('xosHeader', ['app/core/header/header.html', 'ui.router'])
Matteo Scandolo63e43eb2016-12-14 14:18:53 -080049 .component('xosHeader', xosHeader)
Matteo Scandolo266907e2016-12-20 13:41:42 -080050 .service('SynchronizerStore', MockStore)
51 .value('toastr', MockToastr)
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -080052 .value('toastrConfig', MockToastrConfig)
Matteo Scandolo67c105f2017-01-09 09:30:52 -080053 .value('AuthService', MockAuth)
54 .value('NavigationService', {});
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080055 angular.mock.module('xosHeader');
56 });
57
Matteo Scandolo52fa5cb2016-12-16 10:06:13 -080058 beforeEach(angular.mock.inject(($rootScope: ng.IRootScopeService, $compile: ng.ICompileService) => {
59 scope = $rootScope;
60 compile = $compile;
61 element = $compile('<xos-header></xos-header>')($rootScope);
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080062 $rootScope.$digest();
Matteo Scandolo52fa5cb2016-12-16 10:06:13 -080063 isolatedScope = element.isolateScope();
64
65 // clear notifications
66 isolatedScope.notifications = [];
67 }));
68
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -080069 it('should render the appropriate logo', () => {
70 const header = $('a.navbar-brand img', element).attr('src');
71 // webpack convert img to base64, how to test?
72 expect(header.trim()).not.toBeNull();
Matteo Scandolo52fa5cb2016-12-16 10:06:13 -080073 });
74
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -080075 it('should print user email', () => {
76 expect($('.profile-address', element).text()).toBe('test@xos.us');
Matteo Scandolo99fface2016-12-21 15:37:23 -080077 });
78
Matteo Scandolo266907e2016-12-20 13:41:42 -080079 it('should configure toastr', () => {
80 expect(MockToastrConfig).toEqual({
81 newestOnTop: false,
82 positionClass: 'toast-top-right',
83 preventDuplicates: false,
84 preventOpenDuplicates: false,
85 progressBar: true,
86 });
Matteo Scandolo52fa5cb2016-12-16 10:06:13 -080087 });
88
Matteo Scandolo266907e2016-12-20 13:41:42 -080089 it('should display a toastr for a new notification', () => {
90 sendEvent(infoNotification);
Matteo Scandolo52fa5cb2016-12-16 10:06:13 -080091 scope.$digest();
92
Matteo Scandolo266907e2016-12-20 13:41:42 -080093 expect(MockToastr.info).toHaveBeenCalledWith('Synchronization started for: TestName', 'TestModel');
Matteo Scandolo52fa5cb2016-12-16 10:06:13 -080094 });
95
Matteo Scandolo266907e2016-12-20 13:41:42 -080096 // TODO test error and success toaster call
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080097});