| |
| |
| |
| |
| |
|
|
| import { describe, it, expect } from 'vitest'; |
| import { TestRig, printDebugInfo, validateModelOutput } from './test-helper.js'; |
|
|
| describe('file-system', () => { |
| it('should be able to read a file', async () => { |
| const rig = new TestRig(); |
| await rig.setup('should be able to read a file'); |
| rig.createFile('test.txt', 'hello world'); |
|
|
| const result = await rig.run( |
| `read the file test.txt and show me its contents`, |
| ); |
|
|
| const foundToolCall = await rig.waitForToolCall('read_file'); |
|
|
| |
| if (!foundToolCall || !result.includes('hello world')) { |
| printDebugInfo(rig, result, { |
| 'Found tool call': foundToolCall, |
| 'Contains hello world': result.includes('hello world'), |
| }); |
| } |
|
|
| expect( |
| foundToolCall, |
| 'Expected to find a read_file tool call', |
| ).toBeTruthy(); |
|
|
| |
| validateModelOutput(result, 'hello world', 'File read test'); |
| }); |
|
|
| it('should be able to write a file', async () => { |
| const rig = new TestRig(); |
| await rig.setup('should be able to write a file'); |
| rig.createFile('test.txt', ''); |
|
|
| const result = await rig.run(`edit test.txt to have a hello world message`); |
|
|
| |
| const foundToolCall = await rig.waitForAnyToolCall([ |
| 'write_file', |
| 'edit', |
| 'replace', |
| ]); |
|
|
| |
| if (!foundToolCall) { |
| printDebugInfo(rig, result); |
| } |
|
|
| expect( |
| foundToolCall, |
| 'Expected to find a write_file, edit, or replace tool call', |
| ).toBeTruthy(); |
|
|
| |
| validateModelOutput(result, null, 'File write test'); |
|
|
| const fileContent = rig.readFile('test.txt'); |
|
|
| |
| if (!fileContent.toLowerCase().includes('hello')) { |
| const writeCalls = rig |
| .readToolLogs() |
| .filter((t) => t.toolRequest.name === 'write_file') |
| .map((t) => t.toolRequest.args); |
|
|
| printDebugInfo(rig, result, { |
| 'File content mismatch': true, |
| 'Expected to contain': 'hello', |
| 'Actual content': fileContent, |
| 'Write tool calls': JSON.stringify(writeCalls), |
| }); |
| } |
|
|
| expect( |
| fileContent.toLowerCase().includes('hello'), |
| 'Expected file to contain hello', |
| ).toBeTruthy(); |
|
|
| |
| if (process.env['VERBOSE'] === 'true') { |
| console.log('File written successfully with hello message.'); |
| } |
| }); |
| }); |
|
|