Sync upstream Gemini-CLI v0.8.2 (#838)

This commit is contained in:
tanzhenxin
2025-10-23 09:27:04 +08:00
committed by GitHub
parent 096fabb5d6
commit eb95c131be
644 changed files with 70389 additions and 23709 deletions

View File

@@ -7,6 +7,20 @@
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';
import * as vscode from 'vscode';
import { activate } from './extension.js';
import {
IDE_DEFINITIONS,
detectIdeFromEnv,
} from '@qwen-code/qwen-code-core/src/ide/detect-ide.js';
vi.mock('@qwen-code/qwen-code-core/src/ide/detect-ide.js', async () => {
const actual = await vi.importActual(
'@qwen-code/qwen-code-core/src/ide/detect-ide.js',
);
return {
...actual,
detectIdeFromEnv: vi.fn(() => IDE_DEFINITIONS.vscode),
};
});
vi.mock('vscode', () => ({
window: {
@@ -32,6 +46,7 @@ vi.mock('vscode', () => ({
onDidCloseTextDocument: vi.fn(),
registerTextDocumentContentProvider: vi.fn(),
onDidChangeWorkspaceFolders: vi.fn(),
onDidGrantWorkspaceTrust: vi.fn(),
},
commands: {
registerCommand: vi.fn(),
@@ -49,12 +64,18 @@ vi.mock('vscode', () => ({
fire: vi.fn(),
dispose: vi.fn(),
})),
extensions: {
getExtension: vi.fn(),
},
}));
describe('activate', () => {
let context: vscode.ExtensionContext;
beforeEach(() => {
vi.mocked(vscode.window.showInformationMessage).mockResolvedValue(
undefined,
);
context = {
subscriptions: [],
environmentVariableCollection: {
@@ -67,6 +88,11 @@ describe('activate', () => {
extensionUri: {
fsPath: '/path/to/extension',
},
extension: {
packageJSON: {
version: '1.1.0',
},
},
} as unknown as vscode.ExtensionContext;
});
@@ -79,6 +105,9 @@ describe('activate', () => {
.mocked(vscode.window.showInformationMessage)
.mockResolvedValue(undefined as never);
vi.mocked(context.globalState.get).mockReturnValue(undefined);
vi.mocked(vscode.extensions.getExtension).mockReturnValue({
packageJSON: { version: '1.1.0' },
} as vscode.Extension<unknown>);
await activate(context);
expect(showInformationMessageMock).toHaveBeenCalledWith(
'Qwen Code Companion extension successfully installed.',
@@ -87,22 +116,177 @@ describe('activate', () => {
it('should not show the info message on subsequent activations', async () => {
vi.mocked(context.globalState.get).mockReturnValue(true);
vi.mocked(vscode.extensions.getExtension).mockReturnValue({
packageJSON: { version: '1.1.0' },
} as vscode.Extension<unknown>);
await activate(context);
expect(vscode.window.showInformationMessage).not.toHaveBeenCalled();
});
it('should launch Qwen Code when the user clicks the button', async () => {
it('should register a handler for onDidGrantWorkspaceTrust', async () => {
await activate(context);
expect(vscode.workspace.onDidGrantWorkspaceTrust).toHaveBeenCalled();
});
it('should launch the Qwen Code when the user clicks the button', async () => {
const showInformationMessageMock = vi
.mocked(vscode.window.showInformationMessage)
.mockResolvedValue('Run Qwen Code' as never);
vi.mocked(context.globalState.get).mockReturnValue(undefined);
vi.mocked(vscode.extensions.getExtension).mockReturnValue({
packageJSON: { version: '1.1.0' },
} as vscode.Extension<unknown>);
await activate(context);
expect(showInformationMessageMock).toHaveBeenCalled();
await new Promise(process.nextTick); // Wait for the promise to resolve
const commandCallback = vi
.mocked(vscode.commands.registerCommand)
.mock.calls.find((call) => call[0] === 'qwen-code.runQwenCode')?.[1];
expect(showInformationMessageMock).toHaveBeenCalledWith(
'Qwen Code Companion extension successfully installed.',
);
});
expect(commandCallback).toBeDefined();
describe('update notification', () => {
beforeEach(() => {
// Prevent the "installed" message from showing
vi.mocked(context.globalState.get).mockReturnValue(true);
});
it('should show an update notification if a newer version is available', async () => {
vi.spyOn(global, 'fetch').mockResolvedValue({
ok: true,
json: async () => ({
results: [
{
extensions: [
{
versions: [{ version: '1.2.0' }],
},
],
},
],
}),
} as Response);
const showInformationMessageMock = vi.mocked(
vscode.window.showInformationMessage,
);
await activate(context);
expect(showInformationMessageMock).toHaveBeenCalledWith(
'A new version (1.2.0) of the Qwen Code Companion extension is available.',
'Update to latest version',
);
});
it('should not show an update notification if the version is the same', async () => {
vi.spyOn(global, 'fetch').mockResolvedValue({
ok: true,
json: async () => ({
results: [
{
extensions: [
{
versions: [{ version: '1.1.0' }],
},
],
},
],
}),
} as Response);
const showInformationMessageMock = vi.mocked(
vscode.window.showInformationMessage,
);
await activate(context);
expect(showInformationMessageMock).not.toHaveBeenCalled();
});
it.each([
{
ide: IDE_DEFINITIONS.cloudshell,
},
{ ide: IDE_DEFINITIONS.firebasestudio },
])('does not show the notification for $ide.name', async ({ ide }) => {
vi.mocked(detectIdeFromEnv).mockReturnValue(ide);
vi.mocked(context.globalState.get).mockReturnValue(undefined);
const showInformationMessageMock = vi.mocked(
vscode.window.showInformationMessage,
);
await activate(context);
expect(showInformationMessageMock).not.toHaveBeenCalled();
});
it('should not show an update notification if the version is older', async () => {
vi.spyOn(global, 'fetch').mockResolvedValue({
ok: true,
json: async () => ({
results: [
{
extensions: [
{
versions: [{ version: '1.0.0' }],
},
],
},
],
}),
} as Response);
const showInformationMessageMock = vi.mocked(
vscode.window.showInformationMessage,
);
await activate(context);
expect(showInformationMessageMock).not.toHaveBeenCalled();
});
it('should execute the install command when the user clicks "Update"', async () => {
vi.spyOn(global, 'fetch').mockResolvedValue({
ok: true,
json: async () => ({
results: [
{
extensions: [
{
versions: [{ version: '1.2.0' }],
},
],
},
],
}),
} as Response);
vi.mocked(vscode.window.showInformationMessage).mockResolvedValue(
'Update to latest version' as never,
);
const executeCommandMock = vi.mocked(vscode.commands.executeCommand);
await activate(context);
// Wait for the promise from showInformationMessage.then() to resolve
await new Promise(process.nextTick);
expect(executeCommandMock).toHaveBeenCalledWith(
'workbench.extensions.installExtension',
'qwenlm.qwen-code-vscode-ide-companion',
);
});
it('should handle fetch errors gracefully', async () => {
vi.spyOn(global, 'fetch').mockResolvedValue({
ok: false,
statusText: 'Internal Server Error',
} as Response);
const showInformationMessageMock = vi.mocked(
vscode.window.showInformationMessage,
);
await activate(context);
expect(showInformationMessageMock).not.toHaveBeenCalled();
});
});
});