blob: cbddc276e1fc21d7c77007e72317e64014558fc4 [file] [log] [blame]
Yuta HIGUCHI4f39bcd2014-12-18 20:46:14 -08001/*
Simon Hunt8ead3a22015-01-06 11:00:15 -08002 * Copyright 2014,2015 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 */
20describe('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
23 beforeEach(module('onosUtil'));
24
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 Hunt245a88e2015-02-02 13:26:04 -080032 it('should define MapService', function () {
33 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
85 expect(ts.theme()).toEqual('light');
86 verifyBodyClass('light', 'dark');
87
88 ts.theme('turquoise');
89 expect(ts.theme()).toEqual('light');
90 expect($log.debug).not.toHaveBeenCalled();
91 verifyBodyClass('light', 'dark');
92 });
Simon Hunt245a88e2015-02-02 13:26:04 -080093
94
95 // TODO : Unit tests for listeners...
96
Yuta HIGUCHI4f39bcd2014-12-18 20:46:14 -080097});