/** locale apply wiring: service + dictionaries provision, declaration-aware * Language row registration, snapshot projection into the row store, and * recovery after an HMR collapse of the declaring entry. */ import { Context } from '@deepseek-ai/cordis' import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest' import { SlotRegistry } from '@deepseek-ai/dsh-client-runtime/client' import { SettingsScopeBinder } from '@deepseek-ai/dsh-client-ui-settings/client' import { TestRemote } from '@deepseek-ai/dsh-client-test-runtime' import { apply, inject, SETTINGS_NS, } from '@deepseek-ai/dsh-client-locale/client' import type { LanguageRowInjected, LocaleRuntime } from '@deepseek-ai/dsh-client-locale/client' import { LOCALE_SETTINGS_NAMESPACE, LocaleSettingsSchema } from '../src/locale-settings.ts' import { LanguageRow } from '../src/client/LanguageRow.tsx' import type { createLanguageRowStore } from '../src/client/settings-store.ts' const SLOT = 'settings.general.item' async function bench() { const ctx = new Context() await ctx.plugin(SlotRegistry).await() let preference: string | undefined let revision = 0 const namespace = () => ({ ns: LOCALE_SETTINGS_NAMESPACE, schema: LocaleSettingsSchema.toJSON(), value: preference === undefined ? {} : { preference }, applies: 'live' as const, secrets: [], revision, }) const describe = vi.fn(async () => ({ rpcId: 'locale-describe' as never, result: { ok: true as const, value: { writable: true, hasDocument: true, namespaces: [namespace()] }, }, })) const mutate = vi.fn(async (request: { ops: { value: string }[] }) => { preference = request.ops[0]!.value revision += 1 return { rpcId: 'locale-mutate' as never, result: { ok: true as const, value: namespace() }, } }) ctx.provide('connection', { api: { settings: { describe, mutate } }, isLoopback: true } as never) // The settings transport and the forwarded-event port the plugin injects. new TestRemote(ctx) await ctx.plugin(SettingsScopeBinder).await() return { ctx, slots: ctx.get('slots') as SlotRegistry, describe, mutate, setHostPreference: (next: string | undefined) => { preference = next; revision += 1 }, } } /** Stand in for the settings shell: declare the General item slot from root. */ function declareItems(slots: SlotRegistry): () => void { return slots.register( { name: 'root', children: { [SLOT]: { kind: 'list', scope: 'root' } } } as never, () => null, ) } /** Mirror the framework's inject choreography: bake a real instance from the * declared handle and hand its actions to the entry's inject factory. */ function faceOf(slots: SlotRegistry) { const entry = slots.entries(SLOT).find(e => e.component === LanguageRow)! const handle = entry.store as ReturnType const instance = handle.create() const face = (entry.inject as unknown as (a: typeof instance.actions) => LanguageRowInjected)(instance.actions) return { entry, instance, face } } describe('locale apply', () => { // A fresh service opens in the browser's language, so these wiring specs // pin one to keep their zh baseline independent of the test environment. beforeEach(() => { vi.stubGlobal('navigator', { languages: ['zh-CN'], language: 'zh-CN' }) }) afterEach(() => { vi.unstubAllGlobals() }) it('declares the slot service', () => { expect(inject).toEqual(['slots', 'connection', 'remote', 'settingsScope']) }) it('provides the service with base + settings dictionaries and registers the row (declaration before or after apply)', async () => { const before = await bench() declareItems(before.slots) await before.ctx.plugin({ inject: [...inject], apply }).await() const locale = before.ctx.get('locale') as LocaleRuntime // Base dictionaries are registered: the (ns, locale) seats are occupied. expect(() => locale.register('common', 'zh', {})).toThrow('already has locale') expect(() => locale.register('common', 'en', {})).toThrow('already has locale') expect(locale.bind(SETTINGS_NS)('language.title')).toBe('语言') const entry = before.slots.entries(SLOT).find(e => e.component === LanguageRow)! expect(entry.options).toMatchObject({ id: 'language', order: 0 }) const after = await bench() const fiber = after.ctx.plugin({ inject: [...inject], apply }) await fiber.await() expect(after.slots.entries(SLOT)).toHaveLength(0) declareItems(after.slots) await Promise.resolve() expect(after.slots.entries(SLOT).some(e => e.component === LanguageRow)).toBe(true) }) it('projects service snapshots into the row store and routes face writes back', async () => { const b = await bench() declareItems(b.slots) await b.ctx.plugin({ inject: [...inject], apply }).await() const locale = b.ctx.get('locale') as LocaleRuntime // An event ahead of any inject hits the unbound-actions arm. locale.setLocale('en') const { entry, instance, face } = faceOf(b.slots) // The inject-time re-sync sealed the init window: the mirror is current. expect(instance.getSnapshot().active).toBe('en') expect(instance.getSnapshot().options.map(o => o.id)).toEqual(['zh', 'en']) // Copy rides the standard locale seat: the entry declares the namespace. expect(entry.locale).toBe(SETTINGS_NS) expect(locale.bind(SETTINGS_NS)('language.title')).toBe('Language') face.setLocale('zh') expect(locale.getLocale().active).toBe('zh') expect(instance.getSnapshot().active).toBe('zh') expect(locale.bind(SETTINGS_NS)('language.title')).toBe('语言') await vi.waitFor(() => { expect(b.mutate).toHaveBeenCalledTimes(2) }) }) it('loads and refreshes the explicit Host preference after nonblocking activation', async () => { const b = await bench() b.setHostPreference('en') declareItems(b.slots) await b.ctx.plugin({ inject: [...inject], apply }).await() const locale = b.ctx.get('locale') as LocaleRuntime await vi.waitFor(() => { expect(locale.getLocale().active).toBe('en') }) b.setHostPreference(undefined) b.ctx.remote.$dispatch('settings/document-updated', [LOCALE_SETTINGS_NAMESPACE, 0]) await vi.waitFor(() => { expect(locale.getLocale().active).toBe('zh') }) b.setHostPreference('en') b.ctx.remote.$dispatch('settings/document-updated', [LOCALE_SETTINGS_NAMESPACE, 0]) await vi.waitFor(() => { expect(locale.getLocale().active).toBe('en') }) expect(b.describe).toHaveBeenCalledTimes(3) }) it('recovers after an HMR collapse of the declaring entry (stale disposer must not block)', async () => { const b = await bench() const host = declareItems(b.slots) await b.ctx.plugin({ inject: [...inject], apply }).await() expect(b.slots.entries(SLOT)).toHaveLength(1) // Collapse: the declarer dies, the cascade removes our entry while the // apply closure still holds its (now stale) disposer. host() expect(b.slots.entries(SLOT)).toHaveLength(0) declareItems(b.slots) await Promise.resolve() expect(b.slots.entries(SLOT).some(e => e.component === LanguageRow)).toBe(true) }) it('teardown removes the row; teardown without a declaration is quiet', async () => { const b = await bench() declareItems(b.slots) const fiber = b.ctx.plugin({ inject: [...inject], apply }) await fiber.await() expect(b.slots.entries(SLOT)).toHaveLength(1) await fiber.dispose() expect(b.slots.entries(SLOT)).toHaveLength(0) // Never-declared bench: the effect disposer's dispose arm stays undefined. const quiet = await bench() const f2 = quiet.ctx.plugin({ inject: [...inject], apply }) await f2.await() await f2.dispose() expect(quiet.slots.entries(SLOT)).toHaveLength(0) }) })