mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-17 13:55:50 +00:00
* feat: 适配 zed acp 协议 * docs: 完善 acp 文档 * feat: integrate feature branches + daemon/job 命令层级化 + 跨平台后台引擎 Cherry-picked from origin/lint/preview (637c908), excluding lint-only changes. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: correct detectMimeFromBase64 to decode raw bytes from base64 Cherry-picked from origin/lint/preview (ee36954). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: daemon 子进程 spawn 跨平台修复 + CliLaunchSpec 集中化重构 Cherry-picked from origin/lint/preview (c5f52cd), excluding lint-only formatting changes. - 新建 src/utils/cliLaunch.ts: 集中化 CLI 子进程启动层 - 修复 --daemon-worker=kind 等号格式解析 - 修复 daemon/bg fast path 缺少 setShellIfWindows() - 修复 checkPathExists 用 existsSync 替代 execSync('dir') - 7 个 spawn 站点迁移到 CliLaunchSpec Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: merge tsconfig.base.json into tsconfig.json with full compiler options The cherry-pick from637c908dropped jsx/strict/etc settings when removing tsconfig.base.json. This commit restores them in a single tsconfig.json. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: merge tsconfig.base.json into tsconfig.json with full compiler options The cherry-pick from637c908dropped jsx/strict/etc settings when removing tsconfig.base.json. This commit restores them in a single tsconfig.json. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
125 lines
3.1 KiB
TypeScript
125 lines
3.1 KiB
TypeScript
import { describe, test, expect, beforeEach } from 'bun:test'
|
|
import {
|
|
setMasterMutedPipes,
|
|
isMasterPipeMuted,
|
|
removeMasterPipeMute,
|
|
clearMasterMutedPipes,
|
|
addSendOverride,
|
|
removeSendOverride,
|
|
hasSendOverride,
|
|
clearSendOverrides,
|
|
} from '../pipeMuteState.js'
|
|
|
|
describe('setMasterMutedPipes', () => {
|
|
beforeEach(() => {
|
|
clearMasterMutedPipes()
|
|
clearSendOverrides()
|
|
})
|
|
|
|
test('sets muted pipes from iterable', () => {
|
|
setMasterMutedPipes(['pipe-a', 'pipe-b'])
|
|
expect(isMasterPipeMuted('pipe-a')).toBe(true)
|
|
expect(isMasterPipeMuted('pipe-b')).toBe(true)
|
|
expect(isMasterPipeMuted('pipe-c')).toBe(false)
|
|
})
|
|
|
|
test('replaces previous muted set', () => {
|
|
setMasterMutedPipes(['pipe-a'])
|
|
setMasterMutedPipes(['pipe-b'])
|
|
expect(isMasterPipeMuted('pipe-a')).toBe(false)
|
|
expect(isMasterPipeMuted('pipe-b')).toBe(true)
|
|
})
|
|
})
|
|
|
|
describe('isMasterPipeMuted', () => {
|
|
beforeEach(() => {
|
|
clearMasterMutedPipes()
|
|
})
|
|
|
|
test('returns false for unknown pipe', () => {
|
|
expect(isMasterPipeMuted('unknown')).toBe(false)
|
|
})
|
|
})
|
|
|
|
describe('removeMasterPipeMute', () => {
|
|
beforeEach(() => {
|
|
clearMasterMutedPipes()
|
|
})
|
|
|
|
test('removes a single muted pipe', () => {
|
|
setMasterMutedPipes(['pipe-a', 'pipe-b'])
|
|
removeMasterPipeMute('pipe-a')
|
|
expect(isMasterPipeMuted('pipe-a')).toBe(false)
|
|
expect(isMasterPipeMuted('pipe-b')).toBe(true)
|
|
})
|
|
|
|
test('no-ops for non-existent pipe', () => {
|
|
removeMasterPipeMute('nonexistent')
|
|
expect(isMasterPipeMuted('nonexistent')).toBe(false)
|
|
})
|
|
})
|
|
|
|
describe('clearMasterMutedPipes', () => {
|
|
test('clears all muted pipes', () => {
|
|
setMasterMutedPipes(['pipe-a', 'pipe-b', 'pipe-c'])
|
|
clearMasterMutedPipes()
|
|
expect(isMasterPipeMuted('pipe-a')).toBe(false)
|
|
expect(isMasterPipeMuted('pipe-b')).toBe(false)
|
|
expect(isMasterPipeMuted('pipe-c')).toBe(false)
|
|
})
|
|
})
|
|
|
|
describe('addSendOverride', () => {
|
|
beforeEach(() => {
|
|
clearSendOverrides()
|
|
})
|
|
|
|
test('adds a send override', () => {
|
|
addSendOverride('pipe-x')
|
|
expect(hasSendOverride('pipe-x')).toBe(true)
|
|
})
|
|
|
|
test('adding same override twice is idempotent', () => {
|
|
addSendOverride('pipe-x')
|
|
addSendOverride('pipe-x')
|
|
expect(hasSendOverride('pipe-x')).toBe(true)
|
|
})
|
|
})
|
|
|
|
describe('removeSendOverride', () => {
|
|
beforeEach(() => {
|
|
clearSendOverrides()
|
|
})
|
|
|
|
test('removes a send override', () => {
|
|
addSendOverride('pipe-x')
|
|
removeSendOverride('pipe-x')
|
|
expect(hasSendOverride('pipe-x')).toBe(false)
|
|
})
|
|
|
|
test('no-ops for non-existent override', () => {
|
|
removeSendOverride('nonexistent')
|
|
expect(hasSendOverride('nonexistent')).toBe(false)
|
|
})
|
|
})
|
|
|
|
describe('hasSendOverride', () => {
|
|
beforeEach(() => {
|
|
clearSendOverrides()
|
|
})
|
|
|
|
test('returns false when no overrides set', () => {
|
|
expect(hasSendOverride('pipe-x')).toBe(false)
|
|
})
|
|
})
|
|
|
|
describe('clearSendOverrides', () => {
|
|
test('clears all send overrides', () => {
|
|
addSendOverride('pipe-a')
|
|
addSendOverride('pipe-b')
|
|
clearSendOverrides()
|
|
expect(hasSendOverride('pipe-a')).toBe(false)
|
|
expect(hasSendOverride('pipe-b')).toBe(false)
|
|
})
|
|
})
|