mirror of
https://github.com/merlinhu1/truthmark.git
synced 2026-08-25 07:53:25 +02:00
* 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>
61 lines
1.8 KiB
TypeScript
61 lines
1.8 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
|
|
import { createTempRepo } from "../helpers/temp-repo.js";
|
|
import { parseMarkdownDocument } from "../../src/markdown/parse.js";
|
|
import { resolveAuthorityPaths } from "../../src/routing/authority.js";
|
|
|
|
describe("parseMarkdownDocument", () => {
|
|
it("extracts frontmatter, headings, and internal links", () => {
|
|
const document = parseMarkdownDocument(`---
|
|
status: active
|
|
---
|
|
|
|
# Authentication
|
|
|
|
See [Auth API](docs/api/authentication.md) and [anchor](#timeouts).
|
|
|
|
## Timeouts
|
|
|
|
Ignore [external](https://example.com).
|
|
`);
|
|
|
|
expect(document.frontmatter).toMatchObject({
|
|
status: "active",
|
|
});
|
|
expect(document.headings).toEqual([
|
|
{ depth: 1, text: "Authentication" },
|
|
{ depth: 2, text: "Timeouts" },
|
|
]);
|
|
expect(document.internalLinks).toEqual(["docs/api/authentication.md", "#timeouts"]);
|
|
});
|
|
});
|
|
|
|
describe("resolveAuthorityPaths", () => {
|
|
it("preserves declared authority order while expanding globs deterministically", async () => {
|
|
const repo = await createTempRepo();
|
|
|
|
try {
|
|
await repo.writeFile("docs/truthmark/routes/areas.md", "# Truthmark Areas\n");
|
|
await repo.writeFile("docs/guides/beta.md", "# Beta\n");
|
|
await repo.writeFile("docs/guides/alpha.md", "# Alpha\n");
|
|
await repo.writeFile("docs/api/authentication.md", "# Auth API\n");
|
|
|
|
const result = await resolveAuthorityPaths(repo.rootDir, [
|
|
"docs/truthmark/routes/areas.md",
|
|
"docs/guides/*.md",
|
|
"docs/api/*.md",
|
|
]);
|
|
|
|
expect(result.diagnostics).toEqual([]);
|
|
expect(result.paths).toEqual([
|
|
"docs/truthmark/routes/areas.md",
|
|
"docs/guides/alpha.md",
|
|
"docs/guides/beta.md",
|
|
"docs/api/authentication.md",
|
|
]);
|
|
} finally {
|
|
await repo.cleanup();
|
|
}
|
|
});
|
|
});
|