[Extensions] Make extension message bubble factory platform-abstract
[chromium-blink-merge.git] / chrome / browser / resources / chromeos / chromevox / common / braille_text_handler_test.unitjs
blob3f53422bd38c4ea08320d3f420aa05e457230cbc
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // Include test fixture.
6 GEN_INCLUDE(['../testing/chromevox_unittest_base.js']);
8 /**
9  * @extends {cvox.BrailleInterface}
10  * @constructor
11  */
12 function FakeBraille() {
15 FakeBraille.prototype = {
16   /** @override */
17   write: function(content) {
18     this.content = content;
19   }
22 /** @constructor */
23 function FakeNavigationManager() {
26 FakeNavigationManager.prototype = {
27   getBraille: function() {
28     return this.navBraille;
29   },
31   setNavBraille: function(navBraille) {
32     this.navBraille = navBraille;
33   }
37 /**
38  * Test fixture.
39  * @constructor
40  * @extends {ChromeVoxUnitTestBase}
41  */
42 function CvoxBrailleTextHandlerUnitTest() {}
44 CvoxBrailleTextHandlerUnitTest.prototype = {
45   __proto__: ChromeVoxUnitTestBase.prototype,
47   /** @override */
48   closureModuleDeps: [
49     'cvox.BrailleInterface',
50     'cvox.BrailleTextHandler',
51     'cvox.NavBraille',
52     'cvox.NavigationManager',
53   ],
55   /** @override */
56   setUp: function() {
57     this.navigationManager = new FakeNavigationManager();
58     this.braille = new FakeBraille();
59     cvox.ChromeVox.navigationManager = this.navigationManager;
60     this.brailleTextHandler = new cvox.BrailleTextHandler(this.braille);
61   }
64 TEST_F('CvoxBrailleTextHandlerUnitTest', 'UpdateByUser', function() {
65   var navBraille = new cvox.NavBraille({ text: 'Hello, world!' });
66   this.navigationManager.setNavBraille(navBraille);
68   this.brailleTextHandler.changed('', 0, 0, false);
69   assertEquals(navBraille, this.braille.content);
70 });