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.
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.
packages/components/nodes/agentflow/Condition/Condition.test.ts
Outdated
Show resolved
Hide resolved
packages/components/nodes/agentflow/Condition/Condition.test.ts
Outdated
Show resolved
Hide resolved
packages/components/nodes/agentflow/Condition/Condition.test.ts
Outdated
Show resolved
Hide resolved
- 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.