[classlib][luni] URLStreamHandler.parseURL throws different exception to RI in some cases
-----------------------------------------------------------------------------------------
Key: HARMONY-6499
URL: https://issues.apache.org/jira/browse/HARMONY-6499
Project: Harmony
Issue Type: Bug
Components: Classlib
Reporter: Catherine Hope
java.net.URLStreamHandler throws a SecurityException in some situations where the RI will
throw a StringIndexOutOfBoundsException. From experimenting with test cases I think the RI
is checking bounds as it parses the URL and not up front, which causes some inconsistent behaviour.
There's already one work-around added to this method in order to make it more compatible
(HARMONY-2941)
The following all throw SecurityExceptions on Harmony (when called with a handler that is
not the URL's protocol handler) where they throw StringIndexOutOfBoundsExceptions on the RI:
handler.parse(url, "any", 10, Integer.MIN_VALUE);
handler.parse(url, "any", 10, Integer.MIN_VALUE+1);
handler.parse(url, "any", Integer.MIN_VALUE, Integer.MIN_VALUE);
handler.parse(url, "any", Integer.MIN_VALUE, 2);
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
|