1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
|
/*
* Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* 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.
*/
import java.io.Reader;
import java.io.StringReader;
import java.io.IOException;
import java.io.StringWriter;
import java.nio.ByteBuffer;
import java.nio.CharBuffer;
import java.nio.ReadOnlyBufferException;
import org.testng.annotations.*;
import static org.testng.Assert.*;
/*
* @test
* @bug 8341566
* @summary Check for expected behavior of Reader.of().
* @run testng Of
*/
public class Of {
final static String CONTENT = "Some Reader Test";
/*
* Readers to be tested.
*/
@DataProvider
public static Reader[] readers() {
return new Reader[] {
new StringReader(CONTENT),
Reader.of(CONTENT),
Reader.of(new StringBuffer(CONTENT)),
Reader.of(new StringBuilder(CONTENT)),
Reader.of(ByteBuffer.allocateDirect(CONTENT.length() * 2)
.asCharBuffer().put(CONTENT).flip()),
Reader.of(CharBuffer.wrap(CONTENT.toCharArray())),
Reader.of(new CharSequence() {
@Override
public char charAt(int index) {
return CONTENT.charAt(index);
}
@Override
public int length() {
return CONTENT.length();
}
@Override
public CharSequence subSequence(int start, int end) {
// unused by Reader.Of's result
throw new UnsupportedOperationException();
}
@Override
public String toString() {
// Reader.Of's result SHALL NOT convert to String
throw new UnsupportedOperationException();
}
})
};
}
@Test(dataProvider = "readers")
public void testRead(Reader reader) throws IOException {
String s = "";
for (int c; (c = reader.read()) != -1; s += (char) c);
assertEquals(s, CONTENT, "read() returned wrong value");
}
@Test(dataProvider = "readers")
public void testReadBII(Reader reader) throws IOException {
char[] c = new char[16];
assertEquals(reader.read(c, 8, 8), 8,
"read(char[],int,int) does not respect given start or end");
assertEquals(reader.read(c, 0, 16), 8,
"read(char[],int,int) does not respect end of stream");
assertEquals(new String(c),
CONTENT.substring(8, 16) + CONTENT.substring(0, 8),
"read(char[],int,int) provides wrong content");
}
@Test(dataProvider = "readers")
public void testReadBIILenZero(Reader reader) throws IOException {
assertEquals(reader.read(new char[1], 0, 0), 0,
"read(char[],int,int) != 0");
}
@Test(dataProvider = "readers")
public void testReadDirectCharBuffer(Reader reader) throws IOException {
CharBuffer charBuffer = ByteBuffer.allocateDirect(32).asCharBuffer();
charBuffer.position(8);
assertEquals(reader.read(charBuffer), 8,
"read(CharBuffer) does not respect position or limit");
charBuffer.rewind();
assertEquals(reader.read(charBuffer), 8,
"read(CharBuffer) does not respect end of stream");
charBuffer.rewind();
assertEquals(charBuffer.toString(),
// last part first proofs that copy loops correctly stopped
CONTENT.substring(8, 16) + CONTENT.substring(0, 8),
"read(CharBuffer) provides wrong content");
}
@Test(dataProvider = "readers")
public void testReadNonDirectCharBuffer(Reader reader) throws IOException {
CharBuffer charBuffer = CharBuffer.allocate(16);
charBuffer.position(8);
assertEquals(reader.read(charBuffer), 8,
"read(CharBuffer) does not respect position or limit");
charBuffer.rewind();
assertEquals(reader.read(charBuffer), 8,
"read(CharBuffer) does not respect end of stream");
charBuffer.rewind();
assertEquals(charBuffer.toString(),
CONTENT.substring(8, 16) + CONTENT.substring(0, 8),
"read(CharBuffer) provides wrong content");
}
@Test(dataProvider = "readers")
public void testReadCharBufferZeroRemaining(Reader reader) throws IOException {
CharBuffer charBuffer = CharBuffer.allocate(0);
assertEquals(reader.read(charBuffer), 0, "read(CharBuffer) != 0");
}
@Test(dataProvider = "readers")
public void testReady(Reader reader) throws IOException {
assertTrue(reader.ready());
}
@Test(dataProvider = "readers")
public void testSkip(Reader reader) throws IOException {
assertEquals(reader.skip(8), 8, "skip() does not respect limit");
assertEquals(reader.skip(9), 8, "skip() does not respect end of stream");
assertEquals(reader.skip(1), 0, "skip() does not respect empty stream");
}
@Test(dataProvider = "readers")
public void testTransferTo(Reader reader) throws IOException {
StringWriter sw = new StringWriter(16);
assertEquals(reader.transferTo(sw), 16, "transferTo() != 16");
assertEquals(reader.transferTo(sw), 0,
"transferTo() does not respect empty stream");
assertEquals(sw.toString(), CONTENT,
"transferTo() provides wrong content");
}
@Test(dataProvider = "readers")
public void testReadClosed(Reader reader) throws IOException {
reader.close();
assertThrows(IOException.class, () -> {reader.read();});
}
@Test(dataProvider = "readers")
public void testReadBIIClosed(Reader reader) throws IOException {
reader.close();
assertThrows(IOException.class, () -> reader.read(new char[1], 0, 1));
}
@Test(dataProvider = "readers")
public void testReadCharBufferClosed(Reader reader) throws IOException {
CharBuffer charBuffer = CharBuffer.allocate(1);
reader.close();
assertThrows(IOException.class, () -> reader.read(charBuffer));
}
@Test(dataProvider = "readers")
public void testReadCharBufferZeroRemainingClosed(Reader reader) throws IOException {
CharBuffer charBuffer = CharBuffer.allocate(0);
reader.close();
assertThrows(IOException.class, () -> reader.read(charBuffer));
}
@Test(dataProvider = "readers")
public void testReadyClosed(Reader reader) throws IOException {
reader.close();
assertThrows(IOException.class, () -> reader.ready());
}
@Test(dataProvider = "readers")
public void testSkipClosed(Reader reader) throws IOException {
reader.close();
assertThrows(IOException.class, () -> reader.skip(1));
}
@Test(dataProvider = "readers")
public void testTransferToClosed(Reader reader) throws IOException {
reader.close();
assertThrows(IOException.class, () -> reader.transferTo(new StringWriter(1)));
}
@Test(dataProvider = "readers")
public void testCloseClosed(Reader reader) throws IOException {
reader.close();
reader.close();
}
}
|