1
0
Fork 0
firefox/modules/libpref/test/unit/test_bug790374.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

50 lines
1.4 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/ */
function run_test() {
const PREF_NAME = "testPref";
var prefs = Services.prefs.getDefaultBranch(null);
var userprefs = Services.prefs.getBranch(null);
/* First, test to make sure we can parse a float from a string properly. */
prefs.setCharPref(PREF_NAME, "9.674");
prefs.lockPref(PREF_NAME);
var myFloat = 9.674;
var fudge = 0.001;
var floatPref = userprefs.getFloatPref(PREF_NAME);
Assert.ok(myFloat + fudge >= floatPref);
Assert.ok(myFloat - fudge <= floatPref);
/* Now test some failure conditions. */
prefs.unlockPref(PREF_NAME);
prefs.setCharPref(PREF_NAME, "");
prefs.lockPref(PREF_NAME);
do_check_throws(function () {
userprefs.getFloatPref(PREF_NAME);
}, Cr.NS_ERROR_ILLEGAL_VALUE);
prefs.unlockPref(PREF_NAME);
prefs.setCharPref(PREF_NAME, "18.0a1");
prefs.lockPref(PREF_NAME);
do_check_throws(function () {
userprefs.getFloatPref(PREF_NAME);
}, Cr.NS_ERROR_ILLEGAL_VALUE);
prefs.unlockPref(PREF_NAME);
prefs.setCharPref(PREF_NAME, "09.25.2012");
prefs.lockPref(PREF_NAME);
do_check_throws(function () {
userprefs.getFloatPref(PREF_NAME);
}, Cr.NS_ERROR_ILLEGAL_VALUE);
prefs.unlockPref(PREF_NAME);
prefs.setCharPref(PREF_NAME, "aString");
prefs.lockPref(PREF_NAME);
do_check_throws(function () {
userprefs.getFloatPref(PREF_NAME);
}, Cr.NS_ERROR_ILLEGAL_VALUE);
}