[ http://issues.apache.org/jira/browse/HARMONY-1040?page=all ]
Paulex Yang reopened HARMONY-1040:
----------------------------------
the original patch caused 2 security module tests fail
> [classlib][luni] java.net.URLStreamHandler.hostEquals should return true when two urls
have the same host ip.
> -------------------------------------------------------------------------------------------------------------
>
> Key: HARMONY-1040
> URL: http://issues.apache.org/jira/browse/HARMONY-1040
> Project: Harmony
> Issue Type: Bug
> Components: Classlib
> Reporter: Andrew Zhang
> Assigned To: Paulex Yang
> Attachments: luni.diff
>
>
> java.net.URLStreamHandler.hostEquals should return true when two urls have the same host
ip.
> Following test reproduces the bug:
> public void test_hostEquals() throws Exception {
> MockURLStreamHandler mockHandler = new MockURLStreamHandler();
> URL u1 = new URL("http://andrew1");
> URL u2 = new URL("http://andrew2");
> assertTrue(mockHandler.hostEquals(u1, u2));
> }
> Configure andrew1,andrew2 as the same ip in hosts file(i.e. /etc/hosts for linux and
WINDOWS\system32\drivers\etc for windows).
> The test passes against RI while fails against Harmony.
> I'll upload a patch to fix this problem soon.
> Thanks!
> Best regards,
> Andrew
--
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
|