Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 79 additions & 0 deletions packages/components/src/followUpPrompts.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
import { afterEach, beforeEach, describe, expect, it, jest } from '@jest/globals'

const mockInvoke = jest.fn<() => Promise<{ questions: string[] }>>()
const mockWithStructuredOutput = jest.fn(() => ({ invoke: mockInvoke }))

jest.mock('@langchain/anthropic', () => ({
ChatAnthropic: jest.fn()
}))

jest.mock('@langchain/google-genai', () => ({
ChatGoogleGenerativeAI: jest.fn()
}))

jest.mock('@langchain/mistralai', () => ({
ChatMistralAI: jest.fn()
}))

jest.mock('@langchain/openai', () => ({
ChatOpenAI: jest.fn(() => ({ withStructuredOutput: mockWithStructuredOutput })),
AzureChatOpenAI: jest.fn()
}))

jest.mock('@langchain/groq', () => ({
ChatGroq: jest.fn()
}))

jest.mock('ollama', () => ({
Ollama: jest.fn()
}))

jest.mock('./utils', () => ({
getCredentialData: jest.fn()
}))

import { getCredentialData } from './utils'
import { FollowUpPromptProvider } from './Interface'
import { generateFollowUpPrompts } from './followUpPrompts'

describe('generateFollowUpPrompts retry classification', () => {
beforeEach(() => {
jest.clearAllMocks()
jest.mocked(getCredentialData).mockResolvedValue({ openAIApiKey: 'openai-key' })
})

afterEach(() => {
jest.useRealTimers()
})

it('retries an Axios-style 504 error', async () => {
jest.useFakeTimers()
const gatewayTimeoutError = Object.assign(new Error('Request failed with status code 504'), {
status: 504,
statusCode: 504,
response: { status: 504 }
})
mockInvoke.mockRejectedValueOnce(gatewayTimeoutError).mockResolvedValueOnce({ questions: ['What happened next?'] })

const result = generateFollowUpPrompts(
{
status: true,
selectedProvider: FollowUpPromptProvider.OPENAI,
[FollowUpPromptProvider.OPENAI]: {
credentialId: 'cred-1',
modelName: 'gpt-4o-mini',
prompt: 'Generate follow-ups for {history}',
temperature: '0'
}
} as any,
'hello',
{}
)

await jest.advanceTimersByTimeAsync(500)

await expect(result).resolves.toEqual({ questions: ['What happened next?'] })

expect(mockInvoke).toHaveBeenCalledTimes(2)
})
})
Loading