blob: 3c18e4df2a66eee88587636e0d99f8249ad56a60 [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 = {
22 logout: jasmine.createSpy('logout')
23};
24
Matteo Scandoloe0d71ea2016-12-19 11:56:12 -080025describe('Nav component', () => {
26 beforeEach(() => {
27 angular
28 .module('xosNav', ['app/core/nav/nav.html', 'ui.router'])
29 .component('xosNav', xosNav)
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -080030 .service('NavigationService', NavigationService)
31 .value('AuthService', AuthMock);
Matteo Scandoloe0d71ea2016-12-19 11:56:12 -080032 angular.mock.module('xosNav');
33 });
34
35 beforeEach(angular.mock.inject(($rootScope: ng.IRootScopeService, $compile: ng.ICompileService) => {
36 scope = $rootScope;
37 compile = $compile;
38 element = $compile('<xos-nav></xos-nav>')($rootScope);
39 $rootScope.$digest();
40 isolatedScope = element.isolateScope();
41
42 // clear routes
43 isolatedScope.routes = [];
44 }));
45
46 it('should render a list of routes', () => {
Matteo Scandolo266907e2016-12-20 13:41:42 -080047 const routes = $('.nav li:not(.nav-info)', element);
Matteo Scandoloe0d71ea2016-12-19 11:56:12 -080048 expect(routes.length).toBe(2);
49 });
50
51 it('should render child routes', () => {
52 baseRoutes = [
53 {label: 'Home', state: 'xos'},
54 {label: 'Core', state: 'xos.core', children: [
55 {label: 'Slices', state: 'xos.core.slices', parent: 'xos.core'}
56 ]}
57 ];
58 scope.$apply();
Matteo Scandolo266907e2016-12-20 13:41:42 -080059 const childRouteContainer = $('.nav-second li', element);
Matteo Scandoloe0d71ea2016-12-19 11:56:12 -080060 expect(childRouteContainer.length).toBe(1);
61 });
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -080062
63 it('should call the logout method', () => {
64 // NOTE upgrade to test the ng-click binding
65 // const btn = $(element).find('.nav-info .btn-block');
66 // btn.click();
67 // scope.$digest();
68 isolatedScope.vm.logout();
69 expect(AuthMock.logout).toHaveBeenCalled();
70 });
Matteo Scandoloe0d71ea2016-12-19 11:56:12 -080071});