You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Andrew Zhang (JIRA)" <ji...@apache.org> on 2006/08/02 04:11:13 UTC

[jira] Created: (HARMONY-1036) [classlib][nio] DatagramChannel.socket().receive/send should throw IllegalBlockingModeException when it is in non-blocking mode.

[classlib][nio] DatagramChannel.socket().receive/send should throw IllegalBlockingModeException when it is in non-blocking mode.
--------------------------------------------------------------------------------------------------------------------------------

                 Key: HARMONY-1036
                 URL: http://issues.apache.org/jira/browse/HARMONY-1036
             Project: Harmony
          Issue Type: Bug
          Components: Classlib
            Reporter: Andrew Zhang


DatagramChannel.socket().receive/send should throw IllegalBlockingModeException when it is in non-blocking mode. 

Following test reproduces the bug:

    public void test_channel_IllegalBlockingModeException() throws Exception {
        DatagramChannel channel = DatagramChannel.open();
        channel.configureBlocking(false);
        DatagramSocket socket = channel.socket();
        try {
            socket.send(null);
            fail("should throw IllegalBlockingModeException");
        } catch (IllegalBlockingModeException e) {
            // expected
        }
        try {
            socket.receive(null);
            fail("should throw IllegalBlockingModeException");
        } catch (IllegalBlockingModeException e) {
            // expected
        }
    }

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

        

[jira] Closed: (HARMONY-1036) [classlib][nio] DatagramChannel.socket().receive/send should throw IllegalBlockingModeException when it is in non-blocking mode.

Posted by "Paulex Yang (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-1036?page=all ]

Paulex Yang closed HARMONY-1036.
--------------------------------


Verified by Andrew.

> [classlib][nio] DatagramChannel.socket().receive/send should throw IllegalBlockingModeException when it is in non-blocking mode.
> --------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1036
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1036
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Andrew Zhang
>         Assigned To: Paulex Yang
>         Attachments: nio.diff
>
>
> DatagramChannel.socket().receive/send should throw IllegalBlockingModeException when it is in non-blocking mode. 
> Following test reproduces the bug:
>     public void test_channel_IllegalBlockingModeException() throws Exception {
>         DatagramChannel channel = DatagramChannel.open();
>         channel.configureBlocking(false);
>         DatagramSocket socket = channel.socket();
>         try {
>             socket.send(null);
>             fail("should throw IllegalBlockingModeException");
>         } catch (IllegalBlockingModeException e) {
>             // expected
>         }
>         try {
>             socket.receive(null);
>             fail("should throw IllegalBlockingModeException");
>         } catch (IllegalBlockingModeException e) {
>             // expected
>         }
>     }
> 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

        

[jira] Assigned: (HARMONY-1036) [classlib][nio] DatagramChannel.socket().receive/send should throw IllegalBlockingModeException when it is in non-blocking mode.

Posted by "Paulex Yang (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-1036?page=all ]

Paulex Yang reassigned HARMONY-1036:
------------------------------------

    Assignee: Paulex Yang

> [classlib][nio] DatagramChannel.socket().receive/send should throw IllegalBlockingModeException when it is in non-blocking mode.
> --------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1036
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1036
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Andrew Zhang
>         Assigned To: Paulex Yang
>         Attachments: nio.diff
>
>
> DatagramChannel.socket().receive/send should throw IllegalBlockingModeException when it is in non-blocking mode. 
> Following test reproduces the bug:
>     public void test_channel_IllegalBlockingModeException() throws Exception {
>         DatagramChannel channel = DatagramChannel.open();
>         channel.configureBlocking(false);
>         DatagramSocket socket = channel.socket();
>         try {
>             socket.send(null);
>             fail("should throw IllegalBlockingModeException");
>         } catch (IllegalBlockingModeException e) {
>             // expected
>         }
>         try {
>             socket.receive(null);
>             fail("should throw IllegalBlockingModeException");
>         } catch (IllegalBlockingModeException e) {
>             // expected
>         }
>     }
> 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

        

[jira] Resolved: (HARMONY-1036) [classlib][nio] DatagramChannel.socket().receive/send should throw IllegalBlockingModeException when it is in non-blocking mode.

Posted by "Paulex Yang (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-1036?page=all ]

Paulex Yang resolved HARMONY-1036.
----------------------------------

    Resolution: Fixed

Andrew, patch applied at revision r427892, thanks a lot for this enhancement, please verify that the problem is fully fixed as you expected.


> [classlib][nio] DatagramChannel.socket().receive/send should throw IllegalBlockingModeException when it is in non-blocking mode.
> --------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1036
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1036
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Andrew Zhang
>         Assigned To: Paulex Yang
>         Attachments: nio.diff
>
>
> DatagramChannel.socket().receive/send should throw IllegalBlockingModeException when it is in non-blocking mode. 
> Following test reproduces the bug:
>     public void test_channel_IllegalBlockingModeException() throws Exception {
>         DatagramChannel channel = DatagramChannel.open();
>         channel.configureBlocking(false);
>         DatagramSocket socket = channel.socket();
>         try {
>             socket.send(null);
>             fail("should throw IllegalBlockingModeException");
>         } catch (IllegalBlockingModeException e) {
>             // expected
>         }
>         try {
>             socket.receive(null);
>             fail("should throw IllegalBlockingModeException");
>         } catch (IllegalBlockingModeException e) {
>             // expected
>         }
>     }
> 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

        

[jira] Updated: (HARMONY-1036) [classlib][nio] DatagramChannel.socket().receive/send should throw IllegalBlockingModeException when it is in non-blocking mode.

Posted by "Andrew Zhang (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-1036?page=all ]

Andrew Zhang updated HARMONY-1036:
----------------------------------

    Attachment: nio.diff

Hi,

Would you please try my patch? 

Thanks!

Best regards,
Andrew

> [classlib][nio] DatagramChannel.socket().receive/send should throw IllegalBlockingModeException when it is in non-blocking mode.
> --------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1036
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1036
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Andrew Zhang
>         Attachments: nio.diff
>
>
> DatagramChannel.socket().receive/send should throw IllegalBlockingModeException when it is in non-blocking mode. 
> Following test reproduces the bug:
>     public void test_channel_IllegalBlockingModeException() throws Exception {
>         DatagramChannel channel = DatagramChannel.open();
>         channel.configureBlocking(false);
>         DatagramSocket socket = channel.socket();
>         try {
>             socket.send(null);
>             fail("should throw IllegalBlockingModeException");
>         } catch (IllegalBlockingModeException e) {
>             // expected
>         }
>         try {
>             socket.receive(null);
>             fail("should throw IllegalBlockingModeException");
>         } catch (IllegalBlockingModeException e) {
>             // expected
>         }
>     }
> 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

        

[jira] Commented: (HARMONY-1036) [classlib][nio] DatagramChannel.socket().receive/send should throw IllegalBlockingModeException when it is in non-blocking mode.

Posted by "Andrew Zhang (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/HARMONY-1036?page=comments#action_12425164 ] 
            
Andrew Zhang commented on HARMONY-1036:
---------------------------------------

Hi Paulex,

The fix looks fine. Thanks!

Best regards,
Andrew

> [classlib][nio] DatagramChannel.socket().receive/send should throw IllegalBlockingModeException when it is in non-blocking mode.
> --------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1036
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1036
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Andrew Zhang
>         Assigned To: Paulex Yang
>         Attachments: nio.diff
>
>
> DatagramChannel.socket().receive/send should throw IllegalBlockingModeException when it is in non-blocking mode. 
> Following test reproduces the bug:
>     public void test_channel_IllegalBlockingModeException() throws Exception {
>         DatagramChannel channel = DatagramChannel.open();
>         channel.configureBlocking(false);
>         DatagramSocket socket = channel.socket();
>         try {
>             socket.send(null);
>             fail("should throw IllegalBlockingModeException");
>         } catch (IllegalBlockingModeException e) {
>             // expected
>         }
>         try {
>             socket.receive(null);
>             fail("should throw IllegalBlockingModeException");
>         } catch (IllegalBlockingModeException e) {
>             // expected
>         }
>     }
> 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