Path: blob/master/test/jdk/java/io/CharArrayReader/Constructor.java
41149 views
/*1* Copyright (c) 1998, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*/2223/* @test24@bug 4140445 414045125@summary Test if constructor will check for illegal26arguments.27*/28293031import java.io.*;3233public class Constructor {34public static void main(String argv[]) throws Exception {35int values[] = {Integer.MIN_VALUE, -1, 0, 1, 4, 16, 31,3632, 33, Integer.MAX_VALUE};37char b[][] = {null, new char[32]};3839int i = 0, j = 0, k = 0;40boolean nullPtr = false, indexOutBnd = false;4142for (i = 0; i < b.length; i++) {43for ( j = 0; j < values.length; j++) {44for ( k = 0; k < values.length; k++) {4546nullPtr = (b[i] == null);4748int bufLen = nullPtr ? 0 : b[i].length;49indexOutBnd = (values[j] < 0)50|| (values[j] > bufLen)51|| (values[k] < 0)52|| ((values[j] + values[k]) < 0);5354try {55CharArrayReader rdr = new CharArrayReader56(b[i], values[j], values[k]);57} catch (NullPointerException e) {58if (!nullPtr) {59throw new Exception60("should not throw NullPointerException");61}62continue;63} catch (IllegalArgumentException e) {64if (!indexOutBnd) {65throw new Exception66("should not throw IllegalArgumentException");67}68continue;69}7071if (nullPtr || indexOutBnd) {72throw new Exception("Failed to detect illegal argument");73}74}75}76}77}78}798081