blob: 28cd3e127729215646c6a5b8eeb9d73bf0221b47 [file] [log] [blame]
Matteo Scandoloe0d71ea2016-12-19 11:56:12 -08001/// <reference path="../../../../typings/index.d.ts" />
2
3import * as $ from 'jquery';
4import 'jasmine-jquery';
5import * as angular from 'angular';
6import 'angular-mocks';
7import {IXosNavigationRoute} from '../services/navigation';
8import {xosNav} from './nav';
9
10let element, scope: angular.IRootScopeService, compile: ng.ICompileService, isolatedScope;
11
12let baseRoutes: IXosNavigationRoute[] = [
13 {label: 'Home', state: 'xos'},
14 {label: 'Core', state: 'xos.core'}
15];
16
17const NavigationService = function(){
18 this.query = () => baseRoutes;
19};
20
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -080021const AuthMock = {
Matteo Scandolo04964232017-01-07 12:53:46 -080022 logout: jasmine.createSpy('logout').and.returnValue({then: () => {
23 return;
24 }})
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -080025};
26
Matteo Scandoloe0d71ea2016-12-19 11:56:12 -080027describe('Nav component', () => {
28 beforeEach(() => {
29 angular
30 .module('xosNav', ['app/core/nav/nav.html', 'ui.router'])
31 .component('xosNav', xosNav)
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -080032 .service('NavigationService', NavigationService)
33 .value('AuthService', AuthMock);
Matteo Scandoloe0d71ea2016-12-19 11:56:12 -080034 angular.mock.module('xosNav');
35 });
36
37 beforeEach(angular.mock.inject(($rootScope: ng.IRootScopeService, $compile: ng.ICompileService) => {
38 scope = $rootScope;
39 compile = $compile;
40 element = $compile('<xos-nav></xos-nav>')($rootScope);
41 $rootScope.$digest();
42 isolatedScope = element.isolateScope();
43
44 // clear routes
45 isolatedScope.routes = [];
46 }));
47
48 it('should render a list of routes', () => {
Matteo Scandolo266907e2016-12-20 13:41:42 -080049 const routes = $('.nav li:not(.nav-info)', element);
Matteo Scandoloe0d71ea2016-12-19 11:56:12 -080050 expect(routes.length).toBe(2);
51 });
52
53 it('should render child routes', () => {
54 baseRoutes = [
55 {label: 'Home', state: 'xos'},
56 {label: 'Core', state: 'xos.core', children: [
57 {label: 'Slices', state: 'xos.core.slices', parent: 'xos.core'}
58 ]}
59 ];
60 scope.$apply();
Matteo Scandolo266907e2016-12-20 13:41:42 -080061 const childRouteContainer = $('.nav-second li', element);
Matteo Scandoloe0d71ea2016-12-19 11:56:12 -080062 expect(childRouteContainer.length).toBe(1);
63 });
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -080064
65 it('should call the logout method', () => {
66 // NOTE upgrade to test the ng-click binding
67 // const btn = $(element).find('.nav-info .btn-block');
68 // btn.click();
69 // scope.$digest();
70 isolatedScope.vm.logout();
71 expect(AuthMock.logout).toHaveBeenCalled();
72 });
Matteo Scandoloe0d71ea2016-12-19 11:56:12 -080073});