mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-20 02:51:55 -07:00
146 lines
4.5 KiB
TypeScript
146 lines
4.5 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { describe, it, expect, vi, beforeEach, afterEach } from 'vitest';
|
|
import * as fs from 'node:fs';
|
|
import * as path from 'node:path';
|
|
import * as os from 'node:os';
|
|
import { resolveWorkspacePolicyState } from './policy.js';
|
|
import { writeToStderr } from '@google/gemini-cli-core';
|
|
|
|
// Mock debugLogger to avoid noise in test output
|
|
vi.mock('@google/gemini-cli-core', async (importOriginal) => {
|
|
const actual =
|
|
await importOriginal<typeof import('@google/gemini-cli-core')>();
|
|
return {
|
|
...actual,
|
|
debugLogger: {
|
|
warn: vi.fn(),
|
|
error: vi.fn(),
|
|
debug: vi.fn(),
|
|
},
|
|
writeToStderr: vi.fn(),
|
|
};
|
|
});
|
|
|
|
describe('resolveWorkspacePolicyState', () => {
|
|
let tempDir: string;
|
|
let workspaceDir: string;
|
|
let policiesDir: string;
|
|
|
|
beforeEach(() => {
|
|
// Create a temporary directory for the test
|
|
tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'gemini-cli-test-'));
|
|
// Redirect GEMINI_CLI_HOME to the temp directory to isolate integrity storage
|
|
vi.stubEnv('GEMINI_CLI_HOME', tempDir);
|
|
|
|
workspaceDir = path.join(tempDir, 'workspace');
|
|
fs.mkdirSync(workspaceDir);
|
|
policiesDir = path.join(workspaceDir, '.gemini', 'policies');
|
|
|
|
vi.clearAllMocks();
|
|
});
|
|
|
|
afterEach(() => {
|
|
// Clean up temporary directory
|
|
fs.rmSync(tempDir, { recursive: true, force: true });
|
|
vi.unstubAllEnvs();
|
|
});
|
|
|
|
it('should return empty state if folder is not trusted', async () => {
|
|
const result = await resolveWorkspacePolicyState({
|
|
cwd: workspaceDir,
|
|
trustedFolder: false,
|
|
interactive: true,
|
|
});
|
|
|
|
expect(result).toEqual({
|
|
workspacePoliciesDir: undefined,
|
|
policyUpdateConfirmationRequest: undefined,
|
|
});
|
|
});
|
|
|
|
it('should return policy directory if integrity matches', async () => {
|
|
// Set up policies directory with a file
|
|
fs.mkdirSync(policiesDir, { recursive: true });
|
|
fs.writeFileSync(path.join(policiesDir, 'policy.toml'), 'rules = []');
|
|
|
|
// First call to establish integrity (interactive accept)
|
|
const firstResult = await resolveWorkspacePolicyState({
|
|
cwd: workspaceDir,
|
|
trustedFolder: true,
|
|
interactive: true,
|
|
});
|
|
expect(firstResult.policyUpdateConfirmationRequest).toBeDefined();
|
|
|
|
// Establish integrity manually as if accepted
|
|
const { PolicyIntegrityManager } = await import('@google/gemini-cli-core');
|
|
const integrityManager = new PolicyIntegrityManager();
|
|
await integrityManager.acceptIntegrity(
|
|
'workspace',
|
|
workspaceDir,
|
|
firstResult.policyUpdateConfirmationRequest!.newHash,
|
|
);
|
|
|
|
// Second call should match
|
|
const result = await resolveWorkspacePolicyState({
|
|
cwd: workspaceDir,
|
|
trustedFolder: true,
|
|
interactive: true,
|
|
});
|
|
|
|
expect(result.workspacePoliciesDir).toBe(policiesDir);
|
|
expect(result.policyUpdateConfirmationRequest).toBeUndefined();
|
|
});
|
|
|
|
it('should return undefined if integrity is NEW but fileCount is 0', async () => {
|
|
const result = await resolveWorkspacePolicyState({
|
|
cwd: workspaceDir,
|
|
trustedFolder: true,
|
|
interactive: true,
|
|
});
|
|
|
|
expect(result.workspacePoliciesDir).toBeUndefined();
|
|
expect(result.policyUpdateConfirmationRequest).toBeUndefined();
|
|
});
|
|
|
|
it('should return confirmation request if changed in interactive mode', async () => {
|
|
fs.mkdirSync(policiesDir, { recursive: true });
|
|
fs.writeFileSync(path.join(policiesDir, 'policy.toml'), 'rules = []');
|
|
|
|
const result = await resolveWorkspacePolicyState({
|
|
cwd: workspaceDir,
|
|
trustedFolder: true,
|
|
interactive: true,
|
|
});
|
|
|
|
expect(result.workspacePoliciesDir).toBeUndefined();
|
|
expect(result.policyUpdateConfirmationRequest).toEqual({
|
|
scope: 'workspace',
|
|
identifier: workspaceDir,
|
|
policyDir: policiesDir,
|
|
newHash: expect.any(String),
|
|
});
|
|
});
|
|
|
|
it('should warn and auto-accept if changed in non-interactive mode', async () => {
|
|
fs.mkdirSync(policiesDir, { recursive: true });
|
|
fs.writeFileSync(path.join(policiesDir, 'policy.toml'), 'rules = []');
|
|
|
|
const result = await resolveWorkspacePolicyState({
|
|
cwd: workspaceDir,
|
|
trustedFolder: true,
|
|
interactive: false,
|
|
});
|
|
|
|
expect(result.workspacePoliciesDir).toBe(policiesDir);
|
|
expect(result.policyUpdateConfirmationRequest).toBeUndefined();
|
|
expect(writeToStderr).toHaveBeenCalledWith(
|
|
expect.stringContaining('Automatically accepting and loading'),
|
|
);
|
|
});
|
|
});
|