Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/host/testing/msgs.js

Issue 298653011: More ChromeVox tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix style violations Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2013 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.
4
5
6 /**
7 * @fileoverview Testing stub for messages.
8 */
9
10 goog.provide('cvox.TestMsgs');
11
12 goog.require('cvox.AbstractMsgs');
13 goog.require('cvox.HostFactory');
14 goog.require('cvox.TestMessages');
15
16
17
18 /**
19 * @constructor
20 * @extends {cvox.AbstractMsgs}
21 */
22 cvox.TestMsgs = function() {
23 cvox.AbstractMsgs.call(this);
24 };
25 goog.inherits(cvox.TestMsgs, cvox.AbstractMsgs);
26
27
28 /**
29 * Return the current locale.
30 * @return {string} The locale.
31 */
32 cvox.TestMsgs.prototype.getLocale = function() {
33 return 'testing';
34 };
35
36
37 /**
38 * Returns the message with the given message id from the ChromeVox namespace.
39 *
40 * @param {string} message_id The id.
41 * @param {Array.<string>} opt_subs Substitution strings.
42 * @return {string} The message.
43 */
44 cvox.TestMsgs.prototype.getMsg = function(message_id, opt_subs) {
45 if (!message_id) {
46 var e = new Error();
47 e.message = 'Message id required';
48 throw e;
49 }
50 var message = cvox.TestMessages['chromevox_' + message_id];
51 if (message == undefined) {
52 var e = new Error();
53 e.message = 'missing-msg: ' + message_id;
54 throw e;
55 }
56
57 var messageString = message.message;
58 if (opt_subs) {
59 // Unshift a null to make opt_subs and message.placeholders line up.
60 for (var i = 0; i < opt_subs.length; i++) {
61 var placeholderObject = message.placeholders[i + 1];
62 if (!placeholderObject) {
63 var e = new Error();
64 e.message = 'Bad placeholder ' + i + ' for message id ' + message_id;
65 throw e;
66 }
67 var placeholder = message.placeholders[i + 1].content;
68 messageString = messageString.replace(placeholder, opt_subs[i]);
69 }
70 }
71 return messageString;
72 };
73
74
75 /**
76 * Retuns a number formatted correctly.
77 *
78 * @param {number} num The number.
79 * @return {string} The number in the correct locale.
80 */
81 cvox.TestMsgs.prototype.getNumber = function(num) {
82 return '' + num;
83 };
84
85 /** @override */
86 cvox.HostFactory.msgsConstructor = cvox.TestMsgs;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698