summaryrefslogtreecommitdiffstats
path: root/services/common/tests/unit/test_utils_namedTimer.js
blob: 61a65e26037e1c68b4882240076679a6ce6278a4 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

Cu.import("resource://services-common/utils.js");

function run_test() {
  run_next_test();
}

add_test(function test_required_args() {
  try {
    CommonUtils.namedTimer(function callback() {
      do_throw("Shouldn't fire.");
    }, 0);
    do_throw("Should have thrown!");
  } catch(ex) {
    run_next_test();
  }
});

add_test(function test_simple() {
  _("Test basic properties of CommonUtils.namedTimer.");

  const delay = 200;
  let that = {};
  let t0 = Date.now();
  CommonUtils.namedTimer(function callback(timer) {
    do_check_eq(this, that);
    do_check_eq(this._zetimer, null);
    do_check_true(timer instanceof Ci.nsITimer);
    // Difference should be ~delay, but hard to predict on all platforms,
    // particularly Windows XP.
    do_check_true(Date.now() > t0);
    run_next_test();
  }, delay, that, "_zetimer");
});

add_test(function test_delay() {
  _("Test delaying a timer that hasn't fired yet.");

  const delay = 100;
  let that = {};
  let t0 = Date.now();
  function callback(timer) {
    // Difference should be ~2*delay, but hard to predict on all platforms,
    // particularly Windows XP.
    do_check_true((Date.now() - t0) > delay);
    run_next_test();
  }
  CommonUtils.namedTimer(callback, delay, that, "_zetimer");
  CommonUtils.namedTimer(callback, 2 * delay, that, "_zetimer");
  run_next_test();
});

add_test(function test_clear() {
  _("Test clearing a timer that hasn't fired yet.");

  const delay = 0;
  let that = {};
  CommonUtils.namedTimer(function callback(timer) {
    do_throw("Shouldn't fire!");
  }, delay, that, "_zetimer");

  that._zetimer.clear();
  do_check_eq(that._zetimer, null);
  CommonUtils.nextTick(run_next_test);

  run_next_test();
});