核心重构 — 去除 channel 字段,引入 sourceAccount 模型: - 从 ImportedEvent、Rule、EnhancedRule、OcrRule 等接口中彻底移除 channel 字段 - rules.ts 中 resolveChannelAccount → resolveSourceAccount,规则匹配与账户解析不再依赖渠道概念 - dedup.ts 重写去重逻辑:从基于渠道匹配改为基于交易对手(counterparty)匹配,支持相同金额/交易对手/时间窗口的多级置信度判断 - transferRecognizer.ts 增加资产负债表账户校验,确保转账双方均为 Assets/Liabilities 类账户 - 全局替换影响:types、rules、ocr、adapters、adapters-migrations、所有服务层和测试 新增基础设施: - domain/constants.ts — 统一常量定义(支付包名、截图关键词、去重参数、方向检测函数 detectDirection()),消除 OCR/SMS/截图等模块的重复定义 - domain/channelConfig.ts — 渠道配置系统(支付宝/微信/银行),支持按包名和名称查找 - domain/pipelineSingleton.ts — 共享 BillPipeline 单例,解决 importStore/automationStore 的互斥锁共享问题 - domain/transactionBuilder.ts — 统一交易构建入口 buildAndSaveTransaction(),同时服务手动录入和无障碍监听 OCR 增强: - 新增账单详情页解析(parseDetailPageBill),支持支付宝/微信详情页结构化提取 - checkIsDetailPage() 识别详情页特征词,防止误提取(如"消费1次"被误读为金额) - 金额正则支持千分位逗号分隔,商户名正则改用 lookahead 边界匹配 - 时间解析支持中文格式(年月日)和跨年推断 - OcrProcessor 新增详情页路由,跳过 Layer 1 规则匹配 UI 全面升级: - 主题重设计:accent 色从绿色改为靛蓝(#4F46E5),深色模式适配 OLED 纯黑,引入 Quicksand/Caveat 字体 - 新增 commonStyles.ts 统一 chip/input/modal 等通用样式 - 首页 Bento 网格布局:净资产英雄卡片 + 定期账单/月度统计并排展示 - 报表新增周报标签页,月报整合日历视图(支持点击查看当日交易明细) - TrendLine 图表从 View 条形图重写为 SVG 贝塞尔曲线 - CategoryPicker 从水平滚动改为 4 列网格 + emoji 图标 - Button/Card 增加 press 缩放动画 管道与自动化改进: - automationPipeline.ts 新增 handleIncomingBillEvent() 实时账单处理(悬浮账单卡片 + 前台 Alert 确认) - 新增无障碍文本直解析 parseAndProcessAccessibilityTexts(),微信/支付宝详情页绕过 OCR - rules.ts 新增智能还款检测(花呗/信用卡还款自动路由)和退款视为收入处理 - metadataStore 默认规则精简为 6 条通用规则,移除约 20 条个人化硬编码规则 存储与同步: - storePersistence.ts 原子写入 + 崩溃恢复 + 重试机制 - 备份升级到 v2 格式,包含 settings 和 metadata - 同步路径统一从 mobile.bean 改为 main.bean - _layout.tsx 启动时自动迁移旧 mobile.bean 到 main.bean 其他: - 删除独立日历页面,功能合并到报表月报标签 - i18n 清理:移除渠道相关翻译,新增 50+ 翻译键 - docs/android-build-guide.md 重写为 APK 体积优化指南 - 新增 design-system/beancount-mobile/MASTER.md 设计系统文档 - 测试全面更新覆盖以上所有变更
214 lines
9.1 KiB
TypeScript
214 lines
9.1 KiB
TypeScript
import { describe, expect, it } from 'vitest';
|
||
import { BillPipeline } from '../src/domain/billPipeline';
|
||
import { batchDedup, checkDuplicate, dedupAgainstHistory, dedupFingerprint, type DedupConfig } from '../src/domain/dedup';
|
||
import { recognizeTransfers } from '../src/domain/transferRecognizer';
|
||
import { parseLedger } from '../src/domain/ledger';
|
||
import type { Category } from '../src/domain/categories';
|
||
import type { ImportedEvent, Transaction } from '../src/domain/types';
|
||
|
||
const ledger = parseLedger([{ path: 'main.bean', content: '2026-01-01 open Assets:Alipay CNY\n2026-01-01 open Assets:WeChat CNY\n2026-01-01 open Assets:Bank:CMB CNY\n2026-01-01 open Expenses:Food CNY\n2026-01-01 open Expenses:Uncategorized CNY\n2026-01-01 open Income:Uncategorized CNY\n' }]);
|
||
|
||
const evt = (over: Partial<ImportedEvent> & { id: string }): ImportedEvent => {
|
||
const { id = 'e1', ...rest } = over;
|
||
return {
|
||
occurredAt: '2026-02-01T10:00:00', amount: '-100', currency: 'CNY',
|
||
direction: 'expense', counterparty: '', memo: '', raw: {},
|
||
id,
|
||
...rest,
|
||
};
|
||
};
|
||
|
||
describe('dedup - checkDuplicate', () => {
|
||
const config: DedupConfig = { timeWindowMinutes: 5, checkAccountLink: true };
|
||
|
||
it('时间完全相同 + 金额一致 → 高置信度重复', () => {
|
||
const a = evt({ id: 'a' });
|
||
const b = evt({ id: 'b' });
|
||
const result = checkDuplicate(b, [a], config);
|
||
expect(result.isDuplicate).toBe(true);
|
||
expect(result.confidence).toBe('high');
|
||
});
|
||
|
||
it('时间窗口内 + 金额匹配 + 对手方一致 → 中置信度重复', () => {
|
||
const a = evt({ id: 'a', occurredAt: '2026-02-01T10:00:00', counterparty: '星巴克' });
|
||
const b = evt({ id: 'b', occurredAt: '2026-02-01T10:03:00', counterparty: '星巴克' });
|
||
const result = checkDuplicate(b, [a], config);
|
||
expect(result.isDuplicate).toBe(true);
|
||
expect(result.confidence).toBe('medium');
|
||
});
|
||
|
||
it('时间窗口内 + 金额匹配 + 无对手方 → 低置信度重复', () => {
|
||
const a = evt({ id: 'a', occurredAt: '2026-02-01T10:00:00' });
|
||
const b = evt({ id: 'b', occurredAt: '2026-02-01T10:03:00' });
|
||
const result = checkDuplicate(b, [a], config);
|
||
expect(result.isDuplicate).toBe(true);
|
||
expect(result.confidence).toBe('low');
|
||
});
|
||
|
||
it('时间超出窗口 → 非重复', () => {
|
||
const a = evt({ id: 'a', occurredAt: '2026-02-01T10:00:00' });
|
||
const b = evt({ id: 'b', occurredAt: '2026-02-01T10:10:00' }); // 10 分钟后
|
||
const result = checkDuplicate(b, [a], config);
|
||
expect(result.isDuplicate).toBe(false);
|
||
});
|
||
|
||
it('金额不同 → 非重复', () => {
|
||
const a = evt({ id: 'a', amount: '100' });
|
||
const b = evt({ id: 'b', amount: '200' });
|
||
const result = checkDuplicate(b, [a], config);
|
||
expect(result.isDuplicate).toBe(false);
|
||
});
|
||
});
|
||
|
||
describe('dedup - batchDedup', () => {
|
||
it('批量去重保留首个、丢弃重复', () => {
|
||
const events = [
|
||
evt({ id: 'a', occurredAt: '2026-02-01T10:00:00' }),
|
||
evt({ id: 'b', occurredAt: '2026-02-01T10:00:00' }), // 与 a 重复
|
||
evt({ id: 'c', occurredAt: '2026-02-01T11:00:00' }), // 不同时间
|
||
];
|
||
const result = batchDedup(events);
|
||
expect(result.accepted).toHaveLength(2);
|
||
expect(result.duplicates).toHaveLength(1);
|
||
expect(result.duplicates[0].id).toBe('b');
|
||
});
|
||
});
|
||
|
||
describe('dedup - dedupAgainstHistory', () => {
|
||
it('与已入账交易去重', () => {
|
||
const history: Transaction[] = [{
|
||
id: 't1', date: '2026-02-01T10:00:00', flag: '*',
|
||
postings: [{ account: 'Assets:Alipay', amount: '-100', currency: 'CNY' }, { account: 'Expenses:Food', amount: '100', currency: 'CNY' }],
|
||
tags: [], links: [], source: 'mobile.bean', raw: '',
|
||
}];
|
||
const events = [
|
||
evt({ id: 'a', occurredAt: '2026-02-01T10:00:00' }), // 与历史重复
|
||
evt({ id: 'b', occurredAt: '2026-02-02T10:00:00' }), // 新交易
|
||
];
|
||
const result = dedupAgainstHistory(events, history);
|
||
expect(result.accepted).toHaveLength(1);
|
||
expect(result.duplicates).toHaveLength(1);
|
||
});
|
||
});
|
||
|
||
describe('transferRecognizer - recognizeTransfers', () => {
|
||
it('Income + Expend → Transfer(先于去重)', () => {
|
||
const events = [
|
||
evt({ id: 'a', amount: '100', direction: 'expense', counterparty: '支付宝', occurredAt: '2026-02-01T10:00:00' }),
|
||
evt({ id: 'b', amount: '100', direction: 'income', counterparty: '银行卡', occurredAt: '2026-02-01T10:02:00' }),
|
||
];
|
||
const result = recognizeTransfers(events);
|
||
expect(result.transfers).toHaveLength(1);
|
||
expect(result.transfers[0].draft.postings[0].account).toBe('Assets:转账-支付宝');
|
||
expect(result.transfers[0].draft.postings[1].account).toBe('Assets:转账-银行卡');
|
||
expect(result.remaining).toHaveLength(0);
|
||
});
|
||
|
||
it('相同对手方也会识别为转账(由金额和时间决定)', () => {
|
||
const events = [
|
||
evt({ id: 'a', amount: '100', direction: 'expense', counterparty: '支付宝', occurredAt: '2026-02-01T10:00:00' }),
|
||
evt({ id: 'b', amount: '100', direction: 'income', counterparty: '支付宝', occurredAt: '2026-02-01T10:02:00' }),
|
||
];
|
||
const result = recognizeTransfers(events);
|
||
expect(result.transfers).toHaveLength(1);
|
||
expect(result.remaining).toHaveLength(0);
|
||
});
|
||
|
||
it('金额不一致不配对', () => {
|
||
const events = [
|
||
evt({ id: 'a', amount: '100', direction: 'expense', counterparty: '支付宝' }),
|
||
evt({ id: 'b', amount: '200', direction: 'income', counterparty: '银行卡' }),
|
||
];
|
||
const result = recognizeTransfers(events);
|
||
expect(result.transfers).toHaveLength(0);
|
||
});
|
||
|
||
it('超出时间窗口不配对', () => {
|
||
const events = [
|
||
evt({ id: 'a', amount: '100', direction: 'expense', counterparty: '支付宝', occurredAt: '2026-02-01T10:00:00' }),
|
||
evt({ id: 'b', amount: '100', direction: 'income', counterparty: '银行卡', occurredAt: '2026-02-10T10:00:00' }),
|
||
];
|
||
const result = recognizeTransfers(events);
|
||
expect(result.transfers).toHaveLength(0);
|
||
});
|
||
});
|
||
|
||
describe('BillPipeline - 责任链顺序', () => {
|
||
it('转账识别先于去重:Income+Expend 合并为 1 条转账,而非丢弃重复', async () => {
|
||
const pipeline = new BillPipeline();
|
||
const events = [
|
||
evt({ id: 'a', amount: '100', direction: 'expense', counterparty: '支付宝', occurredAt: '2026-02-01T10:00:00' }),
|
||
evt({ id: 'b', amount: '100', direction: 'income', counterparty: '银行卡', occurredAt: '2026-02-01T10:02:00' }),
|
||
];
|
||
const result = await pipeline.process(events, {
|
||
ledger, rules: [], categories: [], history: [],
|
||
});
|
||
expect(result.drafts).toHaveLength(1);
|
||
expect(result.drafts[0].isTransfer).toBe(true);
|
||
expect(result.transferCount).toBe(1);
|
||
expect(result.duplicates).toHaveLength(0);
|
||
});
|
||
|
||
it('重复事件被去重丢弃', async () => {
|
||
const pipeline = new BillPipeline();
|
||
const events = [
|
||
evt({ id: 'a', amount: '50', direction: 'expense', counterparty: '超市', occurredAt: '2026-02-01T10:00:00' }),
|
||
evt({ id: 'b', amount: '50', direction: 'expense', counterparty: '超市', occurredAt: '2026-02-01T10:01:00' }),
|
||
];
|
||
const result = await pipeline.process(events, {
|
||
ledger, rules: [], categories: [], history: [],
|
||
});
|
||
expect(result.drafts).toHaveLength(1);
|
||
expect(result.duplicates).toHaveLength(1);
|
||
});
|
||
|
||
it('非转账非重复事件走分类', async () => {
|
||
const categories: Category[] = [
|
||
{ id: 'food', name: '餐饮', type: 'expense', linkedAccount: 'Expenses:Food', keywords: ['餐', '饭'] },
|
||
];
|
||
const pipeline = new BillPipeline();
|
||
const events = [
|
||
evt({ id: 'a', amount: '30', direction: 'expense', counterparty: '麦当劳餐厅', occurredAt: '2026-02-01T10:00:00' }),
|
||
];
|
||
const result = await pipeline.process(events, {
|
||
ledger, rules: [], categories, history: [],
|
||
});
|
||
expect(result.drafts).toHaveLength(1);
|
||
expect(result.drafts[0].isTransfer).toBe(false);
|
||
expect(result.drafts[0].draft.postings[1].account).toBe('Expenses:Food'); // 关键词"餐"命中
|
||
});
|
||
|
||
it('空事件列表返回空结果', async () => {
|
||
const pipeline = new BillPipeline();
|
||
const result = await pipeline.process([], {
|
||
ledger, rules: [], categories: [], history: [],
|
||
});
|
||
expect(result.drafts).toHaveLength(0);
|
||
expect(result.transferCount).toBe(0);
|
||
});
|
||
});
|
||
|
||
describe('BillPipeline - 并发串行化', () => {
|
||
it('并发 process 互斥,结果不交错', async () => {
|
||
const pipeline = new BillPipeline();
|
||
const batch1 = [evt({ id: 'a1', amount: '100', direction: 'expense', counterparty: '支付宝' })];
|
||
const batch2 = [evt({ id: 'b1', amount: '200', direction: 'expense', counterparty: '微信' })];
|
||
|
||
const [r1, r2] = await Promise.all([
|
||
pipeline.process(batch1, { ledger, rules: [], categories: [], history: [] }),
|
||
pipeline.process(batch2, { ledger, rules: [], categories: [], history: [] }),
|
||
]);
|
||
|
||
expect(r1.drafts).toHaveLength(1);
|
||
expect(r2.drafts).toHaveLength(1);
|
||
});
|
||
});
|
||
|
||
describe('dedupFingerprint', () => {
|
||
it('相同关键字段产生相同指纹', () => {
|
||
const a = evt({ id: 'a', counterparty: 'X' });
|
||
const b = evt({ id: 'b', counterparty: 'X' });
|
||
expect(dedupFingerprint(a)).toBe(dedupFingerprint(b));
|
||
});
|
||
});
|