Spracherkennung für: .ts vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]
import { describe, expect, it } from "vitest";
import { formatRelativeTimestamp, formatUnknownText, stripThinkingTags } from "./format.ts";
describe("formatAgo", () => {
it("returns 'in <1m' for timestamps less than 60s in the future", () => {
expect(formatRelativeTimestamp(Date.now() + 30_000)).toBe("in <1m");
});
it("returns 'Xm from now' for future timestamps", () => {
expect(formatRelativeTimestamp(Date.now() + 5 * 60_000)).toBe("in 5m");
});
it("returns 'Xh from now' for future timestamps", () => {
expect(formatRelativeTimestamp(Date.now() + 3 * 60 * 60_000)).toBe("in 3h");
});
it("returns 'Xd from now' for future timestamps beyond 48h", () => {
expect(formatRelativeTimestamp(Date.now() + 3 * 24 * 60 * 60_000)).toBe("in 3d");
});
it("returns 'Xs ago' for recent past timestamps", () => {
expect(formatRelativeTimestamp(Date.now() - 10_000)).toBe("just now");
});
it("returns 'Xm ago' for past timestamps", () => {
expect(formatRelativeTimestamp(Date.now() - 5 * 60_000)).toBe("5m ago");
});
it("returns 'n/a' for null/undefined", () => {
expect(formatRelativeTimestamp(null)).toBe("n/a");
expect(formatRelativeTimestamp(undefined)).toBe("n/a");
});
});
describe("stripThinkingTags", () => {
it("strips <think>…</think> segments", () => {
const input = ["<think>", "secret", "</think>", "", "Hello"].join("\n");
expect(stripThinkingTags(input)).toBe("Hello");
});
it("strips <thinking>…</thinking> segments", () => {
const input = ["<thinking>", "secret", "</thinking>", "", "Hello"].join("\n");
expect(stripThinkingTags(input)).toBe("Hello");
});
it("keeps text when tags are unpaired", () => {
expect(stripThinkingTags("<think>\nsecret\nHello")).toBe("secret\nHello");
expect(stripThinkingTags("Hello\n</think>")).toBe("Hello\n");
});
it("returns original text when no tags exist", () => {
expect(stripThinkingTags("Hello")).toBe("Hello");
});
it("strips <final>…</final> segments", () => {
const input = "<final>\n\nHello there\n\n</final>";
expect(stripThinkingTags(input)).toBe("Hello there\n\n");
});
it("strips mixed <think> and <final> tags", () => {
const input = "<think>reasoning</think>\n\n<final>Hello</final>";
expect(stripThinkingTags(input)).toBe("Hello");
});
it("handles incomplete <final tag gracefully", () => {
// When streaming splits mid-tag, we may see "<final" without closing ">"
// This should not crash and should handle gracefully
expect(stripThinkingTags("<final\nHello")).toBe("<final\nHello");
expect(stripThinkingTags("Hello</final>")).toBe("Hello");
});
it("strips <relevant-memories> blocks", () => {
const input = [
"<relevant-memories>",
"The following memories may be relevant to this conversation:",
"- Internal memory note",
"</relevant-memories>",
"",
"User-visible answer",
].join("\n");
expect(stripThinkingTags(input)).toBe("User-visible answer");
});
it("keeps relevant-memories tags in fenced code blocks", () => {
const input = [
"```xml",
"<relevant-memories>",
"sample",
"</relevant-memories>",
"```",
"",
"Visible text",
].join("\n");
expect(stripThinkingTags(input)).toBe(input);
});
it("hides unfinished <relevant-memories> block tails", () => {
const input = ["Hello", "<relevant-memories>", "internal-only"].join("\n");
expect(stripThinkingTags(input)).toBe("Hello\n");
});
});
describe("formatUnknownText", () => {
it("stringifies plain objects without throwing", () => {
expect(formatUnknownText({ ok: true })).toBe('{"ok":true}');
});
it("falls back to object tags for non-serializable values", () => {
const circular: Record<string, unknown> = {};
circular.self = circular;
expect(formatUnknownText(circular)).toBe("[object Object]");
});
it("formats symbols without relying on object coercion", () => {
expect(formatUnknownText(Symbol("agent"))).toBe("Symbol(agent)");
});
});
¤ Dauer der Verarbeitung: 0.0 Sekunden
(vorverarbeitet am 2026-04-28)
¤
*© Formatika GbR, Deutschland
|
|