Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/dom/console/tests/xpcshell/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 mit Größe 3 kB image not shown  

Quelle  test_console_shouldLog.js

  Sprache: JAVA
 

/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */


add_task(async function test_shouldLog_maxLogLevel() {
  let ci = console.createInstance({ maxLogLevel: "Warn" });

  Assert.ok(
    ci.shouldLog("Error"),
    "Should return true for logging a higher level"
  );
  Assert.ok(
    ci.shouldLog("Warn"),
    "Should return true for logging the same level"
  );
  Assert.ok(
    !ci.shouldLog("Debug"),
    "Should return false for logging a lower level;"
  );
});

add_task(async function test_shouldLog_maxLogLevelPref() {
  Services.prefs.setStringPref("test.log""Warn");
  let ci = console.createInstance({ maxLogLevelPref: "test.log" });

  Assert.ok(
    !ci.shouldLog("Debug"),
    "Should return false for logging a lower level;"
  );

  Services.prefs.setStringPref("test.log""Debug");
  Assert.ok(
    ci.shouldLog("Debug"),
    "Should return true for logging a lower level after pref update"
  );
});

add_task(async function test_shouldLog_env() {
  // https://searchfox.org/firefox-main/rev/a4d90d145864bee938bb23cb2684d64bff032431/mozglue/misc/LoggingCore.h#31-38
  //
  //   +---------+------------------+-----------------+
  //   | Numeric | NSPR Logging     | Mozilla Logging |
  //   +---------+------------------+-----------------+
  //   |       0 | PR_LOG_NONE      | Disabled        |
  //   |       1 | PR_LOG_ALWAYS    | Error           |
  //   |       2 | PR_LOG_ERROR     | Warning         |
  //   |       3 | PR_LOG_WARNING   | Info            |
  //   |       4 | PR_LOG_DEBUG     | Debug           |
  //   |       5 | PR_LOG_DEBUG + 1 | Verbose         |
  //   +---------+------------------+-----------------+

  const tests = [
    {
      mozLogLevel: 0,
      maxLogLevel: "Off",
      shouldLog: [],
      shouldNotLog: ["Error""Warn""Info""Debug""Trace"],
    },
    {
      mozLogLevel: 1,
      maxLogLevel: "Off",
      shouldLog: ["Error"],
      shouldNotLog: ["Warn""Info""Debug""Trace"],
    },
    {
      mozLogLevel: 2,
      maxLogLevel: "Off",
      shouldLog: ["Error""Warn"],
      shouldNotLog: ["Info""Debug""Trace"],
    },
    {
      mozLogLevel: 3,
      maxLogLevel: "Off",
      shouldLog: ["Error""Warn""Info"],
      shouldNotLog: ["Debug""Trace"],
    },
    {
      mozLogLevel: 4,
      maxLogLevel: "Off",
      shouldLog: ["Error""Warn""Info""Debug"],
      shouldNotLog: ["Trace"],
    },
    {
      mozLogLevel: 5,
      maxLogLevel: "Off",
      shouldLog: ["Error""Warn""Info""Debug""Trace"],
      shouldNotLog: [],
    },
    // Also check that MOZ_LOG doesn't prevent regular logging
    {
      mozLogLevel: 0,
      maxLogLevel: "All",
      shouldLog: ["Error""Warn""Info""Debug""Trace"],
      shouldNotLog: [],
    },
    {
      mozLogLevel: 0,
      maxLogLevel: "Warn",
      shouldLog: ["Error""Warn"],
      shouldNotLog: ["Info""Debug""Trace"],
    },
  ];

  for (const test of tests) {
    let mozLogCi = console.createInstance({
      prefix: "shouldlogtest_" + test.mozLogLevel,
      maxLogLevel: test.maxLogLevel,
    });

    for (const level of test.shouldNotLog) {
      Assert.ok(
        !mozLogCi.shouldLog(level),
        `Should return false for "${level}" with MOZ_LOG=${test.mozLogLevel} and maxLogLevel=${test.maxLogLevel}`
      );
    }

    for (const level of test.shouldLog) {
      Assert.ok(
        mozLogCi.shouldLog(level),
        `Should return true for "${level}" with MOZ_LOG=${test.mozLogLevel} and maxLogLevel=${test.maxLogLevel}`
      );
    }
  }
});

Messung V0.5 in Prozent
C=89 H=57 G=74

¤ Dauer der Verarbeitung: 0.4 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.