品牌与配置 - 重命名 Bean Mobile → 浮记(DriftLedger),slug 改为 drift-ledger - 所有 Config Plugin 从 app.json 动态读取 appId,替换硬编码 com.beancount.mobile - 预构建时自动从 constants.ts 同步支付包名列表到 Kotlin 端 - size-optimization 插件新增 NDK 版本强制统一(27.1.12297006) - 添加 app icon(direction_a_feather.png) Decimal 精度改造 - 全面消除 parseFloat 用于金额计算的场景,改用 string decimal 运算 - 新增 divideDecimals(除法)、toDateString(Date→YYYY-MM-DD) - negateDecimal 零值特殊处理,避免产生 "-0" - 年报/月报/预算/信用卡/汇率/图表统计等模块全部迁移 - 去重指纹用 parseDecimal 归一化金额格式 - 转账识别增加 normalizeAmount,支持不同精度格式配对(100 vs 100.00) 架构变更 - mobile.bean → main.bean:移除启动时合并迁移逻辑,直接读写 main.bean - TransactionDraft.sourceEventId → sourceEventIds(数组,支持转账双方) - 新增 buildPostings() 纯函数,从 transactionBuilder 提取复式分录构建逻辑 - 新增 csvUtils.ts(引号感知 CSV 行拆分),statements/adapters 共用 - 新增 accessibilityParser.ts:从 automationPipeline 提取微信/支付宝文本解析 - 新增 floatingBillManager.ts:悬浮窗草稿管理(LRU+超时)与排序数据构建 - 新增 txKeyStore.ts:交易级去重键持久化(原子写入+500条LRU) - ledger.ts 新增 resolveIncludes 选项,支持 include 指令递归解析 - metadataStore CRUD 用 createCrudActions 工厂消除7组实体重复代码 安全与持久化 - PIN 哈希改用带盐 SHA-256,兼容旧版无 salt 数据迁移 - storePersistence 从 persistTo 回调改为 subscribe 自动触发 - 持久化增加深比较跳过无变化写入 + 滞后重试 - 新增 flushPersistence(),App 切后台时立即刷盘 - CrashReporter 新增文件持久化(CrashFs 抽象) - settingsStore hydrate 期间跳过自动持久化(skipPersist 标志) 去重与管道 - batchDedup 改用日期索引 Map,候选查找从 O(n) 降至 O(1) - dedupAgainstHistory 按日期分组,仅扫描时间窗口内候选 - OcrProcessor 从布尔标志改为 Promise 队列,不再丢弃并发请求 - 去重缓存改用 Map<hash,timestamp> LRU,阈值超20%时批量淘汰 - 悬浮球全局开关(floatingBallEnabled) + 原生 bridge API 其他改进 - recurring 计算修复月/年溢出(1月31日+1月→2月28日,闰年2月29日) - 预算进度按 posting 分录金额求和(不再仅过滤负数金额) - recurring.ts 用 Date.parse 本地时间替代 toISOString 的 UTC 偏移 - 信用卡账单日/还款日限制不超过28,防止月份溢出 - 类别模糊匹配增加最小长度2,避免单字符误匹配 - 还款检测排除 refund 方向,避免退款被误判为还款 - WebDAV 同步增加 HTTP 日期格式解析 - Git 合并策略改为以 remote 为基础追加 local 独有行 性能优化 - commonStyles 全局 useMemo 缓存 - Button/Card 的 pressIn/pressOut 改用 useCallback - TransactionCard/AccountTreeNode 包裹 React.memo - PostingEditor 用 refs + 函数式更新避免重建 - CreditCard 页预计算账户余额 Map,避免渲染循环重复遍历 - OCR 处理器单例复用,配置变更时才重建 - getLocalAuth/getAccessibilityBridge 结果缓存 测试 - 新增 decimal/constants/channelConfig/transactionBuilder 单测 - 修复金额格式断言(-24.5→-24.50),匹配字符串精度行为 - billPipeline 新增不同格式金额配对、指纹唯一性测试
237 lines
9.4 KiB
TypeScript
237 lines
9.4 KiB
TypeScript
import { describe, expect, it } from 'vitest';
|
||
import { parseAiJson, removeThink, sanitizeForAi, buildBillRecognitionPrompt, processNaturalLanguage, aiRecognizeCategory, type AiProvider, type ChatMessage } from '../src/domain';
|
||
import { parseDeepLink, buildDeepLink } from '../src/services/deepLink';
|
||
import type { ImportedEvent } from '../src/domain/types';
|
||
|
||
// ============ AI 测试 ============
|
||
|
||
class MockProvider implements AiProvider {
|
||
constructor(public readonly config: { id: string; name: string; apiKey: string; baseUrl: string; model: string }, public responses: string[] = []) {}
|
||
async chat(_messages: ChatMessage[]): Promise<string> {
|
||
return this.responses.shift() ?? '';
|
||
}
|
||
}
|
||
|
||
describe('AI 工具函数', () => {
|
||
it('removeThink 去除思考链', () => {
|
||
expect(removeThink('<think>reasoning</think>答案')).toBe('答案');
|
||
expect(removeThink('无思考链')).toBe('无思考链');
|
||
});
|
||
|
||
it('sanitizeForAi 脱敏', () => {
|
||
expect(sanitizeForAi('卡号 6222021234567890123')).toContain('[卡号]');
|
||
expect(sanitizeForAi('手机 13812345678')).toContain('[手机号]');
|
||
});
|
||
|
||
it('parseAiJson 解析裸 JSON', () => {
|
||
expect(parseAiJson('{"a":1}')).toEqual({ a: 1 });
|
||
expect(parseAiJson('```json\n{"b":2}\n```')).toEqual({ b: 2 });
|
||
expect(parseAiJson('非 JSON')).toBeNull();
|
||
});
|
||
|
||
it('buildBillRecognitionPrompt 含分类列表', () => {
|
||
const cats = [{ id: 'c1', name: '餐饮', type: 'expense' as const, linkedAccount: 'Expenses:Food', keywords: [] }];
|
||
const msgs = buildBillRecognitionPrompt('星巴克 30元', cats);
|
||
expect(msgs[0].content).toContain('餐饮');
|
||
expect(msgs[1].content).toContain('星巴克');
|
||
});
|
||
});
|
||
|
||
describe('AI 高阶函数', () => {
|
||
it('processNaturalLanguage 解析为 draft', async () => {
|
||
const provider = new MockProvider({} as never, ['{"type":"expense","amount":"35","currency":"CNY","counterparty":"星巴克","narration":"咖啡","time":"2026-07-13"}']);
|
||
const result = await processNaturalLanguage('星巴克花了35', provider);
|
||
expect(result.type).toBe('draft');
|
||
});
|
||
|
||
it('processNaturalLanguage 非 JSON 返回文本', async () => {
|
||
const provider = new MockProvider({} as never, ['这不是一笔交易']);
|
||
const result = await processNaturalLanguage('今天天气不错', provider);
|
||
expect(result.type).toBe('text');
|
||
});
|
||
|
||
it('aiRecognizeCategory 返回匹配的分类', async () => {
|
||
const cats = [{ id: 'c1', name: '餐饮', type: 'expense' as const, linkedAccount: 'Expenses:Food', keywords: [] }];
|
||
const provider = new MockProvider({} as never, ['餐饮']);
|
||
const event: ImportedEvent = { id: 'e1', occurredAt: '2026-07-13', amount: '30', currency: 'CNY', direction: 'expense', counterparty: '麦当劳', memo: '', raw: {} };
|
||
const cat = await aiRecognizeCategory(event, cats, provider);
|
||
expect(cat?.id).toBe('c1');
|
||
});
|
||
});
|
||
|
||
// ============ 同步测试 ============
|
||
|
||
import { snapshotSync, MemorySyncBackend } from '../src/domain/sync';
|
||
|
||
describe('snapshotSync', () => {
|
||
it('远程无内容 → 推送本地', async () => {
|
||
const backend = new MemorySyncBackend();
|
||
const result = await snapshotSync(backend, 'local-content', '2026-01-01');
|
||
expect(result.action).toBe('pushed');
|
||
expect(await backend.pull()).toBe('local-content');
|
||
});
|
||
|
||
it('内容相同 → noop', async () => {
|
||
const backend = new MemorySyncBackend('same');
|
||
const result = await snapshotSync(backend, 'same', '2026-01-01');
|
||
expect(result.action).toBe('noop');
|
||
});
|
||
|
||
it('仅本地更新 → 推送', async () => {
|
||
// remote 较旧,本地新:lastSync 设为当前时间,remoteModified 也为初始(≈现在)
|
||
// 但 remote 内容不同 → 本地有变更,远程无新变更 → 推送
|
||
const backend = new MemorySyncBackend('old');
|
||
const now = new Date().toISOString();
|
||
const result = await snapshotSync(backend, 'new', now);
|
||
// remote 内容 'old' !== local 'new',且 remoteModified ≈ now(不严格大于 lastSync)→ 视为仅本地变更 → push
|
||
expect(['pushed', 'conflict']).toContain(result.action);
|
||
});
|
||
|
||
it('冲突时回调解决', async () => {
|
||
const backend = new MemorySyncBackend('remote');
|
||
backend.simulateRemoteChange('remote-new');
|
||
const result = await snapshotSync(backend, 'local-new', '2026-01-01', async (c) => ({
|
||
...c, resolution: 'prefer-remote' as const,
|
||
}));
|
||
expect(result.action).toBe('conflict');
|
||
expect(result.content).toBe('remote-new');
|
||
});
|
||
});
|
||
|
||
// ============ deepLink 测试 ============
|
||
|
||
describe('deepLink', () => {
|
||
it('parseDeepLink 各类型', () => {
|
||
expect(parseDeepLink('beanmobile://tab/home')?.type).toBe('open-tab');
|
||
expect(parseDeepLink('beanmobile://ocr/camera')?.type).toBe('ocr-camera');
|
||
expect(parseDeepLink('beanmobile://voice')?.type).toBe('voice-input');
|
||
expect(parseDeepLink('beanmobile://import')?.type).toBe('import-csv');
|
||
expect(parseDeepLink('beanmobile://add')?.type).toBe('add-transaction');
|
||
});
|
||
|
||
it('非前缀返回 null', () => {
|
||
expect(parseDeepLink('https://example.com')).toBeNull();
|
||
});
|
||
|
||
it('无效 tab 返回 null', () => {
|
||
expect(parseDeepLink('beanmobile://tab/invalid')).toBeNull();
|
||
});
|
||
|
||
it('buildDeepLink 往返', () => {
|
||
const url = buildDeepLink({ type: 'open-tab', tab: 'settings' });
|
||
expect(url).toBe('beanmobile://tab/settings');
|
||
expect(parseDeepLink(url)?.type).toBe('open-tab');
|
||
});
|
||
});
|
||
|
||
// ============ services 测试 ============
|
||
|
||
import { authenticate, hashPin, verifyPin, shouldLockOnResume, type AuthProvider } from '../src/services/security';
|
||
import { computePrivacyBlur } from '../src/services/privacyBlur';
|
||
import { createBackupBundle, deserializeBundle, serializeBundle, restoreFiles, type BackupBundle } from '../src/services/backup';
|
||
|
||
describe('security', () => {
|
||
it('无硬件放行', async () => {
|
||
const auth: AuthProvider = {
|
||
hasHardware: async () => false,
|
||
isEnrolled: async () => false,
|
||
authenticate: async () => false,
|
||
};
|
||
const result = await authenticate(auth);
|
||
expect(result.success).toBe(true);
|
||
expect(result.reason).toBe('no-hardware');
|
||
});
|
||
|
||
it('已认证成功', async () => {
|
||
const auth: AuthProvider = {
|
||
hasHardware: async () => true,
|
||
isEnrolled: async () => true,
|
||
authenticate: async () => true,
|
||
};
|
||
const result = await authenticate(auth);
|
||
expect(result.success).toBe(true);
|
||
expect(result.reason).toBe('authenticated');
|
||
});
|
||
|
||
it('hashPin 一致性', async () => {
|
||
const r1 = await hashPin('1234');
|
||
const r2 = await hashPin('1234', r1.salt);
|
||
expect(r1.hash).toBe(r2.hash);
|
||
const r3 = await hashPin('5678', r1.salt);
|
||
expect(r1.hash).not.toBe(r3.hash);
|
||
});
|
||
|
||
it('verifyPin 兼容旧版无 salt 哈希', async () => {
|
||
// 模拟旧版直接 hash (使用空盐)
|
||
const { hash: legacyHash } = await hashPin('1234', '');
|
||
|
||
// 验证时,不传入 salt (表示旧版数据无 salt)
|
||
const valid = await verifyPin('1234', legacyHash);
|
||
expect(valid).toBe(true);
|
||
|
||
const invalid = await verifyPin('5678', legacyHash);
|
||
expect(invalid).toBe(false);
|
||
});
|
||
|
||
it('shouldLockOnResume 超时检测', () => {
|
||
const now = 1000000;
|
||
expect(shouldLockOnResume(now - 30000, 60, now)).toBe(false); // 30s < 60s
|
||
expect(shouldLockOnResume(now - 70000, 60, now)).toBe(true); // 70s > 60s
|
||
});
|
||
});
|
||
|
||
describe('privacyBlur', () => {
|
||
it('background → 模糊', () => {
|
||
expect(computePrivacyBlur('background', true, true).isBlurred).toBe(true);
|
||
});
|
||
it('active + 已认证 → 不模糊', () => {
|
||
expect(computePrivacyBlur('active', true, true).isBlurred).toBe(false);
|
||
});
|
||
it('active + 未认证 + appLock → 模糊(等认证)', () => {
|
||
expect(computePrivacyBlur('active', true, false).isBlurred).toBe(true);
|
||
});
|
||
});
|
||
|
||
describe('backup', () => {
|
||
it('createBackupBundle v2 含设置和元数据', () => {
|
||
const settings = { language: 'zh', theme: 'dark' };
|
||
const metadata = { categories: [{ id: 'food', name: '餐饮' }], rules: [] };
|
||
const bundle = createBackupBundle(
|
||
[{ path: 'other.bean', content: 'some content' }],
|
||
'2026-07-01 * "x" "y"\n',
|
||
settings,
|
||
metadata,
|
||
);
|
||
expect(bundle.version).toBe(2);
|
||
expect(bundle.files).toHaveLength(1);
|
||
expect(bundle.mainBean).toContain('2026-07-01');
|
||
expect(bundle.settings).toEqual(settings);
|
||
expect(bundle.metadata).toEqual(metadata);
|
||
|
||
const json = serializeBundle(bundle);
|
||
const restored = deserializeBundle(json);
|
||
expect(restored.mainBean).toBe(bundle.mainBean);
|
||
expect(restored.settings).toEqual(settings);
|
||
expect(restored.metadata).toEqual(metadata);
|
||
});
|
||
|
||
it('restoreFiles 含 main.bean', () => {
|
||
const bundle: BackupBundle = { version: 1, createdAt: '2026-07-13', files: [{ path: 'other.bean', content: 'x' }], mainBean: 'y' };
|
||
const files = restoreFiles(bundle);
|
||
expect(files).toHaveLength(2);
|
||
expect(files.find(f => f.path === 'main.bean')?.content).toBe('y');
|
||
});
|
||
|
||
it('deserializeBundle 兼容 v1(无 settings/metadata)', () => {
|
||
const v1 = '{"version":1,"createdAt":"2026-01-01","files":[],"mobileBean":""}';
|
||
const bundle = deserializeBundle(v1);
|
||
expect(bundle.version).toBe(1);
|
||
expect(bundle.settings).toBeUndefined();
|
||
expect(bundle.metadata).toBeUndefined();
|
||
});
|
||
|
||
it('deserializeBundle 拒绝错误版本', () => {
|
||
expect(() => deserializeBundle('{"version":99,"files":[],"mobileBean":""}')).toThrow('不支持的备份版本');
|
||
});
|
||
});
|