summaryrefslogtreecommitdiffstats
path: root/toolkit/modules/tests/browser/browser_Deprecated.js
blob: 94396b1384ae821e3d9e88fa47d261552a4233d2 (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/* 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/. */

const PREF_DEPRECATION_WARNINGS = "devtools.errorconsole.deprecation_warnings";

// Using this named functions to test deprecation and the properly logged
// callstacks.
function basicDeprecatedFunction() {
  Deprecated.warning("this method is deprecated.", "https://example.com");
  return true;
}

function deprecationFunctionBogusCallstack() {
  Deprecated.warning("this method is deprecated.", "https://example.com", {
    caller: {},
  });
  return true;
}

function deprecationFunctionCustomCallstack() {
  // Get the nsIStackFrame that will contain the name of this function.
  function getStack() {
    return Components.stack;
  }
  Deprecated.warning(
    "this method is deprecated.",
    "https://example.com",
    getStack()
  );
  return true;
}

var tests = [
  // Test deprecation warning without passing the callstack.
  {
    deprecatedFunction: basicDeprecatedFunction,
    expectedObservation(aMessage) {
      testAMessage(aMessage);
      ok(
        aMessage.indexOf("basicDeprecatedFunction") > 0,
        "Callstack is correctly logged."
      );
    },
  },
  // Test a reported error when URL to documentation is not passed.
  {
    deprecatedFunction() {
      Deprecated.warning("this method is deprecated.");
      return true;
    },
    expectedObservation(aMessage) {
      ok(
        aMessage.indexOf("must provide a URL") > 0,
        "Deprecation warning logged an empty URL argument."
      );
    },
  },
  // Test deprecation with a bogus callstack passed as an argument (it will be
  // replaced with the current call stack).
  {
    deprecatedFunction: deprecationFunctionBogusCallstack,
    expectedObservation(aMessage) {
      testAMessage(aMessage);
      ok(
        aMessage.indexOf("deprecationFunctionBogusCallstack") > 0,
        "Callstack is correctly logged."
      );
    },
  },
  // Test deprecation with a valid custom callstack passed as an argument.
  {
    deprecatedFunction: deprecationFunctionCustomCallstack,
    expectedObservation(aMessage) {
      testAMessage(aMessage);
      ok(
        aMessage.indexOf("deprecationFunctionCustomCallstack") > 0,
        "Callstack is correctly logged."
      );
    },
    // Set pref to true.
    logWarnings: true,
  },
];

// Test Console Message attributes.
function testAMessage(aMessage) {
  ok(
    aMessage.indexOf("DEPRECATION WARNING: this method is deprecated.") === 0,
    "Deprecation is correctly logged."
  );
  ok(aMessage.indexOf("https://example.com") > 0, "URL is correctly logged.");
}

add_task(async function test_setup() {
  Services.prefs.setBoolPref(PREF_DEPRECATION_WARNINGS, true);

  // Check if Deprecated is loaded.
  ok(Deprecated, "Deprecated object exists");
});

add_task(async function test_pref_enabled() {
  for (let [idx, test] of tests.entries()) {
    info("Running test #" + idx);

    let promiseObserved = TestUtils.consoleMessageObserved(subject => {
      let msg = subject.wrappedJSObject.arguments?.[0];
      return (
        msg.includes("DEPRECATION WARNING: ") ||
        msg.includes("must provide a URL")
      );
    });

    test.deprecatedFunction();

    let msg = await promiseObserved;

    test.expectedObservation(msg.wrappedJSObject.arguments?.[0]);
  }
});

add_task(async function test_pref_disabled() {
  // Deprecation warnings will be logged only when the preference is set.
  Services.prefs.setBoolPref(PREF_DEPRECATION_WARNINGS, false);

  let endFn = TestUtils.listenForConsoleMessages();
  basicDeprecatedFunction();

  let messages = await endFn();
  Assert.equal(messages.length, 0, "Should not have received any messages");
});