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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/chromevox/host/testing/msgs.js
diff --git a/chrome/browser/resources/chromeos/chromevox/host/testing/msgs.js b/chrome/browser/resources/chromeos/chromevox/host/testing/msgs.js
new file mode 100644
index 0000000000000000000000000000000000000000..0defca09396fb8cb3b811a1889f61c498eb91d2e
--- /dev/null
+++ b/chrome/browser/resources/chromeos/chromevox/host/testing/msgs.js
@@ -0,0 +1,86 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+
+/**
+ * @fileoverview Testing stub for messages.
+ */
+
+goog.provide('cvox.TestMsgs');
+
+goog.require('cvox.AbstractMsgs');
+goog.require('cvox.HostFactory');
+goog.require('cvox.TestMessages');
+
+
+
+/**
+ * @constructor
+ * @extends {cvox.AbstractMsgs}
+ */
+cvox.TestMsgs = function() {
+ cvox.AbstractMsgs.call(this);
+};
+goog.inherits(cvox.TestMsgs, cvox.AbstractMsgs);
+
+
+/**
+ * Return the current locale.
+ * @return {string} The locale.
+ */
+cvox.TestMsgs.prototype.getLocale = function() {
+ return 'testing';
+};
+
+
+/**
+ * Returns the message with the given message id from the ChromeVox namespace.
+ *
+ * @param {string} message_id The id.
+ * @param {Array.<string>} opt_subs Substitution strings.
+ * @return {string} The message.
+ */
+cvox.TestMsgs.prototype.getMsg = function(message_id, opt_subs) {
+ if (!message_id) {
+ var e = new Error();
+ e.message = 'Message id required';
+ throw e;
+ }
+ var message = cvox.TestMessages['chromevox_' + message_id];
+ if (message == undefined) {
+ var e = new Error();
+ e.message = 'missing-msg: ' + message_id;
+ throw e;
+ }
+
+ var messageString = message.message;
+ if (opt_subs) {
+ // Unshift a null to make opt_subs and message.placeholders line up.
+ for (var i = 0; i < opt_subs.length; i++) {
+ var placeholderObject = message.placeholders[i + 1];
+ if (!placeholderObject) {
+ var e = new Error();
+ e.message = 'Bad placeholder ' + i + ' for message id ' + message_id;
+ throw e;
+ }
+ var placeholder = message.placeholders[i + 1].content;
+ messageString = messageString.replace(placeholder, opt_subs[i]);
+ }
+ }
+ return messageString;
+};
+
+
+/**
+ * Retuns a number formatted correctly.
+ *
+ * @param {number} num The number.
+ * @return {string} The number in the correct locale.
+ */
+cvox.TestMsgs.prototype.getNumber = function(num) {
+ return '' + num;
+};
+
+/** @override */
+cvox.HostFactory.msgsConstructor = cvox.TestMsgs;

Powered by Google App Engine
This is Rietveld 408576698