< prev index next >

test/java/nio/channels/ServerSocketChannel/NonBlockingAccept.java

Print this page




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 4801882 5046333
  26  * @summary test ServerSocketAdaptor.accept on nonblocking channel
  27  * @library ..
  28  * @build TestUtil
  29  * @run main NonBlockingAccept

  30  */
  31 
  32 import java.io.*;
  33 import java.net.*;
  34 import java.nio.*;
  35 import java.nio.channels.*;
  36 
  37 
  38 public class NonBlockingAccept {
  39 
  40     public static void main(String[] args) throws Exception {
  41 
  42         ServerSocketChannel ssc = ServerSocketChannel.open();
  43         InetSocketAddress isa = TestUtil.bindToRandomPort(ssc);
  44         ssc.configureBlocking(false);
  45         ServerSocket ss = ssc.socket();
  46 
  47         // Exception should be thrown when no connection is waiting
  48         try {
  49             ss.accept();


  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 4801882 5046333
  26  * @summary test ServerSocketAdaptor.accept on nonblocking channel
  27  * @library ..
  28  * @build TestUtil
  29  * @run main NonBlockingAccept
  30  * @key randomness
  31  */
  32 
  33 import java.io.*;
  34 import java.net.*;
  35 import java.nio.*;
  36 import java.nio.channels.*;
  37 
  38 
  39 public class NonBlockingAccept {
  40 
  41     public static void main(String[] args) throws Exception {
  42 
  43         ServerSocketChannel ssc = ServerSocketChannel.open();
  44         InetSocketAddress isa = TestUtil.bindToRandomPort(ssc);
  45         ssc.configureBlocking(false);
  46         ServerSocket ss = ssc.socket();
  47 
  48         // Exception should be thrown when no connection is waiting
  49         try {
  50             ss.accept();
< prev index next >