mirror of
https://wget.la/https://github.com/Wxw-Gu/WechatExplorer
synced 2026-08-17 11:37:06 +08:00
1. 增加档案加载状态、错误提示和延迟数据加载。 2. 优化移动端工具栏、消息布局及横向滚动控制。 3. 支持按年份折叠时间轴,并同步可见月份定位。 4. 使用自定义文件名作为档案标题。 5. 增量导出时保留历史头像,仅在视觉变化后新增头像版本。 6. 修复附件消息被误判为合并转发的问题。 7. 补充单元、集成及端到端测试覆盖。
80 lines
2.9 KiB
TypeScript
80 lines
2.9 KiB
TypeScript
import { describe, expect, it } from 'vitest'
|
|
import { parseMessageContent } from '../../src/main/message-parser'
|
|
|
|
describe('message parser', () => {
|
|
it('parses image, voice and sticker messages without confusing their types', () => {
|
|
expect(parseMessageContent('<img md5="0123456789abcdef0123456789abcdef" />', 3)).toMatchObject({
|
|
type: 'image',
|
|
md5: '0123456789abcdef0123456789abcdef'
|
|
})
|
|
expect(parseMessageContent('voice fixture', 34)).toEqual({ type: 'voice' })
|
|
expect(
|
|
parseMessageContent(
|
|
'<emoji md5="abcdefabcdefabcdefabcdefabcdefab" cdnurl="https://fixture.invalid/a" />',
|
|
47
|
|
)
|
|
).toMatchObject({ type: 'sticker', md5: 'abcdefabcdefabcdefabcdefabcdefab' })
|
|
})
|
|
|
|
it('parses merged forwards and preserves nested visible text', () => {
|
|
const parsed = parseMessageContent(
|
|
'<appmsg><type>19</type><title>转发多条内容</title><recorditem><dataitem datatype="1"><sourcename>测试成员</sourcename><datadesc>脱敏内容</datadesc></dataitem></recorditem></appmsg>',
|
|
49
|
|
)
|
|
expect(parsed.type).toBe('forwardBundle')
|
|
if (parsed.type === 'forwardBundle') {
|
|
expect(parsed.title).toBe('转发多条内容')
|
|
expect(parsed.items.map((item) => item.text).join(' ')).toContain('脱敏内容')
|
|
}
|
|
})
|
|
|
|
it.each([
|
|
['6', '测试附件.pdf'],
|
|
['74', '发送中的附件.zip']
|
|
])(
|
|
'keeps file app message type %s when attachment metadata contains record tags',
|
|
(typeVal, title) => {
|
|
const parsed = parseMessageContent(
|
|
`<appmsg><type>${typeVal}</type><title>${title}</title><des>1 MB</des><appattach><recorditem>legacy metadata</recorditem><dataitem datatype="8"><datatitle>${title}</datatitle></dataitem></appattach></appmsg>`,
|
|
49
|
|
)
|
|
|
|
expect(parsed).toMatchObject({
|
|
type: 'share',
|
|
title,
|
|
typeVal
|
|
})
|
|
}
|
|
)
|
|
|
|
it('does not classify empty incidental record metadata as a merged forward', () => {
|
|
const parsed = parseMessageContent(
|
|
'<appmsg><type>5</type><title>普通分享</title><recorditem>legacy metadata</recorditem></appmsg>',
|
|
49
|
|
)
|
|
|
|
expect(parsed).toMatchObject({ type: 'share', title: '普通分享', typeVal: '5' })
|
|
})
|
|
|
|
it('uses the quoted group member id instead of the chatroom id', () => {
|
|
const parsed = parseMessageContent(
|
|
'<appmsg><type>57</type><title>回复内容</title><refermsg><type>1</type><fromusr>123456789@chatroom</fromusr><chatusr>wxid_fixture_member</chatusr><content>被引用内容</content></refermsg></appmsg>',
|
|
49
|
|
)
|
|
|
|
expect(parsed).toMatchObject({
|
|
type: 'quote',
|
|
quotedSender: 'wxid_fixture_member',
|
|
quotedContent: '被引用内容'
|
|
})
|
|
})
|
|
|
|
it('uses an explicit unknown type for unsupported messages', () => {
|
|
expect(parseMessageContent('opaque fixture payload', 999)).toEqual({
|
|
type: 'unknown',
|
|
raw: 'opaque fixture payload',
|
|
messageType: 999
|
|
})
|
|
})
|
|
})
|