summaryrefslogtreecommitdiffstats
path: root/dom/base/test/unit/test_js_dev_error_interceptor.js
blob: 8ccc0dcaf8c705620a4adede8accb0a7966aa6e8 (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
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

"use strict";

function errors() {
  return [
    // The following two errors MUST NOT be captured.
    new Error("This is an error: " + Math.random()),
    new RangeError("This is a RangeError: " + Math.random()),
    new TypeError("This is a TypeError: " + Math.random()),
    "This is a string: " + Math.random(),
    null,
    undefined,
    Math.random(),
    {},

    // The following errors MUST be captured.
    new SyntaxError("This is a SyntaxError: " + Math.random()),
    new ReferenceError("This is a ReferenceError: " + Math.random()),
  ];
}

function isDeveloperError(e) {
  if (e == null || typeof e != "object") {
    return false;
  }

  return e.constructor == SyntaxError || e.constructor == ReferenceError;
}

function run_test() {
  ChromeUtils.clearRecentJSDevError();
  Assert.equal(ChromeUtils.recentJSDevError, undefined);

  for (let exn of errors()) {
    ChromeUtils.clearRecentJSDevError();
    try {
      throw exn;
    } catch (e) {
      // Discard error.
    }
    if (isDeveloperError(exn)) {
      Assert.equal(ChromeUtils.recentJSDevError.message, "" + exn);
    } else {
      Assert.equal(ChromeUtils.recentJSDevError, undefined);
    }
    ChromeUtils.clearRecentJSDevError();
    Assert.equal(ChromeUtils.recentJSDevError, undefined);
  }
}