summaryrefslogtreecommitdiffstats
path: root/modules/libpref/test/unit/test_bug790374.js
blob: d4271a7ff75f0461c1ed2e6b2a8a8ed70f5c8c61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* 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);
}