Files
AIclinicalresearch/backend/scripts/test-json-parser.ts
HaHafeng 2e8699c217 feat(asl): Week 2 Day 2 - Excel import with template download and intelligent dedup
Features:
- feat: Excel template generation and download (with examples)
- feat: Excel file parsing in memory (cloud-native, no disk write)
- feat: Field validation (title + abstract required)
- feat: Smart deduplication (DOI priority + Title fallback)
- feat: Literature preview table with statistics
- feat: Complete submission flow (create project + import literatures)

Components:
- feat: Create excelUtils.ts with full Excel processing toolkit
- feat: Enhance TitleScreeningSettings page with upload/preview/submit
- feat: Update API interface signatures and export unified aslApi object

Dependencies:
- chore: Add xlsx library for Excel file processing

Ref: Week 2 Frontend Development - Day 2
Scope: ASL Module MVP - Title Abstract Screening
Cloud-Native: Memory parsing, no file persistence
2025-11-19 10:24:47 +08:00

135 lines
3.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* 测试JSON解析器的修复效果
*
* 测试目的:验证中文引号等格式问题是否能被正确处理
*/
import { parseJSON } from '../src/common/utils/jsonParser.js';
console.log('\n🧪 JSON解析器修复测试\n');
// 测试用例
const testCases = [
{
name: '正常JSONASCII引号',
input: '{"conclusion": "exclude", "confidence": 0.95}',
expectSuccess: true
},
{
name: '中文引号JSON',
input: '{"conclusion": "exclude", "confidence": 0.95}',
expectSuccess: true
},
{
name: '混合引号JSON',
input: '{"conclusion": "exclude", "confidence": 0.95}',
expectSuccess: true
},
{
name: 'JSON代码块中文引号',
input: `\`\`\`json
{
"judgment": {
"P": "match",
"I": "match"
},
"conclusion": "include",
"confidence": 0.85,
"reason": "虽然对照组不是安慰剂,但研究质量高"
}
\`\`\``,
expectSuccess: true
},
{
name: '带额外文字的JSON',
input: `这是筛选结果:
\`\`\`json
{"conclusion": "exclude", "confidence": 0.90}
\`\`\`
以上是我的判断。`,
expectSuccess: true
},
{
name: '全角逗号和冒号',
input: '{"conclusion""exclude""confidence"0.95}',
expectSuccess: true
},
{
name: '不完整的JSON应失败',
input: '{"conclusion": "exclude", "confidence":',
expectSuccess: false
},
{
name: '非JSON文本应失败',
input: 'This is not a JSON string at all.',
expectSuccess: false
},
{
name: '复杂嵌套JSON中文引号',
input: `{
"judgment": {
"P": "match",
"I": "partial",
"C": "mismatch",
"S": "match"
},
"evidence": {
"P": "研究对象为急性缺血性卒中患者",
"I": "干预措施为替格瑞洛",
"C": "对照组为氯吡格雷而非安慰剂",
"S": "随机对照试验"
},
"conclusion": "exclude",
"confidence": 0.92,
"reason": "虽然P、I、S维度匹配但对照组不符合要求"
}`,
expectSuccess: true
}
];
// 运行测试
let passed = 0;
let failed = 0;
testCases.forEach((testCase, index) => {
console.log(`[测试 ${index + 1}/${testCases.length}] ${testCase.name}`);
const result = parseJSON(testCase.input);
const success = result.success === testCase.expectSuccess;
if (success) {
console.log(' ✅ 通过');
if (result.success) {
console.log(` 📄 解析结果: ${JSON.stringify(result.data).substring(0, 100)}...`);
}
passed++;
} else {
console.log(' ❌ 失败');
console.log(` 期望: ${testCase.expectSuccess ? '成功' : '失败'}`);
console.log(` 实际: ${result.success ? '成功' : '失败'}`);
if (!result.success) {
console.log(` 错误: ${result.error}`);
}
failed++;
}
console.log('');
});
// 总结
console.log('='.repeat(60));
console.log('📊 测试总结\n');
console.log(`✅ 通过: ${passed}/${testCases.length}`);
console.log(`❌ 失败: ${failed}/${testCases.length}`);
console.log(`📈 成功率: ${(passed / testCases.length * 100).toFixed(1)}%`);
if (passed === testCases.length) {
console.log('\n🎉 所有测试通过JSON解析器修复成功');
} else {
console.log('\n⚠ 部分测试失败,需要进一步调试。');
}
console.log('='.repeat(60) + '\n');