Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/js/xpconnect/tests/chrome/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 2 kB image not shown  

Quelle  test_scripterror.html   Sprache: HTML

 
 products/Sources/formale Sprachen/C/Firefox/js/xpconnect/tests/chrome/test_scripterror.html


<!DOCTYPE html>
<meta charset=utf-8>
<title>Tests for nsIScriptError</title>
<script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
<div id="log"></div>
<script>
function awaitScriptError(fun) {
  // Use setTimeout in order to prevent throwing from test frame
  // and to have a clean stack frame.
  setTimeout(fun, 0)

  return new Promise(resolve => {
    const observer = {
      QueryInterface: ChromeUtils.generateQI(["nsIObserver"]),
      observe(message) {
        if (!(message instanceof Ci.nsIScriptError)) {
          return;
        }

        Services.console.unregisterListener(observer);
        resolve(message);
      }
    };

    Services.console.registerListener(observer);
  });
}

function hasExpectedProperties(message, exception) {
  is(message.hasException, true, "has exception");
  is(message.exception, exception, "has correct exception");

  ok(message.stack != null, "has stack");
  is(message.stack?.source, location.href, "correct stack source")

  is(message.sourceName, location.href, "has correct sourceName/filename");
  ok(message.lineNumber > 0, "has lineNumber");

  is(message.innerWindowID, window.windowGlobalChild.innerWindowId,
     "correct innerWindowID");
}

add_task(async () => {
  await SpecialPowers.pushPrefEnv({"set": [
    ["javascript.options.asyncstack_capture_debuggee_only", false],
  ]});

  const TESTS = [
    "abc",
    new Error("foobar"),
    {foo: "bar"}
  ];

  for (let test of TESTS) {
    // First test as regular throw
    SimpleTest.expectUncaughtException();
    let message = await awaitScriptError(function testName() {
        throw test;
    });
    hasExpectedProperties(message, test);
    is(message.isPromiseRejection, false, "not a rejected promise");

    // Now test as uncaught promise rejection
    message = await awaitScriptError(function testName() {
        Promise.reject(test);
    });
    hasExpectedProperties(message, test);
    is(message.isPromiseRejection, true, "is a rejected promise");

    // Uncaught rejection from async function
    message = await awaitScriptError(async function testName() {
        throw test;
    });
    hasExpectedProperties(message, test);
    is(message.isPromiseRejection, true, "is a rejected promise");

    // Uncaught rejection from then callback
    message = await awaitScriptError(async function testName() {
        Promise.resolve().then(() => {
          throw test;
        });
    });
    hasExpectedProperties(message, test);
    is(message.isPromiseRejection, true, "is a rejected promise");
  }
});
</script>

Messung V0.5
C=100 H=100 G=100

¤ Dauer der Verarbeitung: 0.2 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

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.