summaryrefslogtreecommitdiff
path: root/openstack_dashboard/static/app/app.module.spec.js
blob: a622a24fff4c21152d14f54cd04444e8e1e3164a (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
 *    (c) Copyright 2015 Hewlett-Packard Development Company, L.P.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
(function () {
  'use strict';

  describe('horizon.app', function () {
    it('should be defined', function () {
      expect(angular.module('horizon.app')).toBeDefined();
    });
  });

  describe('$locationProvider', function() {
    var $locationProvider, $routeProvider;

    beforeEach(function() {
      module('ngRoute');
      angular.module('horizon.auth', []);
      angular.module('locationProviderConfig', [])
        .config(function(_$locationProvider_, _$routeProvider_) {
          $routeProvider = _$routeProvider_;
          spyOn($routeProvider, 'otherwise').and.callThrough();

          $locationProvider = _$locationProvider_;
          spyOn($locationProvider, 'html5Mode').and.callThrough();
          spyOn($locationProvider, 'hashPrefix').and.callThrough();
        });

      module('locationProviderConfig');
      module('horizon.app');
    });

    describe('when base tag present', function() {

      beforeEach(function() {
        if (angular.element('base').length === 0) {
          angular.element('html').append('<base>');
        }
        inject();
      });

      it('should set html5 mode', function() {
        expect($locationProvider.html5Mode).toHaveBeenCalledWith(true);
      });

      it('should set hashPrefix', function() {
        expect($locationProvider.hashPrefix).toHaveBeenCalledWith('!');
      });

      it('should set table and detail path', function() {
        expect($routeProvider.otherwise.calls.count()).toEqual(1);
        var otherwiseCallArgs = $routeProvider.otherwise.calls.argsFor(0);
        expect(otherwiseCallArgs[0].controller).toEqual('RedirectController');
      });
    });

    describe('when base tag is not present', function() {

      beforeEach(function() {
        angular.element('base').remove();
        inject();
      });

      it('should not set html5 mode', function() {
        expect($locationProvider.html5Mode).not.toHaveBeenCalled();
      });

      it('should not set hashPrefix', function() {
        expect($locationProvider.hashPrefix).not.toHaveBeenCalled();
      });
    });

  });

})();