Path: blob/master/test/jdk/java/io/Writer/WriteParams.java
41152 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/*24* @test25* @bug 412765726* @summary Check for correct handling of parameters to27* XXXXWriter.write(b, off, len).28*29*/3031import java.io.*;3233public class WriteParams {34static int values[] = {Integer.MIN_VALUE, -1, 0, 1, 4, 16, 31,3532, 33, Integer.MAX_VALUE};36static char b[][] = {null, new char[32]};3738static void test(Writer wtr) throws Exception {39int 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] + values[k]) < 0)50|| (values[j] < 0)51|| (values[j] > bufLen)52|| (values[k] < 0)53|| ((values[j] + values[k]) > bufLen);5455try {56wtr.write(b[i], values[j], values[k]);57} catch (NullPointerException e) {58if (!nullPtr) {59throw new Exception60("should not throw NullPointerException");61}62continue;63} catch (IndexOutOfBoundsException e) {64if (!indexOutBnd) {65throw new Exception66("should not throw IndexOutOfBoundsException");67}68continue;69}7071if (nullPtr || indexOutBnd) {72throw new Exception("Should have thrown an exception");73}74}75}76}77}7879public static void main(String args[]) throws Exception{80StringWriter sw = new StringWriter();8182test(sw);8384test(new BufferedWriter(sw));8586test(new CharArrayWriter());8788test(new OutputStreamWriter(System.err));8990test(new PipedWriter(new PipedReader()));91}92}939495