blob: 2fffe753d451c11933adbeaa54e12255f521216d [file] [log] [blame]
Yuta HIGUCHI4f39bcd2014-12-18 20:46:14 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Yuta HIGUCHI4f39bcd2014-12-18 20:46:14 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/*
18 ONOS GUI -- Util -- Theme Service - Unit Tests
Yuta HIGUCHI4f39bcd2014-12-18 20:46:14 -080019 */
Matteo Scandolo209c6c62016-05-21 10:08:57 -070020describe('factory: fw/util/theme.js', function() {
Simon Hunt245a88e2015-02-02 13:26:04 -080021 var ts, $log, fs;
Yuta HIGUCHI4f39bcd2014-12-18 20:46:14 -080022
Matteo Scandolo812aa5a2016-04-19 18:12:45 -070023 beforeEach(module('onosUtil', 'onosRemote'));
Yuta HIGUCHI4f39bcd2014-12-18 20:46:14 -080024
Simon Hunt245a88e2015-02-02 13:26:04 -080025 beforeEach(inject(function (ThemeService, _$log_, FnService) {
Yuta HIGUCHI4f39bcd2014-12-18 20:46:14 -080026 ts = ThemeService;
27 $log = _$log_;
Simon Hunt245a88e2015-02-02 13:26:04 -080028 fs = FnService;
Yuta HIGUCHI4f39bcd2014-12-18 20:46:14 -080029 ts.init();
30 }));
31
Simon Hunt3a6eec02015-02-09 21:16:43 -080032 it('should define ThemeService', function () {
Simon Hunt245a88e2015-02-02 13:26:04 -080033 expect(ts).toBeDefined();
34 });
35
36 it('should define api functions', function () {
37 expect(fs.areFunctions(ts, [
38 'init', 'theme', 'toggleTheme', 'addListener', 'removeListener'
39 ])).toBeTruthy();
40 });
41
42
Yuta HIGUCHI4f39bcd2014-12-18 20:46:14 -080043 function verifyBodyClass(yes, no) {
44 function bodyHasClass(c) {
45 return d3.select('body').classed(c);
46 }
47 expect(bodyHasClass(yes)).toBeTruthy();
48 expect(bodyHasClass(no)).toBeFalsy();
49 }
50
51 it('should default to light theme', function () {
52 expect(ts.theme()).toEqual('light');
53 });
54
55 it('should toggle to dark, then to light again', function () {
56 // Note: re-work this once theme-change listeners are implemented
57 spyOn($log, 'debug');
58
59 expect(ts.toggleTheme()).toEqual('dark');
60 expect(ts.theme()).toEqual('dark');
61 expect($log.debug).toHaveBeenCalledWith('Theme-Change-(toggle): dark');
62 verifyBodyClass('dark', 'light');
63
64 expect(ts.toggleTheme()).toEqual('light');
65 expect(ts.theme()).toEqual('light');
66 expect($log.debug).toHaveBeenCalledWith('Theme-Change-(toggle): light');
67 verifyBodyClass('light', 'dark');
68 });
69
70 it('should let us set the theme by name', function () {
71 // Note: re-work this once theme-change listeners are implemented
72 spyOn($log, 'debug');
73
74 expect(ts.theme()).toEqual('light');
75 ts.theme('dark');
76 expect(ts.theme()).toEqual('dark');
77 expect($log.debug).toHaveBeenCalledWith('Theme-Change-(set): dark');
78 verifyBodyClass('dark', 'light');
79 });
80
81 it('should ignore unknown theme names', function () {
82 // Note: re-work this once theme-change listeners are implemented
83 spyOn($log, 'debug');
84
Matteo Scandolo209c6c62016-05-21 10:08:57 -070085 ts.theme('light'); // setting theme lo light (was set to dark by the previous test)
86 $log.debug.calls.reset(); // resetting the spy
87
Yuta HIGUCHI4f39bcd2014-12-18 20:46:14 -080088 expect(ts.theme()).toEqual('light');
89 verifyBodyClass('light', 'dark');
90
91 ts.theme('turquoise');
92 expect(ts.theme()).toEqual('light');
93 expect($log.debug).not.toHaveBeenCalled();
94 verifyBodyClass('light', 'dark');
95 });
Simon Hunt245a88e2015-02-02 13:26:04 -080096
97
Simon Huntb72b1192015-02-02 14:42:06 -080098 // === Unit Tests for listeners
99
100 it('should report lack of callback', function () {
101 spyOn($log, 'error');
102 var list = ts.addListener();
103 expect($log.error).toHaveBeenCalledWith(
104 'ThemeService.addListener(): callback not a function'
105 );
106 expect(list.error).toEqual('No callback defined');
107 });
108
109 it('should report non-functional callback', function () {
110 spyOn($log, 'error');
111 var list = ts.addListener(['some array']);
112 expect($log.error).toHaveBeenCalledWith(
113 'ThemeService.addListener(): callback not a function'
114 );
115 expect(list.error).toEqual('No callback defined');
116 });
117
118 it('should invoke our callback with an event', function () {
119 var event;
120
121 function cb(ev) {
122 event = ev;
123 }
124
125 expect(event).toBeUndefined();
126 ts.addListener(cb);
127 ts.theme('dark');
128 expect(event).toEqual({
129 event: 'themeChange',
130 value: 'dark'
131 });
132 });
133
134 it('should invoke our callback at appropriate times', function () {
Simon Huntb72b1192015-02-02 14:42:06 -0800135
Matteo Scandolo209c6c62016-05-21 10:08:57 -0700136 var cb = jasmine.createSpy('cb');
Simon Huntb72b1192015-02-02 14:42:06 -0800137
Matteo Scandolo209c6c62016-05-21 10:08:57 -0700138 var listener;
Simon Huntb72b1192015-02-02 14:42:06 -0800139
Matteo Scandolo209c6c62016-05-21 10:08:57 -0700140 expect(cb.calls.count()).toEqual(0);
141
Simon Huntb72b1192015-02-02 14:42:06 -0800142 ts.toggleTheme(); // -> dark
143
Simon Huntb72b1192015-02-02 14:42:06 -0800144 listener = ts.addListener(cb);
145 ts.toggleTheme(); // -> light
146
Simon Huntb72b1192015-02-02 14:42:06 -0800147 ts.theme('light'); // (still light - no event)
148
Simon Huntb72b1192015-02-02 14:42:06 -0800149 ts.theme('dark'); // -> dark
150
Simon Huntb72b1192015-02-02 14:42:06 -0800151 ts.removeListener(listener);
152 ts.toggleTheme(); // -> light
153
Matteo Scandolo209c6c62016-05-21 10:08:57 -0700154 expect(cb.calls.count()).toEqual(3);
Simon Huntb72b1192015-02-02 14:42:06 -0800155 });
Simon Hunt245a88e2015-02-02 13:26:04 -0800156
Yuta HIGUCHI4f39bcd2014-12-18 20:46:14 -0800157});