Path: blob/master/test/jdk/java/nio/channels/Channels/ShortWrite.java
41152 views
/*1* Copyright (c) 2008, 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 644845725* @summary Test Channels.newOutputStream returns OutputStream that handles26* short writes from the underlying channel27* @key randomness28*/2930import java.io.OutputStream;31import java.io.IOException;32import java.nio.ByteBuffer;33import java.nio.channels.*;34import java.util.Random;3536public class ShortWrite {3738static Random rand = new Random();39static int bytesWritten = 0;4041public static void main(String[] args) throws IOException {4243WritableByteChannel wbc = new WritableByteChannel() {44public int write(ByteBuffer src) {45int rem = src.remaining();46if (rem > 0) {47// short write48int n = rand.nextInt(rem) + 1;49src.position(src.position() + n);50bytesWritten += n;51return n;52} else {53return 0;54}55}56public void close() throws IOException {57throw new RuntimeException("not implemented");58}59public boolean isOpen() {60throw new RuntimeException("not implemented");61}62};6364// wrap Channel with OutputStream65OutputStream out = Channels.newOutputStream(wbc);666768// write 100, 99, 98, ... 169// and check that the expected number of bytes is written70int expected = 0;71byte[] buf = new byte[100];72for (int i=0; i<buf.length; i++) {73int len = buf.length-i;74out.write(buf, i, len);75expected += len;76}77System.out.format("Bytes written: %d, expected: %d\n", bytesWritten,78expected);79if (bytesWritten != expected)80throw new RuntimeException("incorrect number of bytes written");8182}83}848586