mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-07 08:26:51 +00:00
63 lines
1.4 KiB
TypeScript
63 lines
1.4 KiB
TypeScript
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
|
|
export const window = {
|
|
showInformationMessage: vi.fn(),
|
|
showErrorMessage: vi.fn(),
|
|
}
|
|
|
|
export const env = {
|
|
openExternal: vi.fn(),
|
|
}
|
|
|
|
export const Uri = {
|
|
parse: vi.fn((uri: string) => ({ toString: () => uri })),
|
|
}
|
|
|
|
export const commands = {
|
|
executeCommand: vi.fn().mockResolvedValue(undefined),
|
|
}
|
|
|
|
export interface ExtensionContext {
|
|
secrets: {
|
|
get: (key: string) => Promise<string | undefined>
|
|
store: (key: string, value: string) => Promise<void>
|
|
delete: (key: string) => Promise<void>
|
|
onDidChange: (listener: (e: { key: string }) => void) => {
|
|
dispose: () => void
|
|
}
|
|
}
|
|
globalState: {
|
|
get: <T>(key: string) => T | undefined
|
|
update: (key: string, value: any) => Promise<void>
|
|
}
|
|
subscriptions: any[]
|
|
extension?: {
|
|
packageJSON?: {
|
|
version?: string
|
|
publisher?: string
|
|
name?: string
|
|
}
|
|
}
|
|
}
|
|
|
|
// Mock implementation for tests
|
|
export const mockExtensionContext: ExtensionContext = {
|
|
secrets: {
|
|
get: vi.fn().mockResolvedValue(undefined),
|
|
store: vi.fn().mockResolvedValue(undefined),
|
|
delete: vi.fn().mockResolvedValue(undefined),
|
|
onDidChange: vi.fn().mockReturnValue({ dispose: vi.fn() }),
|
|
},
|
|
globalState: {
|
|
get: vi.fn().mockReturnValue(undefined),
|
|
update: vi.fn().mockResolvedValue(undefined),
|
|
},
|
|
subscriptions: [],
|
|
extension: {
|
|
packageJSON: {
|
|
version: "1.0.0",
|
|
publisher: "RooVeterinaryInc",
|
|
name: "roo-cline",
|
|
},
|
|
},
|
|
}
|