aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wireless-transport/code-Carbon-SR1/apps/dlux/dlux-web/src/common/login/login.spec.js
blob: 47fcf35b3b630852b018b9889cfef9d74d37fd98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
define(['common/login/login.controller', 'angular-ui-router', 'common/layout/layout.module'], function() {
  describe('Login Module', function() {
    var scope, state, controller, location, AuthMock;
    var url = '/test';

    beforeEach(module('ui.router'));
    beforeEach(module('app.common.layout'));
    beforeEach(module('app.common.login', function($provide) {
      AuthMock = {
        isAuthed: function() {},
        login: function() {}
      };
      $provide.value('Auth', AuthMock);
    }));

    beforeEach(inject( function($rootScope, $controller, $state, $location) {
      scope = $rootScope.$new();
      controller = $controller;
      state = $state;
      location = $location;
    }));

    it('Should load the login state', function() {
      var stateName = 'login';

      controller('LoginCtrl', {$scope: scope, $state: state});
      expect(state.href(stateName, {})).toBe('#/login');
    });

    it('Should redirect any url to login if not logged', function() {
      var stateName = 'login';
      spyOn(AuthMock,'isAuthed').andReturn(false);
      location.url(url);
      controller('LoginCtrl', {$scope: scope, $state: state});
      state.go('main');

      expect(AuthMock.isAuthed).toHaveBeenCalled();
      expect(state.is("login"));
      expect(location.url()).toEqual('/login');
    });

    it('Should not redirect if logged', function() {
      spyOn(AuthMock,'isAuthed').andReturn(true);
      location.url(url);
      controller('LoginCtrl', {$scope: scope, $state: state});
      state.go('main');

      expect(AuthMock.isAuthed).toHaveBeenCalled();
      expect(state.is("main"));
      expect(location.url()).toEqual(url);
    });

    it('Should call the Auth module', function() {
      spyOn(AuthMock,'login');
      controller('LoginCtrl', {$scope: scope, $state: state});

      scope.sendLogin();
      expect(AuthMock.login).toHaveBeenCalled();
    });
  });
});