mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-02-01 22:48:03 +00:00
66 lines
1.9 KiB
TypeScript
66 lines
1.9 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { describe, it, expect, beforeEach, afterEach } from 'vitest';
|
|
import { TestRig } from './test-helper.js';
|
|
|
|
describe('mixed input crash prevention', () => {
|
|
let rig: TestRig;
|
|
|
|
beforeEach(() => {
|
|
rig = new TestRig();
|
|
});
|
|
|
|
afterEach(async () => await rig.cleanup());
|
|
|
|
it('should not crash when using mixed prompt inputs', async () => {
|
|
rig.setup('should not crash when using mixed prompt inputs');
|
|
|
|
// Test: echo "say '1'." | gemini --prompt-interactive="say '2'." say '3'.
|
|
const stdinContent = "say '1'.";
|
|
|
|
try {
|
|
await rig.run({
|
|
args: ['--prompt-interactive', "say '2'.", "say '3'."],
|
|
stdin: stdinContent,
|
|
});
|
|
throw new Error('Expected the command to fail, but it succeeded');
|
|
} catch (error: unknown) {
|
|
expect(error).toBeInstanceOf(Error);
|
|
const err = error as Error;
|
|
|
|
expect(err.message).toContain('Process exited with code 42');
|
|
expect(err.message).toContain(
|
|
'--prompt-interactive flag cannot be used when input is piped',
|
|
);
|
|
expect(err.message).not.toContain('setRawMode is not a function');
|
|
expect(err.message).not.toContain('unexpected critical error');
|
|
}
|
|
|
|
const lastRequest = rig.readLastApiRequest();
|
|
expect(lastRequest).toBeNull();
|
|
});
|
|
|
|
it('should provide clear error message for mixed input', async () => {
|
|
rig.setup('should provide clear error message for mixed input');
|
|
|
|
try {
|
|
await rig.run({
|
|
args: ['--prompt-interactive', 'test prompt'],
|
|
stdin: 'test input',
|
|
});
|
|
throw new Error('Expected the command to fail, but it succeeded');
|
|
} catch (error: unknown) {
|
|
expect(error).toBeInstanceOf(Error);
|
|
const err = error as Error;
|
|
|
|
expect(err.message).toContain(
|
|
'--prompt-interactive flag cannot be used when input is piped',
|
|
);
|
|
}
|
|
});
|
|
});
|