First consumer of the runtime's single-slot mounting: the real apply mounts
on its own fiber, renderSlot('sidebar', ...) captures exactly the sidebar
slot's output, and update() re-renders the collapsed rail in place. The
.snap files carry semantic class names and svg fingerprints only.
52 lines
2.3 KiB
TypeScript
52 lines
2.3 KiB
TypeScript
// @vitest-environment jsdom
|
|
/**
|
|
* Local DOM snapshots of the sidebar shell through the real assembly path:
|
|
* SlotTestRuntime mounts the package apply on its own fiber, the auto frame
|
|
* supplies the layout's owner share at the render site, and the snapshot
|
|
* captures exactly the 'sidebar' slot's output (CSS-module class names
|
|
* folded to their semantic locals by the runtime's serializer). The child
|
|
* holes (sidebar.workspaces / sidebar.settings) have no registrant here, so
|
|
* the snapshots pin the shell chrome itself.
|
|
*/
|
|
import { afterEach, describe, expect, it, vi } from 'vitest'
|
|
import { cleanup, waitFor } from '@testing-library/react'
|
|
import { SlotTestRuntime } from '@deepseek-ai/dsh-client-test-runtime'
|
|
import { apply, inject } from '@deepseek-ai/dsh-client-ui-sidebar/client'
|
|
|
|
afterEach(cleanup)
|
|
|
|
async function bench() {
|
|
const runtime = await SlotTestRuntime.create()
|
|
runtime.provide('layout', { toggleSidebar: vi.fn() })
|
|
await runtime.declare({ 'sidebar': { kind: 'single', scope: 'root' } })
|
|
await runtime.mount({ inject: [...inject], apply })
|
|
return runtime
|
|
}
|
|
|
|
describe('sidebar shell snapshots', () => {
|
|
it('renders the expanded column (wordmark, capsule, empty holes)', async () => {
|
|
const runtime = await bench()
|
|
const slot = runtime.renderSlot('sidebar', { collapsed: false, width: 300 })
|
|
// Wordmark + capsule both start a session in the expanded state.
|
|
expect(slot.view.getAllByRole('button', { name: 'New session' })).toHaveLength(2)
|
|
expect(slot.container).toMatchSnapshot()
|
|
await runtime.dispose()
|
|
})
|
|
|
|
it('renders the collapsed rail after the crossfade settles, in place', async () => {
|
|
const runtime = await bench()
|
|
const slot = runtime.renderSlot('sidebar', { collapsed: false, width: 300 })
|
|
const shell = slot.container.firstElementChild
|
|
slot.update({ collapsed: true, width: 56 })
|
|
// The wide content (wordmark shortcut) unmounts at the 150ms settle;
|
|
// only the rail's capsule remains a New-session button.
|
|
await waitFor(() => {
|
|
expect(slot.view.getAllByRole('button', { name: 'New session' })).toHaveLength(1)
|
|
})
|
|
expect(slot.container).toMatchSnapshot()
|
|
// Same tree position: the owner flip re-rendered the shell in place.
|
|
expect(slot.container.firstElementChild).toBe(shell)
|
|
await runtime.dispose()
|
|
})
|
|
})
|