mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-06-08 18:12:52 -07:00
78 lines
2.7 KiB
TypeScript
78 lines
2.7 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2026 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { describe, it, expect, beforeEach, vi } from 'vitest';
|
|
import { Config } from './config.js';
|
|
import * as path from 'node:path';
|
|
import * as os from 'node:os';
|
|
|
|
vi.mock('node:fs', async (importOriginal) => {
|
|
const actual = await importOriginal<typeof import('node:fs')>();
|
|
return {
|
|
...actual,
|
|
existsSync: vi.fn().mockReturnValue(true),
|
|
statSync: vi.fn().mockReturnValue({
|
|
isDirectory: vi.fn().mockReturnValue(true),
|
|
}),
|
|
realpathSync: vi.fn((p) => p),
|
|
};
|
|
});
|
|
|
|
vi.mock('../utils/paths.js', async (importOriginal) => {
|
|
const actual = await importOriginal<typeof import('../utils/paths.js')>();
|
|
return {
|
|
...actual,
|
|
resolveToRealPath: vi.fn((p) => p),
|
|
isSubpath: (parent: string, child: string) => child.startsWith(parent),
|
|
};
|
|
});
|
|
|
|
describe('Config Path Validation', () => {
|
|
let config: Config;
|
|
const targetDir = '/mock/workspace';
|
|
const globalGeminiDir = path.join(os.homedir(), '.gemini');
|
|
|
|
beforeEach(() => {
|
|
config = new Config({
|
|
targetDir,
|
|
sessionId: 'test-session',
|
|
debugMode: false,
|
|
cwd: targetDir,
|
|
model: 'test-model',
|
|
});
|
|
});
|
|
|
|
it('should allow access to a file under ~/.gemini once that directory is added to the workspace', () => {
|
|
// Use settings.json rather than GEMINI.md as the example: the latter is
|
|
// now reachable via a surgical isPathAllowed allowlist regardless of
|
|
// workspace membership (covered by dedicated tests in config.test.ts), so
|
|
// it can no longer demonstrate the workspace-addition semantic on its
|
|
// own. settings.json is NOT on the allowlist, so it preserves the
|
|
// original "denied -> add to workspace -> allowed" flow this test was
|
|
// written to verify, and additionally double-asserts the least-privilege
|
|
// guarantee that the allowlist does not leak access to other files
|
|
// under ~/.gemini/.
|
|
const settingsPath = path.join(globalGeminiDir, 'settings.json');
|
|
|
|
// Before adding, it should be denied
|
|
expect(config.isPathAllowed(settingsPath)).toBe(false);
|
|
|
|
// Add to workspace
|
|
config.getWorkspaceContext().addDirectory(globalGeminiDir);
|
|
|
|
// Now it should be allowed
|
|
expect(config.isPathAllowed(settingsPath)).toBe(true);
|
|
expect(config.validatePathAccess(settingsPath, 'read')).toBeNull();
|
|
expect(config.validatePathAccess(settingsPath, 'write')).toBeNull();
|
|
});
|
|
|
|
it('should still allow project workspace paths', () => {
|
|
const workspacePath = path.join(targetDir, 'src/index.ts');
|
|
expect(config.isPathAllowed(workspacePath)).toBe(true);
|
|
expect(config.validatePathAccess(workspacePath, 'read')).toBeNull();
|
|
});
|
|
});
|