| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- /** Application-owned profiles share the named profile launch lifecycle. */
- import { mkdirSync, mkdtempSync, readFileSync, rmSync, writeFileSync } from 'node:fs'
- import { tmpdir } from 'node:os'
- import { join } from 'node:path'
- import { Context } from '@deepseek-ai/cordis'
- import { createLaunchEnvironmentSnapshot } from '@deepseek-ai/dsh-launch-environment'
- import { boot, composeEntries, healIsolatedProfileModuleFallback, type Profile } from '@deepseek-ai/dsh-app-boot'
- import { installProxyFromEnvironment } from '@deepseek-ai/dsh-http-proxy'
- import { afterEach, describe, expect, it, vi } from 'vitest'
- import { runProfile } from '../src/profile-boot.ts'
- vi.mock('@deepseek-ai/dsh-app-boot', async importOriginal => ({
- ...await importOriginal<typeof import('@deepseek-ai/dsh-app-boot')>(),
- boot: vi.fn(),
- healIsolatedProfileModuleFallback: vi.fn(),
- installFailLoud: vi.fn(),
- }))
- vi.mock('@deepseek-ai/dsh-http-proxy', () => ({ installProxyFromEnvironment: vi.fn() }))
- const homes: string[] = []
- afterEach(() => {
- vi.restoreAllMocks()
- vi.unstubAllEnvs()
- vi.clearAllMocks()
- for (const home of homes.splice(0)) rmSync(home, { recursive: true, force: true })
- })
- describe('runProfile with an application-owned profile', () => {
- it.each(['composition', 'boot', 'watch', 'cleanup', 'tree-cleanup', 'both-cleanups'] as const)('releases startup resources after a %s failure', async (stage) => {
- const home = mkdtempSync(join(tmpdir(), 'dsh-profile-startup-failure-'))
- homes.push(home)
- mkdirSync(join(home, 'runtime'))
- writeFileSync(join(home, 'runtime/package.json'), '{"name":"test-runtime","version":"1.0.0"}')
- writeFileSync(join(home, 'package.json'), '{"name":"test-bundle","version":"1.0.0"}')
- vi.stubEnv('DSH_HOME', home)
- vi.spyOn(process, 'on').mockReturnValue(process)
- const ctx = new Context()
- ctx.provide('loader', { create: vi.fn() })
- ctx.provide('hmr', {})
- const dispose = vi.spyOn(ctx.fiber, 'dispose')
- const failure = new Error('startup failed')
- const cleanupFailure = new Error('proxy cleanup failed')
- const treeCleanupFailure = new Error('tree cleanup failed')
- if (stage === 'tree-cleanup' || stage === 'both-cleanups') dispose.mockRejectedValueOnce(treeCleanupFailure)
- const disposeProxy = vi.fn().mockImplementation(() => stage === 'cleanup' || stage === 'both-cleanups'
- ? Promise.reject(cleanupFailure)
- : Promise.resolve())
- vi.mocked(installProxyFromEnvironment).mockResolvedValue(disposeProxy)
- vi.mocked(boot).mockImplementation(async (_name, _root, _patches, setup) => {
- await setup?.(ctx)
- throw failure
- })
- if (stage === 'composition') vi.mocked(healIsolatedProfileModuleFallback).mockImplementationOnce(() => { throw failure })
- const profile: Profile = {
- name: 'desktop', dir: home, patchPath: join(home, 'cordis.patch.yml'),
- patches: [], layers: [],
- }
- try {
- const application = runProfile({
- environment: createLaunchEnvironmentSnapshot([]), profile: 'desktop', patchFiles: [], args: ['--no-open'],
- resolvedProfile: { profile, installAnchor: join(home, 'runtime/package.json') },
- })
- if (stage === 'both-cleanups') {
- await expect(application).rejects.toMatchObject({ errors: [failure, { errors: [treeCleanupFailure, cleanupFailure] }] })
- } else if (stage === 'tree-cleanup') {
- await expect(application).rejects.toMatchObject({ errors: [failure, treeCleanupFailure] })
- } else if (stage === 'cleanup') {
- await expect(application).rejects.toMatchObject({ errors: [failure, cleanupFailure] })
- } else {
- await expect(application).rejects.toBe(failure)
- }
- expect(disposeProxy).toHaveBeenCalledOnce()
- expect(dispose).toHaveBeenCalledTimes(stage === 'composition' ? 0 : 1)
- } finally {
- await ctx.fiber.dispose()
- }
- })
- it.each(['link', 'runtime'] as const)('uses shared layers, %s resolution, and shutdown', async (resolutionMode) => {
- const home = mkdtempSync(join(tmpdir(), 'dsh-resolved-profile-'))
- homes.push(home)
- mkdirSync(join(home, 'runtime'))
- writeFileSync(join(home, 'runtime/package.json'), '{"name":"test-runtime","version":"1.0.0"}')
- writeFileSync(join(home, 'package.json'), '{"name":"test-bundle","version":"1.0.0"}')
- vi.stubEnv('DSH_HOME', home)
- vi.stubEnv('DSH_TELEMETRY_DISABLED', '1')
- vi.spyOn(process, 'on').mockReturnValue(process)
- const oldExitCode = process.exitCode
- const ctx = new Context()
- // The real context supplies services; this test substitutes tree mounting and filesystem watchers.
- ctx.provide('loader', { create: vi.fn() })
- ctx.provide('hmr', {})
- const dispose = vi.spyOn(ctx.fiber, 'dispose')
- const disposeProxy = vi.fn().mockResolvedValue(undefined)
- vi.mocked(installProxyFromEnvironment).mockResolvedValue(disposeProxy)
- vi.mocked(boot).mockImplementation(async (_name, _root, _patches, setup) => {
- await setup?.(ctx)
- return ctx
- })
- const homePatch = join(home, 'cordis.patch.yml')
- const profilePatch = join(home, 'profile.patch.yml')
- const overlay = join(home, 'desktop.patch.yml')
- writeFileSync(homePatch, '- id: target\n config: { home: true, priority: home }\n')
- writeFileSync(profilePatch, '- id: target\n config: { profile: true, priority: profile }\n')
- writeFileSync(overlay, '- id: target\n config: { overlay: true, priority: overlay }\n')
- writeFileSync(join(home, 'cordis.yml'), '- id: stale\n')
- const profile: Profile = {
- name: 'desktop', dir: home, patchPath: profilePatch,
- patches: [{ id: 'target', config: { profile: true, priority: 'profile' } }],
- layers: [{
- packageName: 'test-bundle', packageDir: home, patchPath: join(home, 'bundle.yml'),
- patches: [{ insert: [
- { id: 'target', name: 'target', config: { bundle: true, priority: 'bundle' } },
- { id: 'session-telemetry-otel', name: 'telemetry' },
- ] }],
- }],
- }
- const environment = createLaunchEnvironmentSnapshot([{ source: 'process', values: { HTTPS_PROXY: 'http://localhost:8080' } }])
- const runtime = { profile, installAnchor: join(home, 'runtime/package.json') }
- try {
- const { shutdown } = await runProfile({
- environment, profile: 'desktop', resolvedProfile: runtime, resolutionMode,
- patchFiles: [overlay], args: ['--port', '0', '--no-open'],
- })
- expect(installProxyFromEnvironment).toHaveBeenCalledWith(environment, expect.any(Function))
- if (resolutionMode === 'link') {
- expect(healIsolatedProfileModuleFallback).toHaveBeenCalledWith({ profile, installAnchor: runtime.installAnchor })
- } else {
- expect(healIsolatedProfileModuleFallback).not.toHaveBeenCalled()
- }
- expect(readFileSync(join(home, 'cordis.yml'), 'utf8')).not.toContain('stale')
- expect(ctx.cmdlineArgs!.get()).toEqual(['--port', '0', '--no-open'])
- const ready = vi.fn()
- ctx.appReady!.onReady(ready)
- expect(ready).toHaveBeenCalledOnce()
- const patches = vi.mocked(boot).mock.calls[0]![2]!
- const rows = composeEntries([patches])
- expect(patches.slice(1, 4)).toEqual([
- { id: 'target', config: { profile: true, priority: 'profile' } },
- { id: 'target', config: { home: true, priority: 'home' } },
- { id: 'target', config: { overlay: true, priority: 'overlay' } },
- ])
- expect(rows.find(row => row.id === 'target')?.config).toEqual({ overlay: true, priority: 'overlay' })
- expect(rows.find(row => row.id === 'session-telemetry-otel')?.disabled).toBe(true)
- expect(ctx.profileContext).toMatchObject({ dir: home, patchPath: profilePatch, installAnchor: runtime.installAnchor })
- await shutdown.shutdown(0)
- expect(dispose).toHaveBeenCalledOnce()
- expect(disposeProxy).toHaveBeenCalledOnce()
- } finally {
- await ctx.fiber.dispose()
- process.exitCode = oldExitCode
- }
- })
- })
|