You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Vera Petrashkova (JIRA)" <ji...@apache.org> on 2007/02/02 06:54:06 UTC

[jira] Updated: (HARMONY-62) java.text.BreakIterator.getSentenceInstance().next() treats '\n' as the end of the sentence

     [ https://issues.apache.org/jira/browse/HARMONY-62?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Vera Petrashkova updated HARMONY-62:
------------------------------------

    Attachment: getSentenceInstance_check.java

It looks like there is the same issues in behavior of  BreakIterator.getSentenceInstance().next() method 
when the used text contains the combinations of the following symbols:
            ".", "!", "?"
In these cases next() returns results which are differ from RI results.

Test getSentenceInstance_check demonstrates this problem.
Output is:
-----------------
."What's the matter?.."
F.I was pretty shaken up!..
F."...I was pretty shaken up..." - he sad.
F
Time: 0.625
There were 3 failures:
1) test1(getSentenceInstance_check)junit.framework.AssertionFailedError: Incorrect result
expected:<22> but was:<19>
        at getSentenceInstance_check.test1(getSentenceInstance_check.java:12)
        at java.lang.reflect.VMReflection.invokeMethod(Native Method)
2) test2(getSentenceInstance_check)junit.framework.AssertionFailedError: Incorrect result
expected:<25> but was:<23>
        at getSentenceInstance_check.test2(getSentenceInstance_check.java:20)
        at java.lang.reflect.VMReflection.invokeMethod(Native Method)
3) test3(getSentenceInstance_check)junit.framework.AssertionFailedError: Incorrect result
expected:<40> but was:<2>
        at getSentenceInstance_check.test3(getSentenceInstance_check.java:29)
        at java.lang.reflect.VMReflection.invokeMethod(Native Method)

FAILURES!!!
Tests run: 3,  Failures: 3,  Errors: 0

This issue causes the failure of reliability test
       api.text.getSentenceInstance_check

> java.text.BreakIterator.getSentenceInstance().next() treats '\n' as the end of the sentence
> -------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-62
>                 URL: https://issues.apache.org/jira/browse/HARMONY-62
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: tatyana doubtsova
>         Attachments: getSentenceInstance_check.java
>
>
> Problem details:
> java.text.BreakIterator.getSentenceInstance().next() stops searching for the sentence end, if the new-line character is found in the text and returns the index of the last seen non white space character. Due to j2se 1.4.2 method next() should return the boundary following the current boundary.
> Code for reproducing Test.java:
> import java.text.BreakIterator;
> public class Test {
>     public static void main(String [] args)
>     {
>     	BreakIterator it = BreakIterator.getSentenceInstance();
>     	it.setText("One sentence \n on two lines.");
>     	System.out.println(it.next());
>     }
> }
> Steps to Reproduce:
> 1. Build Harmony (check-out on 2006-01-30) j2se subset as described in README.txt.
> 2. Compile Test.java using BEA 1.4 javac
> > javac -d . Test.java
> 3. Run java using compatible VM (J9)
> > java -showversion Test
> Output:
> java version 1.4.2 (subset)
> (c) Copyright 1991, 2005 The Apache Software Foundation or its licensors, as applicable.
> 14
> Output on BEA 1.4.2 to compare with:
> 28
> Suggested junit test case:
> package org.apache.harmony.tests.java.text;
> import java.text.BreakIterator;
> import java.util.Locale;
> import junit.framework.TestCase;
> public class BreakIteratorTest extends TestCase {
> 	public void test_next() {
> 		// Regression test for HARMONY-30
> 		BreakIterator bi = BreakIterator.getWordInstance(Locale.US);
> 		bi.setText("This is the test, WordInstance");
> 		int n = bi.first();
> 		n = bi.next();
> 		assertEquals("Assert 0: next() returns incorrect value ", 4, n); 
> 		// Regression test for the current issue
> 	   	bi = BreakIterator.getSentenceInstance();
>     		bi.setText("One sentence \n on two lines.");
> 		n = bi.next();
> 		assertEquals("Assert 1: next() returns incorrect value ", 28, n);
> 	}
> }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.