Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.3.2
-
None
-
New
Description
I was writing some unit tests for our own wrapper around the Lucene regex classes, and got tripped up by something interesting.
The regex "cat." will match "cats" but also anything with "cat" and 1+ following letters (e.g. "cathy", "catcher", ...) It is as if there is an implicit .* always added to the end of the regex.
Here's a unit test for the behaviour I would expect myself:
@Test
public void testNecessity() throws Exception {
File dir = new File(new File(System.getProperty("java.io.tmpdir")), "index");
IndexWriter writer = new IndexWriter(dir, new StandardAnalyzer(), true);
try
finally
{ writer.close(); } IndexReader reader = IndexReader.open(dir);
try
finally
{ reader.close(); }}
This test fails on the term check with terms.term() equal to "cathy".
Our workaround is to mangle the query like this:
String fixed = String.format("(?:%s)$", original);