64cd51667d
Add String formatting by extending the String object with a format method. Now we can do stuff like "Text: %s, %d".format(somevar, 5) This is required for proper translation of some strings. https://bugzilla.gnome.org/show_bug.cgi?id=595661
30 lines
1009 B
JavaScript
30 lines
1009 B
JavaScript
/* -*- mode: js2; js2-basic-offset: 4; indent-tabs-mode: nil -*- */
|
|
|
|
/*
|
|
* Test cases for the Format module
|
|
*/
|
|
|
|
const JsUnit = imports.jsUnit;
|
|
const assertEquals = JsUnit.assertEquals;
|
|
const assertRaises = JsUnit.assertRaises;
|
|
|
|
// We can't depend on environment.js to set up the String.prototype.format,
|
|
// because the tests run in one JS context, and the imports run in the GJS
|
|
// "load context" which has its own copy of the String class
|
|
const Format = imports.misc.format;
|
|
String.prototype.format = Format.format;
|
|
|
|
// Test common usage and %% handling
|
|
assertEquals("foo", "%s".format('foo'));
|
|
assertEquals("%s", "%%s".format('foo'));
|
|
assertEquals("%%s", "%%%%s".format('foo'));
|
|
assertEquals("foo 5", "%s %d".format('foo', 5));
|
|
assertEquals("8", "%d".format(8));
|
|
assertEquals("2.58 6.96", "%f %.2f".format(2.58, 6.958));
|
|
|
|
// Precision is only allowed for %f
|
|
assertRaises(function() { "%.2d".format(5.21) });
|
|
|
|
// Wrong conversion character ' '
|
|
assertRaises( function() { "%s is 50% done".format('foo') });
|