mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-05-02 21:50:52 +00:00
Some checks failed
Qwen Code CI / Lint (push) Failing after 12s
Qwen Code CI / Test (push) Has been skipped
Qwen Code CI / Test-1 (push) Has been skipped
Qwen Code CI / Test-2 (push) Has been skipped
Qwen Code CI / Test-3 (push) Has been skipped
Qwen Code CI / Test-4 (push) Has been skipped
Qwen Code CI / Test-5 (push) Has been skipped
Qwen Code CI / Test-6 (push) Has been skipped
Qwen Code CI / Test-7 (push) Has been skipped
Qwen Code CI / Test-8 (push) Has been skipped
Qwen Code CI / CodeQL (push) Failing after 6s
E2E Tests / E2E Test (Linux) - sandbox:docker (push) Failing after 5s
Qwen Code CI / Post Coverage Comment (push) Has been skipped
E2E Tests / E2E Test (Linux) - sandbox:none (push) Failing after 10m36s
E2E Tests / E2E Test - macOS (push) Has been cancelled
* feat(storage): support configurable runtime output directory (#2014) Add `advanced.runtimeOutputDir` setting and `QWEN_RUNTIME_DIR` env var to redirect runtime output (temp files, debug logs, session data, todos, insights) to a custom directory while keeping config files at ~/.qwen. - Introduce `Storage.setRuntimeBaseDir()` / `getRuntimeBaseDir()` with tilde expansion and relative path resolution - Add `AsyncLocalStorage`-based `runWithRuntimeBaseDir()` for concurrent session isolation in ACP integration - Update all runtime path methods to use `getRuntimeBaseDir()` instead of `getGlobalQwenDir()` (temp, debug, ide, projects, history dirs) - Config paths (settings, oauth, installation_id, etc.) remain pinned to `~/.qwen` regardless of runtime dir configuration - Add comprehensive tests covering path resolution, env var priority, async context isolation, and config path stability * fix(core/storage): 支持 Windows 风格波浪号路径 扩展 setRuntimeBaseDir 以支持 Windows 风格的波浪号路径 (~\), 使用统一的路径分割逻辑处理 Unix 和 Windows 风格的路径分隔符 Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com> * fix(core/debugLogger): runtime base dir 变更时创建新 debug 目录 添加 ensuredDebugDirPath 追踪变量,当 runtime base dir 发生变更时, 确保在新的目录下创建 debug 子目录 Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com> * feat(cli/acp): 支持 ACP runtime output dir 配置 新增 runWithAcpRuntimeOutputDir 辅助函数,在 ACP Agent 的 loadSession 和 listSessions 操作中应用配置的 runtimeOutputDir Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com> * docs(vscode-ide-companion/acpConnection): 补充 this 别名的使用说明 为 self = this 的用法添加解释性注释,说明在嵌套回调中需要使用 this Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com> * feat(cli): add runtime output directory configuration support * fix(core): update test to use getUserSkillsDirs method Update storage.test.ts to call getUserSkillsDirs() instead of the non-existent getUserSkillsDir() method. The method was renamed to return an array of skill directories. * fix(core/todoWrite): use path.join for cross-platform path assertion in test Replace hardcoded forward-slash path `.qwen/todos/` with `path.join('.qwen', 'todos')` to fix Windows CI failure where paths use backslashes. Made-with: Cursor --------- Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
279 lines
8.4 KiB
TypeScript
279 lines
8.4 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Qwen
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { describe, it, expect, vi, beforeEach } from 'vitest';
|
|
import * as fs from 'node:fs/promises';
|
|
import * as os from 'node:os';
|
|
import * as path from 'node:path';
|
|
import { Session } from './Session.js';
|
|
import type { Config, GeminiChat } from '@qwen-code/qwen-code-core';
|
|
import { ApprovalMode, AuthType } from '@qwen-code/qwen-code-core';
|
|
import * as core from '@qwen-code/qwen-code-core';
|
|
import type {
|
|
AgentSideConnection,
|
|
PromptRequest,
|
|
} from '@agentclientprotocol/sdk';
|
|
import type { LoadedSettings } from '../../config/settings.js';
|
|
import * as nonInteractiveCliCommands from '../../nonInteractiveCliCommands.js';
|
|
|
|
vi.mock('../../nonInteractiveCliCommands.js', () => ({
|
|
getAvailableCommands: vi.fn(),
|
|
handleSlashCommand: vi.fn(),
|
|
}));
|
|
|
|
describe('Session', () => {
|
|
let mockChat: GeminiChat;
|
|
let mockConfig: Config;
|
|
let mockClient: AgentSideConnection;
|
|
let mockSettings: LoadedSettings;
|
|
let session: Session;
|
|
let currentModel: string;
|
|
let currentAuthType: AuthType;
|
|
let switchModelSpy: ReturnType<typeof vi.fn>;
|
|
let getAvailableCommandsSpy: ReturnType<typeof vi.fn>;
|
|
|
|
beforeEach(() => {
|
|
currentModel = 'qwen3-code-plus';
|
|
currentAuthType = AuthType.USE_OPENAI;
|
|
switchModelSpy = vi
|
|
.fn()
|
|
.mockImplementation(async (authType: AuthType, modelId: string) => {
|
|
currentAuthType = authType;
|
|
currentModel = modelId;
|
|
});
|
|
|
|
mockChat = {
|
|
sendMessageStream: vi.fn(),
|
|
addHistory: vi.fn(),
|
|
} as unknown as GeminiChat;
|
|
|
|
const toolRegistry = { getTool: vi.fn() };
|
|
const fileService = { shouldGitIgnoreFile: vi.fn().mockReturnValue(false) };
|
|
|
|
mockConfig = {
|
|
setApprovalMode: vi.fn(),
|
|
switchModel: switchModelSpy,
|
|
getModel: vi.fn().mockImplementation(() => currentModel),
|
|
getSessionId: vi.fn().mockReturnValue('test-session-id'),
|
|
getWorkingDir: vi.fn().mockReturnValue(process.cwd()),
|
|
getTelemetryLogPromptsEnabled: vi.fn().mockReturnValue(false),
|
|
getUsageStatisticsEnabled: vi.fn().mockReturnValue(false),
|
|
getContentGeneratorConfig: vi.fn().mockReturnValue(undefined),
|
|
getChatRecordingService: vi.fn().mockReturnValue({
|
|
recordUserMessage: vi.fn(),
|
|
recordUiTelemetryEvent: vi.fn(),
|
|
}),
|
|
getToolRegistry: vi.fn().mockReturnValue(toolRegistry),
|
|
getFileService: vi.fn().mockReturnValue(fileService),
|
|
getFileFilteringRespectGitIgnore: vi.fn().mockReturnValue(true),
|
|
getEnableRecursiveFileSearch: vi.fn().mockReturnValue(false),
|
|
getTargetDir: vi.fn().mockReturnValue(process.cwd()),
|
|
getDebugMode: vi.fn().mockReturnValue(false),
|
|
getAuthType: vi.fn().mockImplementation(() => currentAuthType),
|
|
} as unknown as Config;
|
|
|
|
mockClient = {
|
|
sessionUpdate: vi.fn().mockResolvedValue(undefined),
|
|
requestPermission: vi.fn().mockResolvedValue({
|
|
outcome: { outcome: 'selected', optionId: 'proceed_once' },
|
|
}),
|
|
extNotification: vi.fn().mockResolvedValue(undefined),
|
|
} as unknown as AgentSideConnection;
|
|
|
|
mockSettings = {
|
|
merged: {},
|
|
} as LoadedSettings;
|
|
|
|
getAvailableCommandsSpy = vi.mocked(nonInteractiveCliCommands)
|
|
.getAvailableCommands as unknown as ReturnType<typeof vi.fn>;
|
|
getAvailableCommandsSpy.mockResolvedValue([]);
|
|
|
|
session = new Session(
|
|
'test-session-id',
|
|
mockChat,
|
|
mockConfig,
|
|
mockClient,
|
|
mockSettings,
|
|
);
|
|
});
|
|
|
|
describe('setMode', () => {
|
|
it.each([
|
|
['plan', ApprovalMode.PLAN],
|
|
['default', ApprovalMode.DEFAULT],
|
|
['auto-edit', ApprovalMode.AUTO_EDIT],
|
|
['yolo', ApprovalMode.YOLO],
|
|
] as const)('maps %s mode', async (modeId, expected) => {
|
|
await session.setMode({
|
|
sessionId: 'test-session-id',
|
|
modeId,
|
|
});
|
|
|
|
expect(mockConfig.setApprovalMode).toHaveBeenCalledWith(expected);
|
|
});
|
|
});
|
|
|
|
describe('setModel', () => {
|
|
it('sets model via config and returns current model', async () => {
|
|
const requested = `qwen3-coder-plus(${AuthType.USE_OPENAI})`;
|
|
await session.setModel({
|
|
sessionId: 'test-session-id',
|
|
modelId: ` ${requested} `,
|
|
});
|
|
|
|
expect(mockConfig.switchModel).toHaveBeenCalledWith(
|
|
AuthType.USE_OPENAI,
|
|
'qwen3-coder-plus',
|
|
undefined,
|
|
);
|
|
});
|
|
|
|
it('rejects empty/whitespace model IDs', async () => {
|
|
await expect(
|
|
session.setModel({
|
|
sessionId: 'test-session-id',
|
|
modelId: ' ',
|
|
}),
|
|
).rejects.toThrow('Invalid params');
|
|
|
|
expect(mockConfig.switchModel).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('propagates errors from config.switchModel', async () => {
|
|
const configError = new Error('Invalid model');
|
|
switchModelSpy.mockRejectedValueOnce(configError);
|
|
|
|
await expect(
|
|
session.setModel({
|
|
sessionId: 'test-session-id',
|
|
modelId: `invalid-model(${AuthType.USE_OPENAI})`,
|
|
}),
|
|
).rejects.toThrow('Invalid model');
|
|
});
|
|
});
|
|
|
|
describe('sendAvailableCommandsUpdate', () => {
|
|
it('sends available_commands_update from getAvailableCommands()', async () => {
|
|
getAvailableCommandsSpy.mockResolvedValueOnce([
|
|
{
|
|
name: 'init',
|
|
description: 'Initialize project context',
|
|
},
|
|
]);
|
|
|
|
await session.sendAvailableCommandsUpdate();
|
|
|
|
expect(getAvailableCommandsSpy).toHaveBeenCalledWith(
|
|
mockConfig,
|
|
expect.any(AbortSignal),
|
|
);
|
|
expect(mockClient.sessionUpdate).toHaveBeenCalledWith({
|
|
sessionId: 'test-session-id',
|
|
update: {
|
|
sessionUpdate: 'available_commands_update',
|
|
availableCommands: [
|
|
{
|
|
name: 'init',
|
|
description: 'Initialize project context',
|
|
input: null,
|
|
},
|
|
],
|
|
},
|
|
});
|
|
});
|
|
|
|
it('swallows errors and does not throw', async () => {
|
|
getAvailableCommandsSpy.mockRejectedValueOnce(
|
|
new Error('Command discovery failed'),
|
|
);
|
|
|
|
await expect(
|
|
session.sendAvailableCommandsUpdate(),
|
|
).resolves.toBeUndefined();
|
|
expect(mockClient.sessionUpdate).not.toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
describe('prompt', () => {
|
|
it('passes resolved paths to read_many_files tool', async () => {
|
|
const tempDir = await fs.mkdtemp(
|
|
path.join(os.tmpdir(), 'qwen-acp-session-'),
|
|
);
|
|
const fileName = 'README.md';
|
|
const filePath = path.join(tempDir, fileName);
|
|
|
|
try {
|
|
await fs.writeFile(filePath, '# Test\n', 'utf8');
|
|
|
|
const readManyFilesSpy = vi
|
|
.spyOn(core, 'readManyFiles')
|
|
.mockResolvedValue({
|
|
contentParts: 'file content',
|
|
files: [],
|
|
});
|
|
|
|
mockConfig.getTargetDir = vi.fn().mockReturnValue(tempDir);
|
|
mockChat.sendMessageStream = vi
|
|
.fn()
|
|
.mockResolvedValue((async function* () {})());
|
|
|
|
const promptRequest: PromptRequest = {
|
|
sessionId: 'test-session-id',
|
|
prompt: [
|
|
{ type: 'text', text: 'Check this file' },
|
|
{
|
|
type: 'resource_link',
|
|
name: fileName,
|
|
uri: `file://${fileName}`,
|
|
},
|
|
],
|
|
};
|
|
|
|
await session.prompt(promptRequest);
|
|
|
|
expect(readManyFilesSpy).toHaveBeenCalledWith(mockConfig, {
|
|
paths: [fileName],
|
|
signal: expect.any(AbortSignal),
|
|
});
|
|
} finally {
|
|
await fs.rm(tempDir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
it('runs prompt inside runtime output dir context', async () => {
|
|
const runtimeDir = path.resolve('runtime', 'from-settings');
|
|
core.Storage.setRuntimeBaseDir(runtimeDir);
|
|
session = new Session(
|
|
'test-session-id',
|
|
mockChat,
|
|
mockConfig,
|
|
mockClient,
|
|
mockSettings,
|
|
);
|
|
const runWithRuntimeBaseDirSpy = vi.spyOn(
|
|
core.Storage,
|
|
'runWithRuntimeBaseDir',
|
|
);
|
|
|
|
mockChat.sendMessageStream = vi
|
|
.fn()
|
|
.mockResolvedValue((async function* () {})());
|
|
|
|
const promptRequest: PromptRequest = {
|
|
sessionId: 'test-session-id',
|
|
prompt: [{ type: 'text', text: 'hello' }],
|
|
};
|
|
|
|
await session.prompt(promptRequest);
|
|
|
|
expect(runWithRuntimeBaseDirSpy).toHaveBeenCalledWith(
|
|
runtimeDir,
|
|
process.cwd(),
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
});
|
|
});
|