jdk/test/sun/nio/cs/ReadZero.java
author ohair
Tue, 28 Dec 2010 15:53:50 -0800
changeset 7668 d4a77089c587
parent 5970 d4e98bbfb0be
permissions -rw-r--r--
6962318: Update copyright year Reviewed-by: xdono
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
796
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
     1
/*
7668
d4a77089c587 6962318: Update copyright year
ohair
parents: 5970
diff changeset
     2
 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
796
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
     4
 *
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
     7
 * published by the Free Software Foundation.
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
     8
 *
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    13
 * accompanied this code).
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    14
 *
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 796
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 796
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 796
diff changeset
    21
 * questions.
796
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    22
 */
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    23
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    24
/* @test
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    25
 * @summary Verify that if InputStream.read returns 0 we throw an exception.
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    26
 * @bug 4684515
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    27
 */
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    28
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    29
import java.io.*;
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    30
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    31
public class ReadZero {
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    32
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    33
    public static void main(String [] args) throws IOException {
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    34
        ReadZero r = new ReadZero();
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    35
        r.testInputStream();
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    36
    }
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    37
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    38
    private void testInputStream() throws IOException {
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    39
        File f = new File(System.getProperty("test.src", "."), "ReadZero.java");
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    40
        InputStream is = new FileInputStream(f) {
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    41
            public int read(byte [] b, int off, int len) {
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    42
                System.out.println("FileInputStream.read");
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    43
                return 0;
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    44
            }
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    45
        };
5970
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5506
diff changeset
    46
        try {
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5506
diff changeset
    47
            is.read(new byte[1], 0, 1); // ok
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5506
diff changeset
    48
            InputStreamReader isr = new InputStreamReader(is);
796
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    49
5970
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5506
diff changeset
    50
            try {
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5506
diff changeset
    51
                int res = isr.read(new char[1], 0, 1);
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5506
diff changeset
    52
            } catch (IOException x) {
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5506
diff changeset
    53
                System.out.println("IOException caught");
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5506
diff changeset
    54
                return;
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5506
diff changeset
    55
            }
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5506
diff changeset
    56
        } finally {
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5506
diff changeset
    57
            is.close();
796
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    58
        }
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    59
        throw new RuntimeException("IOException not thrown");
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    60
    }
2c3db720c065 6675856: Open charset tests
sherman
parents:
diff changeset
    61
}