| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345 |
- /**
- * End-to-end spec of the packer's actual product: an image this package builds must
- * mount in the runtime's VFS and be `require`-able by the runtime's module loader,
- * which holds no transform of its own.
- *
- * That last part is the point. "It boots" only proves nothing crashed; the loader
- * wraps module bodies exactly as the image holds them, so the pack-time pass is the
- * only thing that can make them wrappable. The refusal case is the positive
- * evidence: restore one un-lowered body and the same setup fails loud.
- *
- * A small synthetic composition rather than the real profile: packing the full
- * closure takes tens of seconds. The path under test — compose, materialize,
- * transform, tar, compress, inflate, mount, require — is the same one.
- *
- * ONE module instance: every runtime import here goes through `src/`, because the VFS
- * and the active loader are module-level slots. The "starts with nothing loaded"
- * case asserts the instance the spec holds is the one that did the work.
- */
- import { existsSync } from 'node:fs'
- import { join } from 'node:path'
- import { fileURLToPath } from 'node:url'
- import { describe, expect, it } from 'vitest'
- import { FiberState } from '@deepseek-ai/cordis'
- import { createNodeBuiltins, REPLACED_PREFIXES } from '@deepseek-ai/dsh-experimental-webworker-runtime/src/node/builtins.ts'
- import {
- setActiveModuleLoader, WorkerModuleLoader,
- } from '@deepseek-ai/dsh-experimental-webworker-runtime/src/module-system/module-loader.ts'
- import { inflateImage } from '@deepseek-ai/dsh-experimental-webworker-runtime/src/storage/image-gzip.ts'
- import { loadVfsImage } from '@deepseek-ai/dsh-experimental-webworker-runtime/src/storage/memory.ts'
- import { setActiveVfs } from '@deepseek-ai/dsh-experimental-webworker-runtime/src/storage/active.ts'
- import { indexWorkspacePackages, previewFixtures } from '../src/repository.ts'
- import { DEFAULT_ROOT, MANIFEST_PATH, packVfsImage, packVfsOverlay } from '../src/pack.ts'
- const repoRoot = fileURLToPath(new URL('../../../../', import.meta.url))
- /** A leaf workspace package: real build output, no dependencies to drag in. */
- const SUBJECT = '@deepseek-ai/dsh-timeout'
- const LANDLOCK = '@deepseek-ai/node-addon-system'
- const LANDLOCK_ENTRY = `${LANDLOCK}/landlock-run`
- const PLUGIN_INVENTORY = '@deepseek-ai/dsh-plugin-package-inventory-deepseek'
- const WEB_SERVER = '@deepseek-ai/dsh-host-webserver'
- const workspaces = indexWorkspacePackages(repoRoot)
- describe('preview example overlays', () => {
- it('packs source-looking paths and dot directories into a separate overlay', () => {
- const fixture = previewFixtures(repoRoot)[0]
- expect(fixture?.id).toBe('vfs-example')
- const result = packVfsOverlay(fixture?.trees ?? [])
- expect(new TextDecoder().decode(result.files['workspace/src/preview.ts']))
- .toContain("previewStatus = 'ready'")
- expect(new TextDecoder().decode(result.files['workspace/.agents/skills/preview-tour/SKILL.md']))
- .toContain('name: preview-tour')
- expect(Object.keys(result.files).filter(path => path.endsWith('/session.v3.jsonl'))).toHaveLength(3)
- })
- it('fails loud when a declared seed tree is absent', () => {
- expect(() => packVfsOverlay([
- { mount: 'workspace', directory: join(repoRoot, 'missing-preview-seed') },
- ])).toThrow(/tree workspace is missing/)
- })
- it('refuses overlays that could replace runtime files', () => {
- const fixture = previewFixtures(repoRoot)[0]
- expect(() => packVfsOverlay([
- { mount: 'config', directory: fixture?.trees[0]?.directory ?? repoRoot },
- ])).toThrow(/must stay under home or workspace/)
- })
- })
- /**
- * The pack consumes built `lib/` output. An unbuilt checkout (both coverage
- * lanes run before any build) self-skips; the serial-windows complete
- * reference routes this suite through its post-build uninstrumented gate, and
- * preview builds exercise the same path against complete real artifacts.
- */
- // The subject is zero-dep, but its peer/dependency closure (cordis, loader,
- // include, cosmokit, invariants) must also be built: on the complete lane
- // build and coverage run concurrently, so checking only the subject lets the
- // pack start before its real workspace dependencies exist.
- const subjectBuilt = [
- 'packages/util/timeout/lib/index.js',
- 'packages/runtime-diagnostics/invariants/lib/index.js',
- 'vendor/cordis/lib/index.js',
- 'vendor/cosmokit/lib/index.js',
- 'vendor/include/lib/index.js',
- 'vendor/loader/lib/index.js',
- 'packages/host/webserver/lib/index.js',
- 'packages/llm/plugin-package-inventory-deepseek/lib/index.js',
- 'native/system/packages/entry/lib/index.js',
- 'packages/preset/agent-presets/lib/typert.host.js',
- 'packages/preset/agent-presets/lib/typert.remote-client.js',
- ].every(path => existsSync(join(repoRoot, path)))
- let memo: ReturnType<typeof packVfsImage> | undefined
- const packed = (): ReturnType<typeof packVfsImage> => memo ??= packVfsImage({
- // The composition's own shape: one entry per plugin, `name:` on its own line.
- config: `- id: subject\n name: '${SUBJECT}'\n`,
- profile: 'image-loadable-check',
- workspaces,
- resolveFrom: repoRoot,
- // Synthetic composition: nothing boots the worker assembly, so its default
- // image entries must not be demanded of this one-package closure.
- entries: [],
- })
- let landlockMemo: ReturnType<typeof packVfsImage> | undefined
- const packedLandlock = (): ReturnType<typeof packVfsImage> => landlockMemo ??= packVfsImage({
- config: `- id: subject\n name: '${LANDLOCK}'\n`,
- profile: 'landlock-package-check',
- workspaces,
- resolveFrom: repoRoot,
- entries: [],
- })
- let pluginInventoryMemo: ReturnType<typeof packVfsImage> | undefined
- const packedPluginInventory = (): ReturnType<typeof packVfsImage> => pluginInventoryMemo ??= packVfsImage({
- config: `- id: subject\n name: '${PLUGIN_INVENTORY}'\n`,
- profile: 'plugin-inventory-check',
- workspaces,
- resolveFrom: repoRoot,
- entries: [],
- })
- let webServerMemo: ReturnType<typeof packVfsImage> | undefined
- const packedWebServer = (): ReturnType<typeof packVfsImage> => webServerMemo ??= packVfsImage({
- config: `- id: subject\n name: '${WEB_SERVER}'\n`,
- profile: 'webserver-dependency-check',
- workspaces,
- resolveFrom: repoRoot,
- entries: [],
- })
- /** The image's archive, inflated once: mounting reads the tar, not the gzip member. */
- let archiveMemo: Uint8Array | undefined
- const archive = async (): Promise<Uint8Array> =>
- archiveMemo ??= await inflateImage(packed().image, 'the image this spec packed')
- ;(subjectBuilt ? describe : describe.skip)('packed image', () => {
- it('materializes the roster with every dependency resolved', () => {
- const result = packed()
- expect(workspaces.has(SUBJECT)).toBe(true)
- expect(result.roster).toEqual([SUBJECT])
- expect(result.packages.has(SUBJECT)).toBe(true)
- expect(result.missing).toEqual([])
- })
- it('records the wrapper contract in the manifest and rewrote what it visited', () => {
- const result = packed()
- expect(Object.hasOwn(result.files, MANIFEST_PATH)).toBe(true)
- const manifest = JSON.parse(new TextDecoder().decode(result.files[MANIFEST_PATH])) as { lowered: string }
- expect(manifest.lowered).toBe(result.contract)
- expect(result.transform.rewritten).toBeGreaterThan(0)
- })
- it('names every JavaScript entry for the debugger, workspace files by repository path', () => {
- const result = packed()
- const decoder = new TextDecoder()
- const entries = Object.keys(result.files).filter(name => /\.[cm]?js$/.test(name))
- expect(entries.length).toBeGreaterThan(0)
- for (const name of entries) {
- const lines = decoder.decode(result.files[name]).split('\n')
- // V8 stacks and DevTools read the trailing comment, so worker
- // `new Function` bodies and page blobs alike show under a stable name
- // instead of as anonymous VM or blob entries.
- expect(lines.at(-1)).toMatch(/^\/\/# sourceURL=\S+$/)
- // A dangling map reference would make the debugger report one load
- // failure per named script; the packer ships no `.map` files.
- expect(lines.at(-2) ?? '').not.toContain('sourceMappingURL')
- }
- // A workspace entry is named by the path a reader navigates in this
- // repository, not by its image mount.
- const subject = decoder.decode(result.files[`node_modules/${SUBJECT}/lib/index.js`])
- expect(subject.endsWith('\n//# sourceURL=packages/util/timeout/lib/index.js')).toBe(true)
- })
- it('writes one gzip member whose header records no build facts', () => {
- const image = packed().image
- // RFC 1952 §2.3: magic, deflate, then the flag byte — no FNAME (0x08) or
- // FCOMMENT, a zero modification time, and "unknown" for the packing system.
- expect([...image.slice(0, 4)]).toEqual([0x1f, 0x8b, 0x08, 0x00])
- expect([...image.slice(4, 8)]).toEqual([0, 0, 0, 0])
- expect(image[9]).toBe(255)
- })
- it('packs the same tree to the same bytes', () => {
- // The preview build compares a freshly packed image against the shipped one,
- // so anything the compressor takes from its environment would read as a
- // changed tree.
- const again = packVfsImage({
- config: `- id: subject\n name: '${SUBJECT}'\n`,
- profile: 'image-loadable-check',
- workspaces,
- resolveFrom: repoRoot,
- entries: [],
- })
- expect(Buffer.from(again.image).equals(Buffer.from(packed().image))).toBe(true)
- })
- it('mounts and requires through the real loader, which carries no transform', async () => {
- const vfs = loadVfsImage(await archive(), DEFAULT_ROOT)
- expect(vfs.existsSync(`${DEFAULT_ROOT}/node_modules/${SUBJECT}/lib/index.js`)).toBe(true)
- const loader = new WorkerModuleLoader({
- vfs,
- root: DEFAULT_ROOT,
- staticModules: createNodeBuiltins(),
- staticModulePrefixes: REPLACED_PREFIXES,
- })
- // The loader this spec reads counters from must be the one that did the
- // requiring; a second instance would report an empty cache trivially.
- expect(loader.usage().modules).toBe(0)
- const required = loader.requireFrom(`${DEFAULT_ROOT}/workspace`)(SUBJECT) as Record<string, unknown>
- expect(typeof required.timeoutOf).toBe('function')
- expect(loader.usage().modules).toBeGreaterThan(0)
- })
- it('keeps third-party runtime JavaScript published under src', async () => {
- const result = packedWebServer()
- expect(result.missing).toEqual([])
- expect(Object.hasOwn(result.files, 'node_modules/debug/src/index.js')).toBe(true)
- expect(Object.hasOwn(result.files, 'node_modules/ms/index.js')).toBe(true)
- const vfs = loadVfsImage(await inflateImage(result.image, 'the packed webserver'), DEFAULT_ROOT)
- const loader = new WorkerModuleLoader({
- vfs,
- root: DEFAULT_ROOT,
- staticModules: createNodeBuiltins(),
- staticModulePrefixes: REPLACED_PREFIXES,
- })
- setActiveVfs(vfs)
- setActiveModuleLoader(loader)
- const webserver = loader.requireFrom(`${DEFAULT_ROOT}/workspace`)(WEB_SERVER) as { WebServer?: unknown }
- expect(typeof webserver.WebServer).toBe('function')
- })
- it('runs the unchanged Landlock entry package over the Worker platform executable', async () => {
- const result = packedLandlock()
- expect(workspaces.has(LANDLOCK)).toBe(true)
- expect(result.packages.has(LANDLOCK)).toBe(true)
- expect(result.missing).toEqual([])
- expect(Object.hasOwn(result.files, `node_modules/${LANDLOCK}/lib/index.js`)).toBe(true)
- expect(createNodeBuiltins()[LANDLOCK_ENTRY]).toBeUndefined()
- const vfs = loadVfsImage(await inflateImage(result.image, 'the packed Landlock package'), DEFAULT_ROOT)
- const loader = new WorkerModuleLoader({
- vfs,
- root: DEFAULT_ROOT,
- staticModules: createNodeBuiltins(),
- staticModulePrefixes: REPLACED_PREFIXES,
- })
- setActiveVfs(vfs)
- setActiveModuleLoader(loader)
- const landlock = loader.requireFrom(`${DEFAULT_ROOT}/workspace`)(LANDLOCK_ENTRY) as {
- LAUNCHER_BIN: string
- LAUNCHER_FAILURE_EXIT: number
- launcherPath(): string
- grantArgs(grants: { readOnly?: readonly string[]; readWrite?: readonly string[] }): string[]
- probe(): string
- }
- expect(landlock.LAUNCHER_BIN).toBe('landlock-run')
- expect(landlock.LAUNCHER_FAILURE_EXIT).toBe(125)
- expect(landlock.grantArgs({ readOnly: ['/'], readWrite: ['/tmp'] })).toEqual([
- '--ro', '/', '--rw', '/tmp',
- ])
- expect(landlock.launcherPath()).toBe(
- `${DEFAULT_ROOT}/node_modules/${LANDLOCK}/node_modules/${LANDLOCK}-${process.platform}-${process.arch}/bin/landlock-run`,
- )
- expect(landlock.probe()).toBe('full')
- })
- it('prepares the unchanged plugin-package inventory through Worker createRequire paths', async () => {
- const result = packedPluginInventory()
- expect(result.missing).toEqual([])
- const vfs = loadVfsImage(await inflateImage(result.image, 'the packed plugin inventory'), DEFAULT_ROOT)
- const loader = new WorkerModuleLoader({
- vfs,
- root: DEFAULT_ROOT,
- staticModules: createNodeBuiltins(),
- staticModulePrefixes: REPLACED_PREFIXES,
- })
- setActiveVfs(vfs)
- setActiveModuleLoader(loader)
- const inventory = loader.requireFrom(`${DEFAULT_ROOT}/workspace`)(PLUGIN_INVENTORY) as {
- apply(ctx: unknown, config: unknown): void
- }
- type Prepared = { readonly value: { readonly version: number; readonly packages: readonly unknown[] } }
- type Prepare = (request: { readonly body: object; readonly signal: AbortSignal }) => Promise<Prepared>
- let prepare: Prepare | undefined
- const baseUrl = `file://${DEFAULT_ROOT}/config/cordis.yml`
- const tree: { readonly ctx: { readonly baseUrl: string }; entries(): readonly unknown[] } = {
- ctx: { baseUrl },
- entries: () => [entry],
- }
- const entry = {
- options: { name: PLUGIN_INVENTORY },
- disabled: false,
- fiber: { state: FiberState.ACTIVE },
- parent: { tree },
- }
- inventory.apply({
- baseUrl,
- loader: tree,
- deepseekLlmApiExtensions: {
- register: (field: string, contribution: { readonly prepare: Prepare }): void => {
- expect(field).toBe('dsh_plugin_packages')
- prepare = contribution.prepare
- },
- },
- }, {})
- if (prepare === undefined) throw new Error('packed plugin inventory did not register its request contribution')
- const prepared = await prepare({ body: {}, signal: new AbortController().signal })
- const manifest = JSON.parse(vfs.readFileSync(
- `${DEFAULT_ROOT}/node_modules/${PLUGIN_INVENTORY}/package.json`, 'utf8',
- ) as string) as { version: string }
- expect(prepared.value).toEqual({
- version: 1,
- packages: [{ name: PLUGIN_INVENTORY, version: manifest.version }],
- })
- })
- it('refuses a body the packer did not lower, naming the image', async () => {
- // The case above only proves the packed bytes are wrappable. This is the
- // other half: the loader has no transform to fall back on, so an entry the
- // collector missed must fail loud against the image rather than boot.
- const vfs = loadVfsImage(await archive(), DEFAULT_ROOT)
- vfs.seed(
- `${DEFAULT_ROOT}/node_modules/${SUBJECT}/lib/index.js`,
- new TextEncoder().encode('export const timeoutOf = () => 0\n'),
- )
- const loader = new WorkerModuleLoader({
- vfs,
- root: DEFAULT_ROOT,
- staticModules: createNodeBuiltins(),
- staticModulePrefixes: REPLACED_PREFIXES,
- })
- expect(() => loader.requireFrom(`${DEFAULT_ROOT}/workspace`)(SUBJECT))
- .toThrow(/still carries module syntax, so the image was not lowered by the packer/)
- })
- })
|