summaryrefslogtreecommitdiffstats
path: root/framework/src/onos/web/gui/src/main/webapp/tests/app/fw/nav/nav-spec.js
blob: d14d514759e94be0764fef7f08ec1b350ef82b3c (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*
 * Copyright 2014,2015 Open Networking Laboratory
 *
 * 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.
 */

/*
 ONOS GUI -- Util -- Theme Service - Unit Tests
 */
describe('factory: fw/nav/nav.js', function() {
    var $log, $location, $window, ns, fs;
    var d3Elem;

    beforeEach(module('onosNav', 'onosUtil'));

    var mockWindow = {
        location: {
            href: 'http://server/#/mock/url'
        }
    };

    beforeEach(function () {
        module(function ($provide) {
            $provide.value('$window', mockWindow);
        });
    });

    beforeEach(inject(function (_$log_, _$location_, _$window_,
                                NavService, FnService) {
        $log = _$log_;
        $location = _$location_;
        $window = _$window_;
        ns = NavService;
        fs = FnService;
        d3Elem = d3.select('body').append('div').attr('id', 'nav');
        ns.hideNav();
    }));

    afterEach(function () {
        d3.select('#nav').remove();
    });

    it('should define NavService', function () {
        expect(ns).toBeDefined();
    });

    it('should define api functions', function () {
        expect(fs.areFunctions(ns, [
            'showNav', 'hideNav', 'toggleNav', 'hideIfShown', 'navTo'
        ])).toBeTruthy();
    });

    function checkHidden(b) {
        var what = b ? 'hidden' : 'visible';
        expect(d3.select('#nav').style('visibility')).toEqual(what);
    }

    it('should start hidden', function () {
        checkHidden(true);
    });

    it('should be shown then hidden', function () {
        ns.showNav();
        checkHidden(false);
        ns.hideNav();
        checkHidden(true);
    });

    it('should toggle hidden', function () {
        ns.toggleNav();
        checkHidden(false);
        ns.toggleNav();
        checkHidden(true);
    });

    it('should show idempotently', function () {
        checkHidden(true);
        ns.showNav();
        checkHidden(false);
        ns.showNav();
        checkHidden(false);
    });

    it('should hide idempotently', function () {
        checkHidden(true);
        ns.hideNav();
        checkHidden(true);
    });

    it('should be a noop if already hidden', function () {
        checkHidden(true);
        expect(ns.hideIfShown()).toBe(false);
        checkHidden(true);
    });

    it('should hide if shown', function () {
        ns.showNav();
        checkHidden(false);
        expect(ns.hideIfShown()).toBe(true);
        checkHidden(true);
    });

    it('should take correct navTo parameters', function () {
        spyOn($log, 'warn');

        ns.navTo('foo');
        expect($log.warn).not.toHaveBeenCalled();

        ns.navTo('bar', { q1: 'thing', q2: 'thing2' });
        expect($log.warn).not.toHaveBeenCalled();

    });

    it('should check navTo parameter warnings', function () {
        spyOn($log, 'warn');

        expect(ns.navTo()).toBeNull();
        expect($log.warn).toHaveBeenCalledWith('Not a valid navigation path');

        ns.navTo('baz', [1, 2, 3]);
        expect($log.warn).toHaveBeenCalledWith(
            'Query params not an object', [1, 2, 3]
        );

        ns.navTo('zoom', 'not a query param');
        expect($log.warn).toHaveBeenCalledWith(
            'Query params not an object', 'not a query param'
        );
    });

    it('should verify where the window is navigating', function () {
        ns.navTo('foo');
        expect($window.location.href).toBe('http://server/#/foo');

        ns.navTo('bar');
        expect($window.location.href).toBe('http://server/#/bar');

        ns.navTo('baz', { q1: 'thing1', q2: 'thing2' });
        expect($window.location.href).toBe(
            'http://server/#/baz?q1=thing1&q2=thing2'
        );

        ns.navTo('zip', { q3: 'thing3' });
        expect($window.location.href).toBe(
            'http://server/#/zip?q3=thing3'
        );

        ns.navTo('zoom', {});
        expect($window.location.href).toBe('http://server/#/zoom');

        ns.navTo('roof', [1, 2, 3]);
        expect($window.location.href).toBe('http://server/#/roof');
    });

});