/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 1267039 1267043 4193729
* @summary Check for correct handling of parameters to
* XXXXOutputStream.write(b, off, len).
*
*/
public class WriteParams {
/* check for correct handling of different values of off and len */
boolean results[] = { false, false, false, false, false, false,
true, true, false, true, true, true, false,
false, false, false, false, false};
byte b[] = new byte[32];
int numBad = 0;
for(int i = 0; i < numCases; i++) {
try {
} catch (IndexOutOfBoundsException aiobe) {
if (results[i]) {
numBad++;
} else {
/* System.err.println("PassE: " + off[i] + " " + len[i]); */
}
continue;
} catch (OutOfMemoryError ome) {
"\nb.length = 32");
numBad++;
continue;
}
if (!results[i]) {
numBad++;
} else {
/* System.err.println("Pass: " + off[i] + " " + len[i]); */
}
}
if (numBad > 0) {
} else {
}
}
/* check for correct handling of null b */
byte b[] = null;
try {
} catch (NullPointerException npe) {
return;
}
}
/* initialise stuff here */
for (int i = 0; i < 32; i++) {
}
byte b[] = new byte[64];
for(int i = 0; i < 64; i++) {
b[i] = 1;
}
/* test for different output streams */
new BufferedOutputStream(new MyOutputStream());
/* cleanup */
}
}
/* An OutputStream class used in the above tests */
public MyOutputStream() {
}
}
}