新增通用 CSS 到 OOXML 翻译修复,统一字体、字距、精确行距、段落、列表、表格、引用、代码块与行内代码连续性,不引入按主题 ID 分支。 新增 MdTP Mono 并统一 Serif、Sans、Mono 三字体包的 Chromium 与 DOCX 使用链;字体声明、嵌入部件和 Word/WPS 实际采用均进入硬门禁。 重建封面整页及正文语义块视觉差分,14 套主题、纵横两个方向、五组页边距共 140 个真实场景全部通过,阻断失败和诊断失败均为零。 源码服务、Docker Web API 与实际安装 Desktop 的 red-briefing 导出均包含 5 个字体部件;Word/WPS 原生渲染和逐页复核通过。修复 Docker 构建上下文与运行层复用软链接,并完善 v0.6.1 版本、发行说明和发布归集。 验证:npm test(116 个文件、616 项测试)、npm run typecheck、npm run build、git diff --check 全部通过。Desktop 安装器与 ZIP、Docker v0.6.1 镜像已生成;Windows 产物仍为未签名内部发行。
199 lines
4.4 KiB
TypeScript
199 lines
4.4 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
|
|
import {
|
|
isCrossEngineRasterEquivalent,
|
|
type PdfRasterMetrics,
|
|
} from "../src/index.js";
|
|
|
|
function metrics(
|
|
overrides: Partial<PdfRasterMetrics> = {},
|
|
): PdfRasterMetrics {
|
|
return {
|
|
baselineWidthPx: 224,
|
|
baselineHeightPx: 37,
|
|
candidateWidthPx: 224,
|
|
candidateHeightPx: 37,
|
|
comparedWidthPx: 224,
|
|
comparedHeightPx: 37,
|
|
dimensionsMatch: true,
|
|
geometryNormalized: true,
|
|
spatialTolerancePx: 4,
|
|
meanAbsoluteError: 14.5,
|
|
changedPixelRatio: 0.27,
|
|
inkIou: 0.942,
|
|
edgeIou: 1,
|
|
backgroundColorDelta: 0.02,
|
|
foregroundColorDelta: 0,
|
|
...overrides,
|
|
};
|
|
}
|
|
|
|
describe("跨引擎字形栅格等价", () => {
|
|
it("接受轮廓、颜色和几何一致的灰阶抗锯齿差异", () => {
|
|
expect(isCrossEngineRasterEquivalent(metrics(), false)).toBe(true);
|
|
expect(
|
|
isCrossEngineRasterEquivalent(
|
|
metrics({
|
|
candidateWidthPx: 222,
|
|
inkIou: 0.88,
|
|
foregroundColorDelta: 3.5,
|
|
}),
|
|
false,
|
|
),
|
|
).toBe(true);
|
|
expect(
|
|
isCrossEngineRasterEquivalent(
|
|
metrics({ inkIou: 1, edgeIou: 0.946 }),
|
|
false,
|
|
"table-header",
|
|
),
|
|
).toBe(true);
|
|
expect(
|
|
isCrossEngineRasterEquivalent(
|
|
metrics({ inkIou: 0.969, edgeIou: 0.983 }),
|
|
false,
|
|
"code-block",
|
|
),
|
|
).toBe(true);
|
|
expect(
|
|
isCrossEngineRasterEquivalent(
|
|
metrics({
|
|
baselineWidthPx: 38,
|
|
candidateWidthPx: 38,
|
|
comparedWidthPx: 38,
|
|
inkIou: 0.902,
|
|
edgeIou: 0.904,
|
|
}),
|
|
false,
|
|
"code-block",
|
|
),
|
|
).toBe(true);
|
|
expect(
|
|
isCrossEngineRasterEquivalent(
|
|
metrics({
|
|
baselineWidthPx: 236,
|
|
candidateWidthPx: 233,
|
|
baselineHeightPx: 36,
|
|
candidateHeightPx: 38,
|
|
inkIou: 0.897,
|
|
edgeIou: 0.9996,
|
|
}),
|
|
false,
|
|
"paragraph",
|
|
),
|
|
).toBe(true);
|
|
expect(
|
|
isCrossEngineRasterEquivalent(
|
|
metrics({
|
|
baselineWidthPx: 272,
|
|
candidateWidthPx: 286,
|
|
baselineHeightPx: 43,
|
|
candidateHeightPx: 42,
|
|
inkIou: 0.948,
|
|
edgeIou: 0.958,
|
|
foregroundColorDelta: 4.2,
|
|
}),
|
|
false,
|
|
"list-item",
|
|
),
|
|
).toBe(true);
|
|
expect(
|
|
isCrossEngineRasterEquivalent(
|
|
metrics({
|
|
candidateWidthPx: 209,
|
|
inkIou: 0.974,
|
|
edgeIou: 0.984,
|
|
}),
|
|
false,
|
|
),
|
|
).toBe(true);
|
|
expect(
|
|
isCrossEngineRasterEquivalent(
|
|
metrics({
|
|
candidateWidthPx: 208,
|
|
inkIou: 0.91,
|
|
edgeIou: 0.94,
|
|
}),
|
|
false,
|
|
"list-item",
|
|
),
|
|
).toBe(true);
|
|
});
|
|
|
|
it("拒绝回流、颜色、几何或轮廓变化", () => {
|
|
expect(isCrossEngineRasterEquivalent(metrics(), true)).toBe(false);
|
|
expect(
|
|
isCrossEngineRasterEquivalent(
|
|
metrics({ foregroundColorDelta: 4.01 }),
|
|
false,
|
|
),
|
|
).toBe(false);
|
|
expect(
|
|
isCrossEngineRasterEquivalent(
|
|
metrics({ candidateWidthPx: 220 }),
|
|
false,
|
|
),
|
|
).toBe(false);
|
|
expect(
|
|
isCrossEngineRasterEquivalent(
|
|
metrics({
|
|
candidateWidthPx: 207,
|
|
inkIou: 0.91,
|
|
edgeIou: 0.94,
|
|
}),
|
|
false,
|
|
"list-item",
|
|
),
|
|
).toBe(false);
|
|
expect(
|
|
isCrossEngineRasterEquivalent(
|
|
metrics({
|
|
candidateWidthPx: 208,
|
|
inkIou: 0.974,
|
|
edgeIou: 0.984,
|
|
}),
|
|
false,
|
|
),
|
|
).toBe(false);
|
|
expect(
|
|
isCrossEngineRasterEquivalent(
|
|
metrics({
|
|
candidateWidthPx: 209,
|
|
inkIou: 0.91,
|
|
edgeIou: 0.94,
|
|
}),
|
|
false,
|
|
"paragraph",
|
|
),
|
|
).toBe(false);
|
|
expect(
|
|
isCrossEngineRasterEquivalent(metrics({ edgeIou: 0.96 }), false),
|
|
).toBe(false);
|
|
expect(
|
|
isCrossEngineRasterEquivalent(
|
|
metrics({
|
|
baselineWidthPx: 38,
|
|
candidateWidthPx: 38,
|
|
comparedWidthPx: 38,
|
|
inkIou: 0.89,
|
|
edgeIou: 0.904,
|
|
}),
|
|
false,
|
|
"code-block",
|
|
),
|
|
).toBe(false);
|
|
expect(
|
|
isCrossEngineRasterEquivalent(
|
|
metrics({
|
|
baselineHeightPx: 37,
|
|
candidateHeightPx: 40,
|
|
inkIou: 0.95,
|
|
edgeIou: 1,
|
|
}),
|
|
false,
|
|
"paragraph",
|
|
),
|
|
).toBe(false);
|
|
});
|
|
});
|