You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Nikolay Kuznetsov (JIRA)" <ji...@apache.org> on 2006/07/03 17:22:30 UTC

[jira] Updated: (HARMONY-730) java.util.regex.MatcherResult.group() throws unexpected IllegalStateException

     [ http://issues.apache.org/jira/browse/HARMONY-730?page=all ]

Nikolay Kuznetsov updated HARMONY-730:
--------------------------------------

    Attachment: matchResult.patch

This one is simple. The matchResult copy created with toMatchResult method does contain array of region bounds, but misses match result's state(successful match or not).

Fix attached.

> java.util.regex.MatcherResult.group() throws unexpected IllegalStateException
> -----------------------------------------------------------------------------
>
>          Key: HARMONY-730
>          URL: http://issues.apache.org/jira/browse/HARMONY-730
>      Project: Harmony
>         Type: Bug

>   Components: Classlib
>     Reporter: Richard Liang
>  Attachments: matchResult.patch
>
> Hello,
> java.util.regex.MatchResult.group() throws unexpected IllegalStateException. According to the spec toMatchResult() 'Returns the match state of this matcher as a MatchResult. The result is unaffected by subsequent operations performed upon this matcher.' But, when invoking query methods on harmony MatchResult, IllegalStateException will be thrown out.
> The following test case will pass on RI, but fail on Harmony.
> public void test_toMatchResult() {
>         Pattern pattern = Pattern.compile("\\p{Lower}+");
>         Matcher matcher = pattern.matcher("test");
>         assertTrue(matcher.matches());
>         assertEquals("test", matcher.toMatchResult().group());
> }
> Best regards,
> Richard

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira