### 架构重构:三层分层目录化 - domain 拆分为 8 个子目录(core/pipeline/rules/finance/stats/taxonomy/transaction/platform) - components 拆分为 6 个子目录(form/ui/layout/account/category/stats/transaction) - services 拆分为 5 个子目录(automation/data/ocr/security),accessibilityParser 从 automationPipeline 提取 - 新增 ruleConfig.ts — 规则配置唯一数据源(关键词/方向/OCR 模式),与业务逻辑解耦 ### 微信账单抓取:节点混淆绕过(核心突破) - BillingAccessibilityService 重命名为 SelectToSpeakService,完整伪装为系统服务 - 同时伪装包名+类名为 com.google.android.accessibility.selecttospeak,规避微信 8.0.52+ 白名单校验 - Config Plugin 重写:8 个 kt 文件整体复制+package 正则替换+Manifest/import 联动 - 支付宝/微信无障碍文本解析器全面增强(方向推断/账单分类提取/付款方式提取/容错) - 补充文档 accessibility-wechat-guide.md(伪装原理、踩坑全记录) ### 新 UI 组件体系 - Toast:全局轻量 toast(Context Provider + 入场动画 + 操作按钮 + 自动消失) - ErrorBoundary:React class 错误边界(降级 UI + 重试) - EmptyState / ConfirmDialog / SegmentedControl / Skeleton / TimePicker - BottomSheet 重写:SafeAreaProvider 修复、手势下滑关闭、键盘响应式避让 - FormModal 重构:拆出 FormFields 子组件(TextField/SelectField/DropdownField) - 新增 PeriodSwitcher、RangeStatsCard 独立组件 ### 新 Hooks & 工具 - useBottomInset — 统一底部安全区留白 - useKeyboardAvoiding — 键盘高度响应式 hook(替代 translateY 方案) - sanitize.ts — 日志脱敏工具提取 ### 账本增删改增强 - 写锁增加代际计数器(lockGeneration),reset 后旧链 pending 任务自动跳过 set - 新增 restoreTransaction — 撤销删除(重新追加 raw 文本到 mobile.bean) - 删除交易时清除去重缓存(buildTxKeyFromRaw 重建去重键),支持「删了重记」 - editTransaction/deleteTransaction 改用 dr-id 精确定位交易块(避免同名交易定位错误) - appendTransactionsBatch 改从存储直接读取,避免 zustand state 不一致 ### OCR 原生模块增强 - 异步 initEngine 增加 CountDownLatch 等待(最多 15s),解决竞态导致的「引擎未就绪」 - setModelDir 增加去重判断 + file:// 前缀剥离,避免冗余 reload - 推理链路增加分阶段耗时日志(det 推理/det 后处理/rec 识别) - 图片缩放策略重命名(scaleDownForOcr → capLongEdge) ### OCR 模型按需下载 - 移除了启动时自动下载 ~30MB OCR 模型的逻辑 - 改为首次使用 OCR 时才触发下载 ### 设置页重设计 - ScrollView → SectionList 分组卡片布局(iOS 风格分组圆角行+右侧箭头) - 移除 Card 组件包装,直接使用独立分组头+底部关于卡片 ### 首页优化 - ScrollView → FlatList(ListHeaderComponent 承载净资产卡片+待办条) - 日期/金额格式化增加 locale 感知(zh/en) ### 通知管道增强 - NotificationChannel MD5 去重改为批量淘汰(80% 阈值),替代逐个删除 - 增加 debug 日志输出(过滤原因/包名) ### ESLint - 新增 eslint.config.mjs(typescript-eslint + react-hooks + react-native 规则集) - package.json 新增 lint/lint:fix 脚本,引入 5 个 devDependencies ### 文档 - accessibility-wechat-guide.md — 微信无障碍伪装完整方案 - modal-keyboard-guide.md — 弹窗键盘避让方案 - ocr-pipeline-guide.md — OCR 三层层级管线 - OCR及文本模型测试 / 账单元识别及账户分类设计 / 账户分类模型测试
258 lines
9.3 KiB
TypeScript
258 lines
9.3 KiB
TypeScript
import { describe, expect, it, beforeEach } from 'vitest';
|
||
import { NativeOcrBridge, SimulatedOcrBridge, type NativeOcrModule } from '../src/services/ocr/ocrBridge';
|
||
import { ScreenshotChannel, SimulatedScreenshotListener, type ScreenshotEvent } from '../src/services/automation/screenshot';
|
||
import { NotificationChannel, parseNotification, DEFAULT_PAYMENT_PACKAGES, type NotificationEvent } from '../src/services/notification';
|
||
import { SmsChannel, SimulatedSmsListener, parseSms, isBankSms, type SmsEvent } from '../src/services/sms';
|
||
import { OcrProcessor, MockOcrEngine } from '../src/domain/pipeline/ocrProcessor';
|
||
|
||
beforeEach(() => {
|
||
// 各测试自建实例,无需全局重置
|
||
});
|
||
|
||
// ============ ocrBridge ============
|
||
|
||
describe('ocrBridge', () => {
|
||
it('NativeOcrBridge 用原生模块', async () => {
|
||
const native: NativeOcrModule = {
|
||
recognizeText: async () => '微信支付 金额 10 商户:x',
|
||
recognizeTextBlocks: async () => [],
|
||
isReady: async () => true,
|
||
setModelDir: async () => true,
|
||
};
|
||
const bridge = new NativeOcrBridge(native);
|
||
expect(await bridge.recognizeText('img')).toBe('微信支付 金额 10 商户:x');
|
||
});
|
||
|
||
it('原生失败时降级到 fallback', async () => {
|
||
const native: NativeOcrModule = {
|
||
recognizeText: async () => { throw new Error('原生崩溃'); },
|
||
recognizeTextBlocks: async () => [],
|
||
isReady: async () => false,
|
||
setModelDir: async () => true,
|
||
};
|
||
const fallback = new SimulatedOcrBridge();
|
||
fallback.preset('fallback', '降级文本');
|
||
const bridge = new NativeOcrBridge(native, fallback);
|
||
expect(await bridge.recognizeText('fallback')).toBe('降级文本');
|
||
});
|
||
|
||
it('无原生无 fallback 抛错', async () => {
|
||
const bridge = new NativeOcrBridge(null);
|
||
await expect(bridge.recognizeText('img')).rejects.toThrow('未加载');
|
||
});
|
||
|
||
it('SimulatedOcrBridge 按 key 返回预设', async () => {
|
||
const sim = new SimulatedOcrBridge();
|
||
sim.preset('wechat-screenshot', '微信支付 金额 20');
|
||
expect(await sim.recognizeText('wechat-screenshot')).toContain('微信支付');
|
||
expect(await sim.recognizeText('unknown')).toBe('');
|
||
});
|
||
});
|
||
|
||
// ============ screenshot ============
|
||
|
||
describe('ScreenshotChannel', () => {
|
||
it('处理截图 → OCR 识别成功', async () => {
|
||
const ocrEngine = new MockOcrEngine();
|
||
ocrEngine.defaultResponse = '微信支付 金额 24.50 商户:星巴克 2026-07-13 14:30';
|
||
const processor = new OcrProcessor(ocrEngine);
|
||
const channel = new ScreenshotChannel(processor);
|
||
|
||
const event: ScreenshotEvent = {
|
||
uri: 'content://media/screenshots/screenshot_123.png',
|
||
base64: 'img-data',
|
||
timestamp: Date.now(),
|
||
};
|
||
const result = await channel.handleScreenshot(event);
|
||
expect(result.layer).toBe('layer1-rule');
|
||
expect(result.event?.amount).toBe('-24.50');
|
||
});
|
||
|
||
it('去重:同一 URI 不重复处理', async () => {
|
||
const ocrEngine = new MockOcrEngine();
|
||
ocrEngine.defaultResponse = '微信支付 金额 10 商户:x';
|
||
const processor = new OcrProcessor(ocrEngine);
|
||
const channel = new ScreenshotChannel(processor);
|
||
|
||
const event: ScreenshotEvent = {
|
||
uri: 'content://media/screenshots/dup.png',
|
||
base64: 'img',
|
||
timestamp: Date.now(),
|
||
};
|
||
const r1 = await channel.handleScreenshot(event);
|
||
const r2 = await channel.handleScreenshot(event);
|
||
expect(r1.layer).toBe('layer1-rule');
|
||
expect(r2.skipped).toBe('dedup');
|
||
});
|
||
|
||
it('非截图 URI 过滤', async () => {
|
||
const processor = new OcrProcessor(new MockOcrEngine());
|
||
const channel = new ScreenshotChannel(processor);
|
||
const result = await channel.handleScreenshot({
|
||
uri: 'content://media/photos/normal.jpg',
|
||
base64: 'img',
|
||
timestamp: Date.now(),
|
||
});
|
||
expect(result.skipped).toBe('dedup');
|
||
});
|
||
|
||
it('超过 30 秒的旧截图过滤', async () => {
|
||
const processor = new OcrProcessor(new MockOcrEngine());
|
||
const channel = new ScreenshotChannel(processor);
|
||
const result = await channel.handleScreenshot({
|
||
uri: 'content://screenshots/old.png',
|
||
base64: 'img',
|
||
timestamp: Date.now() - 60_000,
|
||
});
|
||
expect(result.skipped).toBe('dedup');
|
||
});
|
||
|
||
it('onScreenshot 回调触发', async () => {
|
||
const ocrEngine = new MockOcrEngine();
|
||
ocrEngine.defaultResponse = '微信支付 金额 10 商户:x';
|
||
const processor = new OcrProcessor(ocrEngine);
|
||
const channel = new ScreenshotChannel(processor);
|
||
|
||
let callbackResult: string | null = null;
|
||
channel.onScreenshot((result) => { callbackResult = result.event?.amount ?? null; });
|
||
await channel.handleScreenshot({ uri: 'content://screenshots/x.png', base64: 'img', timestamp: Date.now() });
|
||
expect(callbackResult).toBe('-10');
|
||
});
|
||
|
||
it('SimulatedScreenshotListener start/stop/simulate', async () => {
|
||
const listener = new SimulatedScreenshotListener();
|
||
const events: ScreenshotEvent[] = [];
|
||
await listener.start(e => events.push(e));
|
||
expect(listener.isListening()).toBe(true);
|
||
listener.simulate({ uri: 'x', timestamp: 0 });
|
||
expect(events).toHaveLength(1);
|
||
await listener.stop();
|
||
expect(listener.isListening()).toBe(false);
|
||
});
|
||
});
|
||
|
||
// ============ notification ============
|
||
|
||
describe('NotificationChannel', () => {
|
||
it('parseNotification 微信支付', () => {
|
||
const event: NotificationEvent = {
|
||
packageName: 'com.tencent.mm', title: '微信支付',
|
||
text: '金额 24.50 商户:星巴克', timestamp: Date.now(),
|
||
};
|
||
const bill = parseNotification(event);
|
||
expect(bill).not.toBeNull();
|
||
expect(bill?.amount).toBe('-24.50');
|
||
});
|
||
|
||
it('白名单过滤:非支付 App', () => {
|
||
const channel = new NotificationChannel();
|
||
const result = channel.handleNotification({
|
||
packageName: 'com.other.app', title: '通知', text: '内容', timestamp: Date.now(),
|
||
});
|
||
expect(result.processed).toBe(false);
|
||
expect(result.reason).toBe('非白名单包');
|
||
});
|
||
|
||
it('白名单内 + 命中规则', () => {
|
||
const channel = new NotificationChannel();
|
||
const result = channel.handleNotification({
|
||
packageName: 'com.tencent.mm', title: '微信支付', text: '金额 10 商户:x', timestamp: Date.now(),
|
||
});
|
||
expect(result.processed).toBe(true);
|
||
});
|
||
|
||
it('MD5 去重', () => {
|
||
const channel = new NotificationChannel();
|
||
const event: NotificationEvent = {
|
||
packageName: 'com.tencent.mm', title: '微信支付', text: '金额 10 商户:x', timestamp: Date.now(),
|
||
};
|
||
const r1 = channel.handleNotification(event);
|
||
const r2 = channel.handleNotification(event);
|
||
expect(r1.processed).toBe(true);
|
||
expect(r2.reason).toBe('MD5 去重');
|
||
});
|
||
|
||
it('onBillDetected 回调', () => {
|
||
const channel = new NotificationChannel();
|
||
let detected = false;
|
||
channel.onBillDetected(() => { detected = true; });
|
||
channel.handleNotification({
|
||
packageName: 'com.tencent.mm', title: '微信支付', text: '金额 10 商户:x', timestamp: Date.now(),
|
||
});
|
||
expect(detected).toBe(true);
|
||
});
|
||
|
||
it('DEFAULT_PAYMENT_PACKAGES 含微信支付宝', () => {
|
||
expect(DEFAULT_PAYMENT_PACKAGES).toContain('com.tencent.mm');
|
||
expect(DEFAULT_PAYMENT_PACKAGES).toContain('com.eg.android.AlipayGphone');
|
||
});
|
||
});
|
||
|
||
// ============ sms ============
|
||
|
||
describe('SmsChannel', () => {
|
||
it('parseSms 银行短信', () => {
|
||
const event: SmsEvent = {
|
||
sender: '95588', body: '工商银行:尾号1234于超市消费100.50元,余额5000元',
|
||
timestamp: Date.now(),
|
||
};
|
||
const bill = parseSms(event);
|
||
expect(bill).not.toBeNull();
|
||
expect(bill?.amount).toBe('-100.50');
|
||
expect(bill?.direction).toBe('expense');
|
||
expect(bill?.memo).toContain('1234');
|
||
});
|
||
|
||
it('parseSms 退款', () => {
|
||
const event: SmsEvent = {
|
||
sender: '95533', body: '建设银行:尾号5678退款30元',
|
||
timestamp: Date.now(),
|
||
};
|
||
const bill = parseSms(event);
|
||
expect(bill?.direction).toBe('refund');
|
||
});
|
||
|
||
it('parseSms 无金额返回 null', () => {
|
||
const bill = parseSms({ sender: '95588', body: '余额提醒', timestamp: 0 });
|
||
expect(bill).toBeNull();
|
||
});
|
||
|
||
it('isBankSms 判断', () => {
|
||
expect(isBankSms('您有一笔交易')).toBe(true);
|
||
expect(isBankSms('验证码是1234')).toBe(false);
|
||
});
|
||
|
||
it('SmsChannel 非银行短信过滤', () => {
|
||
const channel = new SmsChannel();
|
||
const result = channel.handleSms({ sender: '10086', body: '话费提醒', timestamp: 0 });
|
||
expect(result.processed).toBe(false);
|
||
expect(result.reason).toBe('非银行短信');
|
||
});
|
||
|
||
it('SmsChannel 银行短信处理成功', () => {
|
||
const channel = new SmsChannel();
|
||
const result = channel.handleSms({
|
||
sender: '95588', body: '尾号1234消费100元', timestamp: Date.now(),
|
||
});
|
||
expect(result.processed).toBe(true);
|
||
});
|
||
|
||
it('SmsChannel MD5 去重', () => {
|
||
const channel = new SmsChannel();
|
||
const event: SmsEvent = { sender: '95588', body: '尾号1234消费100元', timestamp: 0 };
|
||
const r1 = channel.handleSms(event);
|
||
const r2 = channel.handleSms(event);
|
||
expect(r1.processed).toBe(true);
|
||
expect(r2.reason).toBe('MD5 去重');
|
||
});
|
||
|
||
it('SimulatedSmsListener simulate', async () => {
|
||
const listener = new SimulatedSmsListener();
|
||
const events: SmsEvent[] = [];
|
||
await listener.start(e => events.push(e));
|
||
listener.simulate({ sender: 'x', body: 'y', timestamp: 0 });
|
||
expect(events).toHaveLength(1);
|
||
await listener.stop();
|
||
});
|
||
});
|