Description
Is your feature request related to a problem? Please describe.
As part of the CI workflow for PRs (etc) would it be possible to validate the regex patterns or dom selectors ?
In the past we've found that upstream of AliasIO we encountered invalid regex patterns added to the technology files, or invalid selectors.
The two "normal" cases seemed to be:
- when a regex contained curly braces which either weren't matched in a repetition declaration or when they weren't escaped.
- when a dom selector had unbalanced single or double quotes.
There are plenty of other things that can make a regex or dom selector invalid, it would be good to catch and fix these early.
Describe the solution you'd like
I believe this could be added to the existing Python based validation. In Java a pattern can be compiled (Pattern.compile(String)) at which point an exception would be thrown if invalid. We also came up with something similar for DOM selectors. I assume something similar can be done with Python.
Describe alternatives you've considered
- Live with the errors and correct them as they're noticed.
Additional context
Not sure what else to say here. Mainly I was thinking that catching potential errors as close to introduction as possible would be the easiest way to address/prevent them.
Activity