browser-plugin.spec.ts 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /**
  2. * ui-command browser half on a real cordis Context with fake slash/slots
  3. * faces and real session scopes: the plugin body mounts CommandService as
  4. * `command`, the popupSelect shell registers into conversation.input.overlay
  5. * through slot declaration injection with a per-session inject (sessionId →
  6. * scope → popupFor; unknown id fails loud), both fold up on fiber disposal
  7. * (HMR safety), and the service satisfies the frozen CommandServiceContract.
  8. */
  9. import { Context } from 'cordis'
  10. import { describe, expect, it } from 'vitest'
  11. import { createScope, scopeOf, SlotsService } from '@deepseek-ai/dsh-client-runtime/client'
  12. import type { SessionId } from '@deepseek-ai/dsh-client-runtime/client'
  13. import type { SlashSource } from '@deepseek-ai/dsh-client-ui-slash/client'
  14. import type { CommandServiceContract } from '../src/client/contract.ts'
  15. import type { PopupSelectInjected } from '../src/client/PopupSelectView.tsx'
  16. import { LocaleService } from '@deepseek-ai/dsh-client-locale/client'
  17. import { apply, CommandService, inject } from '../src/client/index.ts'
  18. const sid = (k: string): SessionId => k as SessionId
  19. async function bench() {
  20. const ctx = new Context()
  21. const sources = new Map<string, SlashSource>()
  22. ctx.provide('slash', {
  23. registerSource(src: SlashSource) {
  24. sources.set(`${src.trigger} ${src.name}`, src)
  25. return () => { sources.delete(`${src.trigger} ${src.name}`) }
  26. },
  27. })
  28. const scopes = new Map<SessionId, Context>()
  29. ctx.provide('sessions', {
  30. scope: (id: SessionId) => scopes.get(id),
  31. scopeOf: (c: Context) => scopeOf(c),
  32. })
  33. ctx.provide('connection', { api: { commands: { list: () => Promise.resolve({ result: { ok: true, value: { commands: [] } } }) } } })
  34. await ctx.plugin(SlotsService).await()
  35. ctx.slots.register({
  36. name: 'root', children: { 'conversation.input.overlay': { kind: 'list', scope: 'session' } },
  37. } as never, (() => null) as never)
  38. ctx.provide('locale', new LocaleService(ctx))
  39. const fiber = ctx.plugin({ inject: [...inject], apply })
  40. await fiber.await()
  41. const mint = (key: string) => {
  42. const handle = createScope(ctx, sid(key))
  43. scopes.set(sid(key), handle.ctx)
  44. return handle
  45. }
  46. return { ctx, fiber, sources, slots: ctx.slots, mint }
  47. }
  48. describe('apply', () => {
  49. it('declares the services it binds', () => {
  50. expect(inject).toEqual(['slash', 'sessions', 'connection', 'locale'])
  51. })
  52. it('mounts ctx.command, registers the source and the overlay entry, and folds up on disposal', async () => {
  53. const { ctx, fiber, sources, slots } = await bench()
  54. const command = ctx.get('command')
  55. expect(command).toBeInstanceOf(CommandService)
  56. // Frozen-contract conformance (compile-time check rides the assignment).
  57. const contract: CommandServiceContract = command as CommandService
  58. expect(typeof contract.register).toBe('function')
  59. expect(typeof contract.popupFor).toBe('function')
  60. expect([...sources.keys()]).toEqual(['/ command'])
  61. expect(slots.entries('conversation.input.overlay').map(entry => entry.options.id)).toEqual(['command-popup'])
  62. await fiber.dispose()
  63. expect(sources.size).toBe(0)
  64. expect(slots.entries('conversation.input.overlay')).toHaveLength(0)
  65. })
  66. it('the overlay inject resolves the per-session popup controller by sessionId and fails loud on an unknown id', async () => {
  67. const { ctx, slots, mint } = await bench()
  68. const command = ctx.get('command') as CommandService
  69. const scope = mint('s1')
  70. const entry = slots.entries('conversation.input.overlay')[0]!
  71. const injectEntry = entry.inject as unknown as (sessionId: SessionId) => PopupSelectInjected
  72. expect(injectEntry(sid('s1')).popup).toBe(command.popupFor(scope.ctx))
  73. expect(() => injectEntry(sid('ghost'))).toThrow(/resolved no scope/)
  74. })
  75. })