Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/JAVA/Openclaw/src/infra/   (KI Agentensystem Version 22©)  Datei vom 26.3.2026 mit Größe 1000 B image not shown  

Quelle  fatal-error-hooks.test.ts

  Sprache: JAVA
 

Spracherkennung für: .ts vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

import { beforeEach, describe, expect, it } from "vitest";
import {
  registerFatalErrorHook,
  resetFatalErrorHooksForTest,
  runFatalErrorHooks,
} from "./fatal-error-hooks.js";

describe("fatal error hooks", () => {
  beforeEach(() => {
    resetFatalErrorHooksForTest();
  });

  it("collects non-empty hook messages", () => {
    registerFatalErrorHook(() => "first");
    registerFatalErrorHook(() => "  ");
    registerFatalErrorHook(() => "second");

    expect(runFatalErrorHooks({ reason: "uncaught_exception" })).toEqual(["first", "second"]);
  });

  it("does not expose hook failure message or stack text", () => {
    registerFatalErrorHook(() => {
      throw new Error("raw secret from hook");
    });

    const messages = runFatalErrorHooks({ reason: "uncaught_exception" });
    const output = messages.join("\n");

    expect(messages).toEqual(["fatal-error hook failed: Error"]);
    expect(output).not.toContain("raw secret");
    expect(output).not.toContain("at ");
  });
});

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet am  2026-04-27) ¤

*© 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.