use of org.apache.derbyTesting.functionTests.util.streams.LoopingAlphabetReader in project derby by apache.
the class UTF8UtilTest method testSkipUntilEOFOnShortStreamCJK.
public void testSkipUntilEOFOnShortStreamCJK() throws IOException {
final int charLength = 5;
InputStream in = new ReaderToUTF8Stream(new LoopingAlphabetReader(charLength, CharAlphabet.cjkSubset()), charLength, 0, TYPENAME, new CharStreamHeaderGenerator());
// Skip encoded length added by ReaderToUTF8Stream.
in.skip(HEADER_LENGTH);
assertEquals(charLength, UTF8Util.skipUntilEOF(in));
}
use of org.apache.derbyTesting.functionTests.util.streams.LoopingAlphabetReader in project derby by apache.
the class UTF8UtilTest method testSkipFullyOnTooShortStreamCJK.
/**
* Tests that <code>skipFully</code> throws exception if the stream contains
* less characters than the requested number of characters to skip.
*
* @throws IOException if the test fails for some unexpected reason
*/
public void testSkipFullyOnTooShortStreamCJK() throws IOException {
final int charLength = 161019;
InputStream in = new ReaderToUTF8Stream(new LoopingAlphabetReader(charLength, CharAlphabet.cjkSubset()), charLength, 0, TYPENAME, new ClobStreamHeaderGenerator(true));
// Skip encoded length added by ReaderToUTF8Stream.
in.skip(HEADER_LENGTH);
try {
UTF8Util.skipFully(in, charLength + 100);
fail("Should have failed because of too short stream.");
} catch (EOFException eofe) {
// As expected, do nothing.
}
}
use of org.apache.derbyTesting.functionTests.util.streams.LoopingAlphabetReader in project derby by apache.
the class UTF8UtilTest method testMixedSkipOnStreamTamil.
/**
* Tests a sequence of skip calls.
*/
public void testMixedSkipOnStreamTamil() throws IOException {
final int charLength = 161019;
InputStream in = new ReaderToUTF8Stream(new LoopingAlphabetReader(charLength, CharAlphabet.tamil()), charLength, 0, TYPENAME, new CharStreamHeaderGenerator());
// Skip encoded length added by ReaderToUTF8Stream.
in.skip(HEADER_LENGTH);
int firstSkip = 10078;
assertEquals(firstSkip * 3, UTF8Util.skipFully(in, firstSkip));
assertEquals(charLength - firstSkip, UTF8Util.skipUntilEOF(in));
try {
UTF8Util.skipFully(in, 1L);
fail("Should have failed because the stream has been drained.");
} catch (EOFException eofe) {
// As expected, do nothing
}
}
use of org.apache.derbyTesting.functionTests.util.streams.LoopingAlphabetReader in project derby by apache.
the class UTF8UtilTest method testSkipUntilEOFOnLongStreamCJK.
public void testSkipUntilEOFOnLongStreamCJK() throws IOException {
final int charLength = 127019;
InputStream in = new ReaderToUTF8Stream(new LoopingAlphabetReader(charLength, CharAlphabet.cjkSubset()), charLength, 0, TYPENAME, new ClobStreamHeaderGenerator(true));
// Skip encoded length added by ReaderToUTF8Stream.
in.skip(HEADER_LENGTH);
assertEquals(charLength, UTF8Util.skipUntilEOF(in));
}
use of org.apache.derbyTesting.functionTests.util.streams.LoopingAlphabetReader in project derby by apache.
the class UTF8UtilTest method testEqualityOfModifedUTF8AndASCII.
/**
* Ensure the assumption that the default looping alphabet stream and the
* modified UTF-8 encoding is equal.
* <p>
* If this assumption is broken, several of the other tests will fail.
*/
public void testEqualityOfModifedUTF8AndASCII() throws IOException {
final int length = 12706;
InputStream ascii = new LoopingAlphabetStream(length);
InputStream modUTF8 = new ReaderToUTF8Stream(new LoopingAlphabetReader(length), length, 0, TYPENAME, new CharStreamHeaderGenerator());
// Skip encoded length added by ReaderToUTF8Stream.
modUTF8.skip(HEADER_LENGTH);
assertEquals(ascii, modUTF8);
}
Aggregations