| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- // @vitest-environment jsdom
- /**
- * Real tsdown artifact shape: lib/client.js hands off through
- * window.__ModuleLoader__.load, resolves externals through the injected
- * require, returns the exports (apply + inject), and a mounted apply
- * registers the view tab into a real SlotRegistry ring. Skips when dist/ is
- * not built (`pnpm --filter @deepseek-ai/dsh-client-ui-trajectory bundle`).
- */
- import { readFileSync } from 'node:fs'
- import { resolve } from 'node:path'
- import { Context } from '@deepseek-ai/cordis'
- import { stubSettingsScope } from '@deepseek-ai/dsh-client-test-runtime'
- import { afterEach, describe, expect, it } from 'vitest'
- import { UiConversation } from '@deepseek-ai/dsh-client-ui-conversation/client'
- import { SlotRegistry } from '@deepseek-ai/dsh-client-ui-renderer/client'
- const PLUGIN_ID = '@deepseek-ai/dsh-client-ui-trajectory'
- interface Handoff { id: string; factory: (require: (spec: string) => unknown) => Record<string, unknown> }
- type Win = { __ModuleLoader__?: { load(h: Handoff): void } }
- function readBundle(): string | undefined {
- try {
- // import.meta.url is http-scheme in the jsdom pool; vitest runs from the
- // repo root, so resolve the artifact repo-relatively instead.
- return readFileSync(resolve('packages/client/ui-trajectory/lib/client.js'), 'utf8')
- } catch {
- return undefined
- }
- }
- afterEach(() => {
- delete (window as Win).__ModuleLoader__
- for (const el of document.querySelectorAll('style')) el.remove()
- })
- describe('tsdown client artifact', () => {
- const code = readBundle()
- async function loadArtifact() {
- let handoff: Handoff | undefined
- ;(window as Win).__ModuleLoader__ = { load: (h) => { handoff = h } }
- // The implied-eval ban targets accidental string execution, not this
- // deliberate built-bundle fixture running in the window scope.
- // oxlint-disable-next-line typescript/no-implied-eval, typescript/no-unsafe-call
- new Function(code!)()
- expect(handoff).toBeDefined()
- const modules = new Map<string, unknown>([
- ['react', await import('react')],
- ['react/jsx-runtime', await import('react/jsx-runtime')],
- ['react-dom', await import('react-dom')],
- ['@deepseek-ai/dsh-client-store', await import('@deepseek-ai/dsh-client-store')],
- ['@deepseek-ai/dsh-client-ui-conversation/client', await import('@deepseek-ai/dsh-client-ui-conversation/client')],
- ['@deepseek-ai/dsh-client-ui-primitives', await import('@deepseek-ai/dsh-client-ui-primitives')],
- ])
- const exports = handoff!.factory((spec) => {
- if (!modules.has(spec)) throw new Error(`unexpected require: ${spec}`)
- return modules.get(spec)
- })
- return { handoff: handoff!, exports }
- }
- it.skipIf(code === undefined)('hands off with the manifest id and a DI-require factory', async () => {
- const { handoff, exports } = await loadArtifact()
- expect(handoff.id).toBe(PLUGIN_ID)
- expect(exports.apply).toBeTypeOf('function')
- expect(exports.inject).toEqual([
- 'slots', 'sessions', 'uiSession', 'uiConversation', 'locale',
- ])
- })
- it.skipIf(code === undefined)('mounted as an object plugin, apply registers the view tab on the real ring', async () => {
- const { exports } = await loadArtifact()
- const ctx = new Context()
- const slots = new SlotRegistry(ctx)
- ctx.provide('uiSession', { provide: () => () => {} } as never)
- // The conversation entry's role: the ring must be declared before riders land.
- slots.register({
- name: 'root',
- children: { 'conversation.view': { kind: 'list', scope: 'session' } },
- }, (_p: { renderSlot?: unknown }) => null)
- // Paging is session-owned; this registration-only probe never renders the
- // entry, so the binding stays deliberately empty. The locale plugin backs
- // the locale-aware view tab label (its settings scope needs a connection
- // handle and the Host-facing settings/remote seams).
- const sessions = { binding: () => undefined }
- ctx.provide('sessions', sessions)
- const uiConversation = new UiConversation(ctx, sessions as never)
- const { events, views } = uiConversation
- ctx.provide('connection', { api: { settings: {} }, isLoopback: false } as never)
- ctx.provide('remote', { $on: () => () => {} } as never)
- ctx.provide('settingsScope', { bind: () => stubSettingsScope().scope } as never)
- const locale = await import('@deepseek-ai/dsh-client-locale/client')
- ctx.plugin({ inject: [...locale.inject], apply: locale.apply })
- const fiber = ctx.plugin(exports as { apply: (ctx: Context) => void })
- await fiber.await()
- expect(slots.entries('conversation.view').map(e => e.options.id)).toEqual(['trajectory'])
- expect(events.entries().length).toBeGreaterThan(0)
- expect(views.entries()).toHaveLength(1)
- await fiber.dispose()
- expect(slots.entries('conversation.view')).toHaveLength(0)
- expect(events.entries()).toEqual([])
- expect(views.entries()).toEqual([])
- })
- it.skipIf(code === undefined)('injects plugin-tagged module CSS during factory execution', async () => {
- await loadArtifact()
- const tags = document.querySelectorAll(`style[data-plugin=${JSON.stringify(PLUGIN_ID)}]`)
- expect(tags.length).toBeGreaterThan(0)
- })
- })
|