зеркало из https://github.com/mozilla/gecko-dev.git
34 строки
909 B
JavaScript
34 строки
909 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
function run_test() {
|
|
const { MessageContext } = ChromeUtils.import("resource://gre/modules/MessageContext.jsm", {});
|
|
|
|
test_methods_presence(MessageContext);
|
|
test_methods_calling(MessageContext);
|
|
|
|
ok(true);
|
|
}
|
|
|
|
function test_methods_presence(MessageContext) {
|
|
const ctx = new MessageContext(["en-US", "pl"]);
|
|
equal(typeof ctx.addMessages, "function");
|
|
equal(typeof ctx.format, "function");
|
|
}
|
|
|
|
function test_methods_calling(MessageContext) {
|
|
const ctx = new MessageContext(["en-US", "pl"], {
|
|
useIsolating: false
|
|
});
|
|
ctx.addMessages("key = Value");
|
|
|
|
const msg = ctx.getMessage("key");
|
|
equal(ctx.format(msg), "Value");
|
|
|
|
ctx.addMessages("key2 = Hello { $name }");
|
|
|
|
const msg2 = ctx.getMessage("key2");
|
|
equal(ctx.format(msg2, { name: "Amy" }), "Hello Amy");
|
|
ok(true);
|
|
}
|