Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Firefox/devtools/server/tests/xpcshell/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  test_source-01.js   Sprache: JAVA

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


"use strict";

// This test ensures that we can create SourceActors and SourceFronts properly,
// and that they can communicate over the protocol to fetch the source text for
// a given script.

const SOURCE_URL = "http://example.com/foobar.js";
const SOURCE_CONTENT = "stopMe()";

add_task(
  threadFrontTest(async ({ threadFront, debuggee }) => {
    DevToolsServer.LONG_STRING_LENGTH = 200;

    await executeOnNextTickAndWaitForPause(
      () => evaluateTestCode(debuggee),
      threadFront
    );
    const response = await threadFront.getSources();

    Assert.ok(!!response);
    Assert.ok(!!response.sources);

    const source = response.sources.filter(function (s) {
      return s.url === SOURCE_URL;
    })[0];

    Assert.ok(!!source);

    const sourceFront = threadFront.source(source);
    const response2 = await sourceFront.source();

    Assert.ok(!!response2);
    Assert.ok(!!response2.contentType);
    Assert.ok(response2.contentType.includes("javascript"));

    Assert.ok(!!response2.source);
    Assert.equal(SOURCE_CONTENT, response2.source);

    await threadFront.resume();
  })
);

function evaluateTestCode(debuggee) {
  Cu.evalInSandbox(
    "" +
      // These arguments are tested.
      // eslint-disable-next-line no-unused-vars
      function stopMe(arg1) {
        debugger;
      },
    debuggee,
    "1.8",
    getFileUrl("test_source-01.js")
  );

  Cu.evalInSandbox(SOURCE_CONTENT, debuggee, "1.8", SOURCE_URL);
}

96%


¤ Dauer der Verarbeitung: 0.16 Sekunden  (vorverarbeitet)  ¤

*© 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 ist noch experimentell.