-
Notifications
You must be signed in to change notification settings - Fork 9.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(editor): Add documentation link to insufficient quota message (#1…
- Loading branch information
1 parent
b8c7075
commit 1987363
Showing
4 changed files
with
156 additions
and
4 deletions.
There are no files selected for viewing
55 changes: 55 additions & 0 deletions
55
packages/@n8n/nodes-langchain/nodes/vendors/OpenAi/helpers/error-handling.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import { RateLimitError } from 'openai'; | ||
import { OpenAIError } from 'openai/error'; | ||
|
||
import { openAiFailedAttemptHandler, getCustomErrorMessage, isOpenAiError } from './error-handling'; | ||
|
||
describe('error-handling', () => { | ||
describe('getCustomErrorMessage', () => { | ||
it('should return the correct custom error message for known error codes', () => { | ||
expect(getCustomErrorMessage('insufficient_quota')).toBe( | ||
'Insufficient quota detected. <a href="https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-langchain.openai/common-issues/#insufficient-quota" target="_blank">Learn more</a> about resolving this issue', | ||
); | ||
expect(getCustomErrorMessage('rate_limit_exceeded')).toBe('OpenAI: Rate limit reached'); | ||
}); | ||
|
||
it('should return undefined for unknown error codes', () => { | ||
expect(getCustomErrorMessage('unknown_error_code')).toBeUndefined(); | ||
}); | ||
}); | ||
|
||
describe('isOpenAiError', () => { | ||
it('should return true if the error is an instance of OpenAIError', () => { | ||
const error = new OpenAIError('Test error'); | ||
expect(isOpenAiError(error)).toBe(true); | ||
}); | ||
|
||
it('should return false if the error is not an instance of OpenAIError', () => { | ||
const error = new Error('Test error'); | ||
expect(isOpenAiError(error)).toBe(false); | ||
}); | ||
}); | ||
|
||
describe('openAiFailedAttemptHandler', () => { | ||
it('should handle RateLimitError and modify the error message', () => { | ||
const error = new RateLimitError( | ||
429, | ||
{ code: 'rate_limit_exceeded' }, | ||
'Rate limit exceeded', | ||
{}, | ||
); | ||
|
||
try { | ||
openAiFailedAttemptHandler(error); | ||
} catch (e) { | ||
expect(e).toBe(error); | ||
expect(e.message).toBe('OpenAI: Rate limit reached'); | ||
} | ||
}); | ||
|
||
it('should throw the error if it is not a RateLimitError', () => { | ||
const error = new Error('Test error'); | ||
|
||
expect(() => openAiFailedAttemptHandler(error)).not.toThrow(); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
91 changes: 91 additions & 0 deletions
91
packages/editor-ui/src/components/NodeExecutionErrorMessage.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
import { describe, it, expect } from 'vitest'; | ||
import NodeExecutionErrorMessage from '@/components/NodeExecutionErrorMessage.vue'; | ||
import { createComponentRenderer } from '@/__tests__/render'; | ||
|
||
const renderComponent = createComponentRenderer(NodeExecutionErrorMessage); | ||
|
||
describe('NodeExecutionErrorMessage', () => { | ||
it('renders the component', () => { | ||
const { getByTestId } = renderComponent({ | ||
props: { | ||
nodeName: 'Test Node', | ||
errorMessage: 'An error occurred', | ||
}, | ||
}); | ||
expect(getByTestId('sanitized-error-message')).toHaveTextContent('An error occurred'); | ||
}); | ||
|
||
it('renders sanitized HTML in error message', () => { | ||
const { getByTestId } = renderComponent({ | ||
props: { | ||
nodeName: 'Test Node', | ||
errorMessage: | ||
'Insufficient quota detected. <a href="https://docs.n8n.io/" target="_blank">Learn more</a>', | ||
}, | ||
}); | ||
expect(getByTestId('sanitized-error-message')).toContainHTML( | ||
'Insufficient quota detected. <a href="https://docs.n8n.io/" target="_blank">Learn more</a>', | ||
); | ||
}); | ||
|
||
it('renders the link with the correct text', () => { | ||
const { getByText } = renderComponent({ | ||
props: { | ||
nodeName: 'Test Node', | ||
errorMessage: 'An error occurred', | ||
}, | ||
}); | ||
expect(getByText('Open node')).toBeTruthy(); | ||
}); | ||
|
||
it('renders the link with the correct data attributes', () => { | ||
const { getByText } = renderComponent({ | ||
props: { | ||
nodeName: 'Test Node', | ||
errorMessage: 'An error occurred', | ||
}, | ||
}); | ||
const link = getByText('Open node'); | ||
expect(link.getAttribute('data-action')).toBe('openNodeDetail'); | ||
expect(link.getAttribute('data-action-parameter-node')).toBe('Test Node'); | ||
}); | ||
|
||
it('does not render error message when it is not provided', () => { | ||
const { queryByText } = renderComponent({ | ||
props: { | ||
nodeName: 'Test Node', | ||
}, | ||
}); | ||
expect(queryByText('An error occurred')).not.toBeInTheDocument(); | ||
}); | ||
|
||
it('sanitizes malicious script in error message', () => { | ||
const { getByTestId } = renderComponent({ | ||
props: { | ||
nodeName: 'Test Node', | ||
errorMessage: '<img src=x onerror=alert(1)>', | ||
}, | ||
}); | ||
expect(getByTestId('sanitized-error-message')).toContainHTML('<img src="x">'); | ||
}); | ||
|
||
it('sanitizes malicious script in error message with nested tags', () => { | ||
const { getByTestId } = renderComponent({ | ||
props: { | ||
nodeName: 'Test Node', | ||
errorMessage: '<div><img src=x onerror=alert(1)></div>', | ||
}, | ||
}); | ||
expect(getByTestId('sanitized-error-message')).toContainHTML('<div><img src="x"></div>'); | ||
}); | ||
|
||
it('sanitizes malicious script in error message with script tag', () => { | ||
const { container } = renderComponent({ | ||
props: { | ||
nodeName: 'Test Node', | ||
errorMessage: '<script>alert(1)</script>', | ||
}, | ||
}); | ||
expect(container.querySelector('script')).not.toBeInTheDocument(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters