Are there tools out there to measure code coverage of regexes? A tool that given a regex and a list of input strings, tells you which parts of the regex are exercised, with measures analogous to statement coverage, branch coverage, condition coverage, etc.

I don't care much what language or environment it runs in.

(Update: after some more thought, I was realizing that it's pretty easy to start with a regex and generate various exemplars. There are some tools out there to do this: http://research.microsoft.com/en-us/projects/rex/ , http://code.google.com/p/xeger/ ). They don't seem to try to get full coverage, though; they just take random paths through the DFA.)

link|improve this question
You must have some doozies of regexes if this has your attention. How big are they (length) and what are you doing with them? ( I have something similar as sets of token descriptions for langauge front ends, so this caught my attention). – Ira Baxter Sep 5 '10 at 13:58
This comes up in the context of a heuristic used on an open-ended set of human-created input documents. It's difficult to feel confident about the implementation in those situations, so I figure anything that can raise my confidence level is worth investigating. – Steven Ourada Sep 5 '10 at 15:32
Re update: you don't want to test your regexes by generating paths through them, from the regexes. That won't demonstrate anything except that one can enumerate the paths through a regex, and I doubt if there's any disagreement about this. – Ira Baxter Sep 6 '10 at 2:48
What I was thinking with that was that if you generate 'enough' exemplars, then verify by hand that each fits your specification, then you have a pretty good list of test inputs to start with. For a suitable definition of 'enough'... – Steven Ourada Sep 6 '10 at 3:02
If you generate your exemplars from the regexes themselves, by definition they will match but that doesn't tell you anything about whether the regexes are useful for your specified task. "Don't test the code, test the requirements" – Ira Baxter Sep 7 '10 at 7:32
show 5 more comments
feedback

2 Answers

Regex Buddy - It allows you to open a testfile and run it against your regex and show you matches etc. It's pretty cheap considering how useful it is.

link|improve this answer
I was going to suggest that too, but for debugging, RegexBuddy gives you a "merely" visual aid (which is perfect for debugging a regex), and since those debug trees can be thousands and thousands of lines long (and do not measure anything except the overall steps necessary to match or fail), I'm not sure that's what he needs. Definitely try it, though. – Tim Pietzcker Sep 5 '10 at 4:38
It looks like an interesting tool, but yeah, probably not exactly what I meant. I'll come back to it if I don't find any spot-on answers. – Steven Ourada Sep 5 '10 at 15:35
It's probably the sort of tool you want lying around if you're doing anything complex with regexes. – Tikhon Jelvis Sep 15 '10 at 7:21
feedback

Try program "The Regex Coach"

link|improve this answer
Thanks for the pointer. It's an interesting tool, but doesn't do coverage, specifically, as far as I can see on the site. – Steven Ourada Sep 18 '10 at 19:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.