OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 /** | 5 /** |
6 * TestFixture for font settings WebUI testing. | 6 * TestFixture for font settings WebUI testing. |
7 * @extends {testing.Test} | 7 * @extends {testing.Test} |
8 * @constructor | 8 * @constructor |
9 */ | 9 */ |
10 function FontSettingsWebUITest() {} | 10 function FontSettingsWebUITest() {} |
11 | 11 |
12 FontSettingsWebUITest.prototype = { | 12 FontSettingsWebUITest.prototype = { |
13 __proto__: testing.Test.prototype, | 13 __proto__: testing.Test.prototype, |
14 | 14 |
15 /** | 15 /** |
16 * Browse to the font settings page. | 16 * Browse to the font settings page. |
17 */ | 17 */ |
18 browsePreload: 'chrome://settings-frame/fonts', | 18 browsePreload: 'chrome://settings-frame/fonts', |
19 | 19 |
20 /** @inheritDoc */ | 20 /** @override */ |
21 preLoad: function() { | 21 preLoad: function() { |
22 this.makeAndRegisterMockHandler(['openAdvancedFontSettingsOptions']); | 22 this.makeAndRegisterMockHandler(['openAdvancedFontSettingsOptions']); |
23 } | 23 } |
24 }; | 24 }; |
25 | 25 |
26 // Test opening font settings has correct location. | 26 // Test opening font settings has correct location. |
27 TEST_F('FontSettingsWebUITest', 'testOpenFontSettings', function() { | 27 TEST_F('FontSettingsWebUITest', 'testOpenFontSettings', function() { |
28 assertEquals(this.browsePreload, document.location.href); | 28 assertEquals(this.browsePreload, document.location.href); |
29 }); | 29 }); |
30 | 30 |
31 // Test setup of the Advanced Font Settings links. | 31 // Test setup of the Advanced Font Settings links. |
32 TEST_F('FontSettingsWebUITest', 'testAdvancedFontSettingsLink', function() { | 32 TEST_F('FontSettingsWebUITest', 'testAdvancedFontSettingsLink', function() { |
33 var installElement = $('advanced-font-settings-install'); | 33 var installElement = $('advanced-font-settings-install'); |
34 var optionsElement = $('advanced-font-settings-options'); | 34 var optionsElement = $('advanced-font-settings-options'); |
35 var expectedUrl = 'https://chrome.google.com/webstore/detail/' + | 35 var expectedUrl = 'https://chrome.google.com/webstore/detail/' + |
36 'caclkomlalccbpcdllchkeecicepbmbm'; | 36 'caclkomlalccbpcdllchkeecicepbmbm'; |
37 | 37 |
38 FontSettings.notifyAdvancedFontSettingsAvailability(false); | 38 FontSettings.notifyAdvancedFontSettingsAvailability(false); |
39 assertFalse(installElement.hidden); | 39 assertFalse(installElement.hidden); |
40 assertEquals(expectedUrl, installElement.querySelector('a').href); | 40 assertEquals(expectedUrl, installElement.querySelector('a').href); |
41 assertTrue(optionsElement.hidden); | 41 assertTrue(optionsElement.hidden); |
42 | 42 |
43 FontSettings.notifyAdvancedFontSettingsAvailability(true); | 43 FontSettings.notifyAdvancedFontSettingsAvailability(true); |
44 assertTrue(installElement.hidden); | 44 assertTrue(installElement.hidden); |
45 assertFalse(optionsElement.hidden); | 45 assertFalse(optionsElement.hidden); |
46 this.mockHandler.expects(once()).openAdvancedFontSettingsOptions(); | 46 this.mockHandler.expects(once()).openAdvancedFontSettingsOptions(); |
47 optionsElement.click(); | 47 optionsElement.click(); |
48 }); | 48 }); |
OLD | NEW |