blob: 8edb9099e8af657d8704245557830b1ac3ddfef5 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 2001 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
20 * CA 95054 USA or visit www.sun.com if you need additional information or
21 * have any questions.
22 */
23
24/*
25 * @test 1.1 01/09/19
26 * @bug 4511404
27 * @summary Check that a broken pipe error doesn't throw an exception
28 * indicating the socket is closed.
29 */
30import java.io.*;
31import java.net.*;
32
33public class BrokenPipe {
34
35 private static class Closer implements Runnable {
36 private final Socket s;
37
38 Closer(Socket s) {
39 this.s = s;
40 }
41
42 public void run() {
43 try {
44 /* gives time for 'write' to block */
45 Thread.sleep(5000);
46 s.close();
47 } catch (Exception e) {
48 e.printStackTrace();
49 }
50 }
51 }
52
53 public static void main(String[] args) throws Exception {
54 ServerSocket ss = new ServerSocket(0);
55 Socket client = new Socket(InetAddress.getLocalHost(),
56 ss.getLocalPort());
57 Socket server = ss.accept();
58 ss.close();
59 new Thread(new Closer(server)).start();
60
61 try {
62 client.getOutputStream().write(new byte[1000000]);
63 } catch (IOException ioe) {
64
65 /*
66 * Check that the exception text doesn't indicate the
67 * socket is closed. In tiger we should be able to
68 * replace this by catching a more specific exception.
69 */
70 String text = ioe.getMessage();
71 if (text.toLowerCase().indexOf("closed") >= 0) {
72 throw ioe;
73 }
74 }
75 server.close();
76 }
77
78}