-
-
Notifications
You must be signed in to change notification settings - Fork 23.6k
fix(components): add missing regex handler to Condition node #5651
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
fix(components): add missing regex handler to Condition node #5651
Conversation
The Condition agentflow node's Regex operation was not functional because compareOperationFunctions was missing the regex handler. Changes: - Added regex handler with unescapeRegexPattern helper function - Handles Flowise's escaping of regex metacharacters - Gracefully returns false for invalid regex patterns - Added 22 unit tests Fixes FlowiseAI#5650
Summary of ChangesHello @Aadil-Hasun, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request addresses a critical missing feature in the Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request successfully adds the missing regex operation to the Condition node, including a comprehensive set of unit tests. The implementation correctly handles escaped characters from the Flowise UI and gracefully manages invalid regex patterns. My review includes a few suggestions to improve the implementation's correctness and robustness, as well as enhance the consistency and completeness of the new tests. Specifically, I've pointed out a potential bug in the regex unescaping logic and suggested improvements to the test structure and assertions.
| const unescapeRegexPattern = (escaped: string): string => { | ||
| return escaped | ||
| .replace(/\\\\/g, '\0') // Preserve intentional backslashes (\\) | ||
| .replace(/\\([[\].*+?^${}()|])/g, '$1') // Unescape all regex metacharacters |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The set of metacharacters being unescaped here is too broad and can cause incorrect regex evaluation. According to the provided tests and description, Flowise only escapes [, ], and \. This implementation, however, unescapes many other metacharacters like ., *, +, ?, etc. This would cause a pattern like \. (intended to match a literal dot) to become ., which matches any character.
The unescaping should be restricted to only [ and ], as \ is already handled by the surrounding replace calls.
| .replace(/\\([[\].*+?^${}()|])/g, '$1') // Unescape all regex metacharacters | |
| .replace(/\([[\]])/g, '$1') // Unescape only brackets, as other metachars aren't escaped by Flowise |
| { type: 'string', value1: null, operation: 'regex', value2: 'test' } | ||
| ] | ||
| const result = await nodeClass.run(createConditionNodeData('test-null', conditions), '', { agentflowRuntime: { state: {} } }) | ||
| expect(result.output.conditions[0].isFulfilled).toBeUndefined() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| { type: 'string', value1: 'Hello', operation: 'regex', value2: 'hello' } | ||
| ] | ||
| const result = await nodeClass.run(createConditionNodeData('test-case', conditions), '', { agentflowRuntime: { state: {} } }) | ||
| expect(result.output.conditions[0].isFulfilled).toBeUndefined() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|
|
||
| it('should handle ^ (start anchor)', async () => { | ||
| const conditions = [{ type: 'string', value1: 'hello world', operation: 'regex', value2: '^hello' }] | ||
| const result = await new Condition_Agentflow().run(createConditionNodeData('test-caret', conditions), '', { agentflowRuntime: { state: {} } }) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For consistency with the other test suites in this file, please use the nodeClass instance created in the beforeEach block instead of creating a new Condition_Agentflow instance in each test. This should be applied to all tests within the 'Complex regex patterns - all metacharacters' describe block.
const result = await nodeClass.run(createConditionNodeData('test-caret', conditions), '', { agentflowRuntime: { state: {} } })- Move unescapeRegexPattern to module level for performance - Restrict unescaping to only [, ], * (verified by UI testing) - Use nodeClass from beforeEach in all tests for consistency - Add else condition assertions for non-matching tests - Add test for escaped asterisk
Summary
Fixes #5650 - The Regex operation in Condition node was not implemented.
Changes
Flowise/packages/components/nodes/agentflow/Condition/Condition.ts:277:12-297:13) handler to
compareOperationFunctionsFlowise/packages/components/nodes/agentflow/Condition/Condition.ts:278:16-288:17) helper to handle Flowise's escaping of metacharacters
falsefor invalid regex patterns (no crashes)Test Coverage
^ $ [ ] . * + ? { } ( ) |Known Limitation
Patterns matching markdown link syntax may be affected by existing
removeMarkdownpreprocessing.