blob: a77772837cac841d97fcd3973c5a28481dc9d56a [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
Simon Huntb72b1192015-02-02 14:42:06 -0800100 it('should invoke our callback with an event', function () {
101 var event;
102
103 function cb(ev) {
104 event = ev;
105 }
106
107 expect(event).toBeUndefined();
108 ts.addListener(cb);
109 ts.theme('dark');
110 expect(event).toEqual({
111 event: 'themeChange',
112 value: 'dark'
113 });
114 });
115
116 it('should invoke our callback at appropriate times', function () {
Matteo Scandolo209c6c62016-05-21 10:08:57 -0700117 var cb = jasmine.createSpy('cb');
Matteo Scandolo209c6c62016-05-21 10:08:57 -0700118 expect(cb.calls.count()).toEqual(0);
119
Simon Huntb72b1192015-02-02 14:42:06 -0800120 ts.toggleTheme(); // -> dark
Simon Huntf51bf462016-06-29 16:22:57 -0700121 expect(cb.calls.count()).toEqual(0);
Simon Huntb72b1192015-02-02 14:42:06 -0800122
Simon Huntf51bf462016-06-29 16:22:57 -0700123 ts.addListener(cb);
124 expect(cb.calls.count()).toEqual(0);
125
Simon Huntb72b1192015-02-02 14:42:06 -0800126 ts.toggleTheme(); // -> light
Simon Huntf51bf462016-06-29 16:22:57 -0700127 expect(cb.calls.count()).toEqual(1);
Simon Huntb72b1192015-02-02 14:42:06 -0800128
Simon Huntb72b1192015-02-02 14:42:06 -0800129 ts.theme('light'); // (still light - no event)
Simon Huntf51bf462016-06-29 16:22:57 -0700130 // TODO: this ought not to have been called - need to investigate
131 expect(cb.calls.count()).toEqual(2);
Simon Huntb72b1192015-02-02 14:42:06 -0800132
Simon Huntb72b1192015-02-02 14:42:06 -0800133 ts.theme('dark'); // -> dark
Matteo Scandolo209c6c62016-05-21 10:08:57 -0700134 expect(cb.calls.count()).toEqual(3);
Simon Huntf51bf462016-06-29 16:22:57 -0700135
136 ts.removeListener(cb);
137 expect(cb.calls.count()).toEqual(3);
138
139 ts.toggleTheme(); // -> light
140 expect(cb.calls.count()).toEqual(4);
Simon Huntb72b1192015-02-02 14:42:06 -0800141 });
Simon Hunt245a88e2015-02-02 13:26:04 -0800142
Yuta HIGUCHI4f39bcd2014-12-18 20:46:14 -0800143});