Files
truthmark/tests/output/render.test.ts
T
a083b703fa feat: add Truthmark health scorecard and bounded workflow contracts (#13)
* feat: add OpenSpec-driven workflow state

* docs: plan generated playbooks workflow contract

* feat: add truth health scorecard

Release Truthmark 2.1.0 with check JSON scorecard output.

Archive the completed OpenSpec pass 4 scorecard change and update generated truth surfaces.

* fix: unblock truthmark scorecard review

- restore and update coverage for scorecard/evidence/workflow behavior
- make truthmark-sync select a cheap local base when --base is omitted
- report malformed evidence YAML blocks as diagnostics instead of throwing

* fix: tighten workflow boundaries

* fix: fail closed when sync has no comparison base

* fix: tighten truth health review coverage

- only parse fenced YAML evidence blocks with top-level evidence markers
- convert coverage fixtures to valid v2 config and assert non-vacuous diagnostics
- update Truthmark truth docs for source traceability and workflow-state tests

* docs: clarify source traceability diagnostics

* docs: harden optional CLI workflow boundary

* docs: clarify product boundary is repo-local

* fix: bound truthmark workflow fallback behavior

- make live workflow preflight use the one-call instructions contract
- keep missing-CLI fallback bounded for Sync, Document, Structure, and Realize
- add routing and generated-surface coverage plus refreshed host surfaces

* test: cover no-cli workflow fallback bounds

- assert route-first fallback wording in generated workflow surfaces
- clarify progressive-disclosure support files are conditional
- align overview docs with bounded no-CLI behavior

* docs: route workflow eval coverage

* fix: remove workflow instructions preflight

* fix: remove stale workflow preflight wording

* fix: remove generic workflow validation blocks

* fix: avoid duplicated markdown context JSON

* fix: keep workflow status manifest-only

* docs: align truth docs with v2 hierarchy

---------

Co-authored-by: MerlinH <merlinh221@gmail.com>
2026-06-13 04:09:45 +10:00

111 lines
2.9 KiB
TypeScript

import { describe, expect, it } from "vitest";
import {
DIAGNOSTIC_CATEGORIES,
type CommandResult,
} from "../../src/output/diagnostic.js";
import { renderHuman, renderJson } from "../../src/output/render.js";
describe("output rendering", () => {
it("renders the command name and summary first for human output", () => {
const result: CommandResult = {
command: "check",
summary: "Found 2 issues to review.",
diagnostics: [
{
category: "config",
severity: "action",
message: "Created .truthmark/config.yml.",
},
],
};
const output = renderHuman(result);
const lines = output.split("\n");
expect(lines[0]).toBe("truthmark check");
expect(lines[1]).toBe("Found 2 issues to review.");
});
it("renders action, review, and error diagnostics consistently", () => {
const result: CommandResult = {
command: "check",
summary: "Found issues.",
diagnostics: [
{
category: "config",
severity: "action",
message: "Created .truthmark/config.yml.",
file: ".truthmark/config.yml",
},
{
category: "coverage",
severity: "review",
message: "No truth docs are mapped for src/auth/**.",
area: "Authentication",
},
{
category: "links",
severity: "error",
message: "Broken link to docs/api/authentication.md.",
},
],
};
expect(renderHuman(result)).toContain(
"[ACTION] config: Created .truthmark/config.yml. (file: .truthmark/config.yml)",
);
expect(renderHuman(result)).toContain(
"[REVIEW] coverage: No truth docs are mapped for src/auth/**. (area: Authentication)",
);
expect(renderHuman(result)).toContain(
"[ERROR] links: Broken link to docs/api/authentication.md.",
);
});
it("renders deterministic JSON that round-trips to the command result", () => {
const result: CommandResult = {
command: "init",
summary: "Created Truthmark files.",
diagnostics: [
{
category: "config",
severity: "action",
message: "Created .truthmark/config.yml.",
data: {
created: true,
},
},
],
data: {
files: [".truthmark/config.yml", "docs/truthmark/routes/areas.md"],
},
};
const parsed = JSON.parse(renderJson(result)) as CommandResult;
expect(parsed).toEqual(result);
});
it("exports the V1 diagnostic category list", () => {
expect(DIAGNOSTIC_CATEGORIES).toEqual([
"config",
"authority",
"frontmatter",
"links",
"area-index",
"coverage",
"truth-sync",
"realization",
"doc-structure",
"generated-surface",
"repo-index",
"impact",
"freshness",
"source-traceability",
"context-pack",
"workflow-state",
]);
});
});