mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-09-09 04:02:35 +00:00
52 lines
1.8 KiB
TypeScript
52 lines
1.8 KiB
TypeScript
import { describe, expect, it, vi } from 'vitest'
|
|
import type {
|
|
ChatConversationViewNode, ChatNodeSource,
|
|
} from '@deepseek-ai/dsh-client-ui-chat/client'
|
|
import type { ConversationTimelineSnapshot } from '@deepseek-ai/dsh-client-ui-conversation/client'
|
|
import { ChatSnapshotBuilder } from '../src/client/conversation-nodes/chat-snapshot-builder.ts'
|
|
|
|
const timeline: ConversationTimelineSnapshot = { turnOrder: [], turns: new Map() }
|
|
|
|
function userNode(index: number, text = `message ${String(index)}`): ChatConversationViewNode {
|
|
return {
|
|
key: `user:${String(index)}`,
|
|
id: String(index),
|
|
target: 'chat',
|
|
kind: 'user',
|
|
anchorSeq: index,
|
|
location: { kind: 'session' },
|
|
visibility: 'visible',
|
|
data: {
|
|
kind: 'user',
|
|
messageId: `message-${String(index)}`,
|
|
seq: index,
|
|
time: index,
|
|
content: [{ type: 'text', text }],
|
|
source: null,
|
|
},
|
|
}
|
|
}
|
|
|
|
describe('Chat Node keyed sources', () => {
|
|
it('notifies only the updated key among 4,000 mounted sources', () => {
|
|
const builder = new ChatSnapshotBuilder()
|
|
const nodes = Array.from({ length: 4_000 }, (_, index) => userNode(index + 1))
|
|
const initial = builder.replace({ nodes, timeline })
|
|
const listeners = nodes.map(() => vi.fn())
|
|
const sources: ChatNodeSource[] = nodes.map((node, index) => {
|
|
const source = initial.nodes.source(node.key)
|
|
source.subscribe(listeners[index]!)
|
|
return source
|
|
})
|
|
|
|
const target = 2_347
|
|
const changed = userNode(target + 1, 'streamed update')
|
|
const next = builder.apply({ upserts: [changed], timeline })
|
|
|
|
expect(listeners[target]).toHaveBeenCalledOnce()
|
|
expect(listeners.reduce((count, listener) => count + listener.mock.calls.length, 0)).toBe(1)
|
|
expect(next.nodes.source(changed.key)).toBe(sources[target])
|
|
expect(next.nodes.get(changed.key)).toBe(changed)
|
|
})
|
|
})
|