335 lines
11 KiB
TypeScript
335 lines
11 KiB
TypeScript
import { describe, expect, test, beforeEach, afterEach, spyOn } from "bun:test"
|
|
import { createKeywordDetectorHook } from "./index"
|
|
import { setMainSession } from "../../features/claude-code-session-state"
|
|
import { ContextCollector } from "../../features/context-injector"
|
|
import * as sharedModule from "../../shared"
|
|
import * as sessionState from "../../features/claude-code-session-state"
|
|
|
|
describe("keyword-detector registers to ContextCollector", () => {
|
|
let logCalls: Array<{ msg: string; data?: unknown }>
|
|
let logSpy: ReturnType<typeof spyOn>
|
|
let getMainSessionSpy: ReturnType<typeof spyOn>
|
|
|
|
beforeEach(() => {
|
|
logCalls = []
|
|
logSpy = spyOn(sharedModule, "log").mockImplementation((msg: string, data?: unknown) => {
|
|
logCalls.push({ msg, data })
|
|
})
|
|
})
|
|
|
|
afterEach(() => {
|
|
logSpy?.mockRestore()
|
|
getMainSessionSpy?.mockRestore()
|
|
})
|
|
|
|
function createMockPluginInput() {
|
|
return {
|
|
client: {
|
|
tui: {
|
|
showToast: async () => {},
|
|
},
|
|
},
|
|
} as any
|
|
}
|
|
|
|
test("should register ultrawork keyword to ContextCollector", async () => {
|
|
// #given - a fresh ContextCollector and keyword-detector hook
|
|
const collector = new ContextCollector()
|
|
const hook = createKeywordDetectorHook(createMockPluginInput(), collector)
|
|
const sessionID = "test-session-123"
|
|
const output = {
|
|
message: {} as Record<string, unknown>,
|
|
parts: [{ type: "text", text: "ultrawork do something" }],
|
|
}
|
|
|
|
// #when - keyword detection runs
|
|
await hook["chat.message"]({ sessionID }, output)
|
|
|
|
// #then - ultrawork context should be registered in collector
|
|
expect(collector.hasPending(sessionID)).toBe(true)
|
|
const pending = collector.getPending(sessionID)
|
|
expect(pending.entries.length).toBeGreaterThan(0)
|
|
expect(pending.entries[0].source).toBe("keyword-detector")
|
|
expect(pending.entries[0].id).toBe("keyword-ultrawork")
|
|
})
|
|
|
|
test("should register search keyword to ContextCollector", async () => {
|
|
// #given - mock getMainSessionID to return our session (isolate from global state)
|
|
const collector = new ContextCollector()
|
|
const sessionID = "search-test-session"
|
|
getMainSessionSpy = spyOn(sessionState, "getMainSessionID").mockReturnValue(sessionID)
|
|
const hook = createKeywordDetectorHook(createMockPluginInput(), collector)
|
|
const output = {
|
|
message: {} as Record<string, unknown>,
|
|
parts: [{ type: "text", text: "search for the bug" }],
|
|
}
|
|
|
|
// #when - keyword detection runs
|
|
await hook["chat.message"]({ sessionID }, output)
|
|
|
|
// #then - search context should be registered in collector
|
|
expect(collector.hasPending(sessionID)).toBe(true)
|
|
const pending = collector.getPending(sessionID)
|
|
expect(pending.entries.some((e) => e.id === "keyword-search")).toBe(true)
|
|
})
|
|
|
|
test("should NOT register to collector when no keywords detected", async () => {
|
|
// #given - no keywords in message
|
|
const collector = new ContextCollector()
|
|
const hook = createKeywordDetectorHook(createMockPluginInput(), collector)
|
|
const sessionID = "test-session"
|
|
const output = {
|
|
message: {} as Record<string, unknown>,
|
|
parts: [{ type: "text", text: "just a normal message" }],
|
|
}
|
|
|
|
// #when - keyword detection runs
|
|
await hook["chat.message"]({ sessionID }, output)
|
|
|
|
// #then - nothing should be registered
|
|
expect(collector.hasPending(sessionID)).toBe(false)
|
|
})
|
|
})
|
|
|
|
describe("keyword-detector session filtering", () => {
|
|
let logCalls: Array<{ msg: string; data?: unknown }>
|
|
let logSpy: ReturnType<typeof spyOn>
|
|
|
|
beforeEach(() => {
|
|
setMainSession(undefined)
|
|
logCalls = []
|
|
logSpy = spyOn(sharedModule, "log").mockImplementation((msg: string, data?: unknown) => {
|
|
logCalls.push({ msg, data })
|
|
})
|
|
})
|
|
|
|
afterEach(() => {
|
|
logSpy?.mockRestore()
|
|
setMainSession(undefined)
|
|
})
|
|
|
|
function createMockPluginInput(options: { toastCalls?: string[] } = {}) {
|
|
const toastCalls = options.toastCalls ?? []
|
|
return {
|
|
client: {
|
|
tui: {
|
|
showToast: async (opts: any) => {
|
|
toastCalls.push(opts.body.title)
|
|
},
|
|
},
|
|
},
|
|
} as any
|
|
}
|
|
|
|
test("should skip non-ultrawork keywords in non-main session (using mainSessionID check)", async () => {
|
|
// #given - main session is set, different session submits search keyword
|
|
const mainSessionID = "main-123"
|
|
const subagentSessionID = "subagent-456"
|
|
setMainSession(mainSessionID)
|
|
|
|
const hook = createKeywordDetectorHook(createMockPluginInput())
|
|
const output = {
|
|
message: {} as Record<string, unknown>,
|
|
parts: [{ type: "text", text: "search mode 찾아줘" }],
|
|
}
|
|
|
|
// #when - non-main session triggers keyword detection
|
|
await hook["chat.message"](
|
|
{ sessionID: subagentSessionID },
|
|
output
|
|
)
|
|
|
|
// #then - search keyword should be filtered out based on mainSessionID comparison
|
|
const skipLog = logCalls.find(c => c.msg.includes("Skipping non-ultrawork keywords in non-main session"))
|
|
expect(skipLog).toBeDefined()
|
|
})
|
|
|
|
test("should allow ultrawork keywords in non-main session", async () => {
|
|
// #given - main session is set, different session submits ultrawork keyword
|
|
const mainSessionID = "main-123"
|
|
const subagentSessionID = "subagent-456"
|
|
setMainSession(mainSessionID)
|
|
|
|
const toastCalls: string[] = []
|
|
const hook = createKeywordDetectorHook(createMockPluginInput({ toastCalls }))
|
|
const output = {
|
|
message: {} as Record<string, unknown>,
|
|
parts: [{ type: "text", text: "ultrawork mode" }],
|
|
}
|
|
|
|
// #when - non-main session triggers ultrawork keyword
|
|
await hook["chat.message"](
|
|
{ sessionID: subagentSessionID },
|
|
output
|
|
)
|
|
|
|
// #then - ultrawork should still work (variant set to max)
|
|
expect(output.message.variant).toBe("max")
|
|
expect(toastCalls).toContain("Ultrawork Mode Activated")
|
|
})
|
|
|
|
test("should allow all keywords in main session", async () => {
|
|
// #given - main session submits search keyword
|
|
const mainSessionID = "main-123"
|
|
setMainSession(mainSessionID)
|
|
|
|
const hook = createKeywordDetectorHook(createMockPluginInput())
|
|
const output = {
|
|
message: {} as Record<string, unknown>,
|
|
parts: [{ type: "text", text: "search mode 찾아줘" }],
|
|
}
|
|
|
|
// #when - main session triggers keyword detection
|
|
await hook["chat.message"](
|
|
{ sessionID: mainSessionID },
|
|
output
|
|
)
|
|
|
|
// #then - search keyword should be detected (output unchanged but detection happens)
|
|
// Note: search keywords don't set variant, they inject messages via context-injector
|
|
// This test verifies the detection logic runs without filtering
|
|
expect(output.message.variant).toBeUndefined() // search doesn't set variant
|
|
})
|
|
|
|
test("should allow all keywords when mainSessionID is not set", async () => {
|
|
// #given - no main session set (early startup or standalone mode)
|
|
setMainSession(undefined)
|
|
|
|
const toastCalls: string[] = []
|
|
const hook = createKeywordDetectorHook(createMockPluginInput({ toastCalls }))
|
|
const output = {
|
|
message: {} as Record<string, unknown>,
|
|
parts: [{ type: "text", text: "ultrawork search" }],
|
|
}
|
|
|
|
// #when - any session triggers keyword detection
|
|
await hook["chat.message"](
|
|
{ sessionID: "any-session" },
|
|
output
|
|
)
|
|
|
|
// #then - all keywords should work
|
|
expect(output.message.variant).toBe("max")
|
|
expect(toastCalls).toContain("Ultrawork Mode Activated")
|
|
})
|
|
|
|
test("should not override existing variant", async () => {
|
|
// #given - main session set with pre-existing variant
|
|
setMainSession("main-123")
|
|
|
|
const toastCalls: string[] = []
|
|
const hook = createKeywordDetectorHook(createMockPluginInput({ toastCalls }))
|
|
const output = {
|
|
message: { variant: "low" } as Record<string, unknown>,
|
|
parts: [{ type: "text", text: "ultrawork mode" }],
|
|
}
|
|
|
|
// #when - ultrawork keyword triggers
|
|
await hook["chat.message"](
|
|
{ sessionID: "main-123" },
|
|
output
|
|
)
|
|
|
|
// #then - existing variant should remain
|
|
expect(output.message.variant).toBe("low")
|
|
expect(toastCalls).toContain("Ultrawork Mode Activated")
|
|
})
|
|
})
|
|
|
|
describe("keyword-detector word boundary", () => {
|
|
let logCalls: Array<{ msg: string; data?: unknown }>
|
|
let logSpy: ReturnType<typeof spyOn>
|
|
|
|
beforeEach(() => {
|
|
setMainSession(undefined)
|
|
logCalls = []
|
|
logSpy = spyOn(sharedModule, "log").mockImplementation((msg: string, data?: unknown) => {
|
|
logCalls.push({ msg, data })
|
|
})
|
|
})
|
|
|
|
afterEach(() => {
|
|
logSpy?.mockRestore()
|
|
setMainSession(undefined)
|
|
})
|
|
|
|
function createMockPluginInput(options: { toastCalls?: string[] } = {}) {
|
|
const toastCalls = options.toastCalls ?? []
|
|
return {
|
|
client: {
|
|
tui: {
|
|
showToast: async (opts: any) => {
|
|
toastCalls.push(opts.body.title)
|
|
},
|
|
},
|
|
},
|
|
} as any
|
|
}
|
|
|
|
test("should NOT trigger ultrawork on partial matches like 'StatefulWidget' containing 'ulw'", async () => {
|
|
// #given - text contains 'ulw' as part of another word (StatefulWidget)
|
|
setMainSession(undefined)
|
|
|
|
const toastCalls: string[] = []
|
|
const hook = createKeywordDetectorHook(createMockPluginInput({ toastCalls }))
|
|
const output = {
|
|
message: {} as Record<string, unknown>,
|
|
parts: [{ type: "text", text: "refactor the StatefulWidget component" }],
|
|
}
|
|
|
|
// #when - message with partial 'ulw' match is processed
|
|
await hook["chat.message"](
|
|
{ sessionID: "any-session" },
|
|
output
|
|
)
|
|
|
|
// #then - ultrawork should NOT be triggered
|
|
expect(output.message.variant).toBeUndefined()
|
|
expect(toastCalls).not.toContain("Ultrawork Mode Activated")
|
|
})
|
|
|
|
test("should trigger ultrawork on standalone 'ulw' keyword", async () => {
|
|
// #given - text contains standalone 'ulw'
|
|
setMainSession(undefined)
|
|
|
|
const toastCalls: string[] = []
|
|
const hook = createKeywordDetectorHook(createMockPluginInput({ toastCalls }))
|
|
const output = {
|
|
message: {} as Record<string, unknown>,
|
|
parts: [{ type: "text", text: "ulw do this task" }],
|
|
}
|
|
|
|
// #when - message with standalone 'ulw' is processed
|
|
await hook["chat.message"](
|
|
{ sessionID: "any-session" },
|
|
output
|
|
)
|
|
|
|
// #then - ultrawork should be triggered
|
|
expect(output.message.variant).toBe("max")
|
|
expect(toastCalls).toContain("Ultrawork Mode Activated")
|
|
})
|
|
|
|
test("should NOT trigger ultrawork on file references containing 'ulw' substring", async () => {
|
|
// #given - file reference contains 'ulw' as substring
|
|
setMainSession(undefined)
|
|
|
|
const toastCalls: string[] = []
|
|
const hook = createKeywordDetectorHook(createMockPluginInput({ toastCalls }))
|
|
const output = {
|
|
message: {} as Record<string, unknown>,
|
|
parts: [{ type: "text", text: "@StatefulWidget.tsx please review this file" }],
|
|
}
|
|
|
|
// #when - message referencing file with 'ulw' substring is processed
|
|
await hook["chat.message"](
|
|
{ sessionID: "any-session" },
|
|
output
|
|
)
|
|
|
|
// #then - ultrawork should NOT be triggered
|
|
expect(output.message.variant).toBeUndefined()
|
|
expect(toastCalls).not.toContain("Ultrawork Mode Activated")
|
|
})
|
|
})
|