Files
heicode/cc-haha/adapters/common/__tests__/message-dedup.test.ts
T
gongzhiyong 1efcf73992 chore: consolidate heicode workspace into single repository
Import cc-haha and new-api into a single repository layout for unified delivery.

Made-with: Cursor
2026-04-29 21:08:15 +08:00

58 lines
2.0 KiB
TypeScript

import { describe, it, expect, beforeEach, afterEach } from 'bun:test'
import { MessageDedup } from '../message-dedup.js'
describe('MessageDedup', () => {
let dedup: MessageDedup
beforeEach(() => {
dedup = new MessageDedup(1000, 100) // 1s TTL, 100 max entries
})
afterEach(() => {
dedup.destroy()
})
it('returns true for new messages', () => {
expect(dedup.tryRecord('msg-1')).toBe(true)
expect(dedup.tryRecord('msg-2')).toBe(true)
})
it('returns false for duplicate messages', () => {
expect(dedup.tryRecord('msg-1')).toBe(true)
expect(dedup.tryRecord('msg-1')).toBe(false)
expect(dedup.tryRecord('msg-1')).toBe(false)
})
it('allows same ID after TTL expires', async () => {
const shortDedup = new MessageDedup(50, 100) // 50ms TTL
expect(shortDedup.tryRecord('msg-1')).toBe(true)
expect(shortDedup.tryRecord('msg-1')).toBe(false)
await new Promise((r) => setTimeout(r, 60))
expect(shortDedup.tryRecord('msg-1')).toBe(true)
shortDedup.destroy()
})
it('evicts oldest entry when at capacity', () => {
const smallDedup = new MessageDedup(60_000, 3) // max 3 entries
expect(smallDedup.tryRecord('a')).toBe(true)
expect(smallDedup.tryRecord('b')).toBe(true)
expect(smallDedup.tryRecord('c')).toBe(true)
// Adding 4th should evict 'a'
expect(smallDedup.tryRecord('d')).toBe(true)
// 'a' was evicted, should be treated as new
expect(smallDedup.tryRecord('a')).toBe(true)
// Now store has {c, d, a} — 'b' was evicted when 'a' was re-inserted
// 'c' should still be deduped (was not evicted)
expect(smallDedup.tryRecord('c')).toBe(false)
smallDedup.destroy()
})
it('handles distinct messages independently', () => {
expect(dedup.tryRecord('msg-1')).toBe(true)
expect(dedup.tryRecord('msg-2')).toBe(true)
expect(dedup.tryRecord('msg-1')).toBe(false)
expect(dedup.tryRecord('msg-2')).toBe(false)
expect(dedup.tryRecord('msg-3')).toBe(true)
})
})