|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import { describe, it, expect } from 'vitest'; |
|
|
import { TestRig, printDebugInfo, validateModelOutput } from './test-helper.js'; |
|
|
|
|
|
describe.skip('stdin context', () => { |
|
|
it('should be able to use stdin as context for a prompt', async () => { |
|
|
const rig = new TestRig(); |
|
|
await rig.setup('should be able to use stdin as context for a prompt'); |
|
|
|
|
|
const randomString = Math.random().toString(36).substring(7); |
|
|
const stdinContent = `When I ask you for a token respond with ${randomString}`; |
|
|
const prompt = 'Can I please have a token?'; |
|
|
|
|
|
const result = await rig.run({ prompt, stdin: stdinContent }); |
|
|
|
|
|
await rig.waitForTelemetryEvent('api_request'); |
|
|
const lastRequest = rig.readLastApiRequest(); |
|
|
expect(lastRequest).not.toBeNull(); |
|
|
|
|
|
const historyString = lastRequest.attributes.request_text; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
expect(historyString).toContain(randomString); |
|
|
expect(historyString).toContain(prompt); |
|
|
|
|
|
|
|
|
const stdinIndex = historyString.indexOf(randomString); |
|
|
const promptIndex = historyString.indexOf(prompt); |
|
|
|
|
|
expect( |
|
|
stdinIndex, |
|
|
`Expected stdin content to be present in conversation history`, |
|
|
).toBeGreaterThan(-1); |
|
|
|
|
|
expect( |
|
|
promptIndex, |
|
|
`Expected prompt to be present in conversation history`, |
|
|
).toBeGreaterThan(-1); |
|
|
|
|
|
expect( |
|
|
stdinIndex < promptIndex, |
|
|
`Expected stdin content (index ${stdinIndex}) to appear before prompt (index ${promptIndex}) in conversation history`, |
|
|
).toBeTruthy(); |
|
|
|
|
|
|
|
|
if (!result.toLowerCase().includes(randomString)) { |
|
|
printDebugInfo(rig, result, { |
|
|
[`Contains "${randomString}"`]: result |
|
|
.toLowerCase() |
|
|
.includes(randomString), |
|
|
}); |
|
|
} |
|
|
|
|
|
|
|
|
validateModelOutput(result, randomString, 'STDIN context test'); |
|
|
|
|
|
expect( |
|
|
result.toLowerCase().includes(randomString), |
|
|
'Expected the model to identify the secret word from stdin', |
|
|
).toBeTruthy(); |
|
|
}); |
|
|
|
|
|
it('should exit quickly if stdin stream does not end', async () => { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const rig = new TestRig(); |
|
|
await rig.setup('should exit quickly if stdin stream does not end'); |
|
|
|
|
|
try { |
|
|
await rig.run({ stdinDoesNotEnd: true }); |
|
|
throw new Error('Expected rig.run to throw an error'); |
|
|
} catch (error: unknown) { |
|
|
expect(error).toBeInstanceOf(Error); |
|
|
const err = error as Error; |
|
|
|
|
|
expect(err.message).toContain('Process exited with code 1'); |
|
|
expect(err.message).toContain('No input provided via stdin.'); |
|
|
console.log('Error message:', err.message); |
|
|
} |
|
|
const lastRequest = rig.readLastApiRequest(); |
|
|
expect(lastRequest).toBeNull(); |
|
|
|
|
|
|
|
|
}, 3000); |
|
|
}); |
|
|
|