use of java.io.FilterOutputStream in project robovm by robovm.
the class OldFilterOutputStreamTest method test_close.
public void test_close() throws IOException {
Support_OutputStream sos = new Support_OutputStream();
os = new FilterOutputStream(sos);
os.close();
try {
os.write(42);
} catch (java.io.IOException e) {
fail("Test 1: Unexpected IOException.");
}
sos.setThrowsException(true);
try {
os.write(42);
fail("Test 2: IOException expected.");
} catch (java.io.IOException e) {
// Expected.
}
os = new FilterOutputStream(sos);
try {
os.close();
fail("Test 3: IOException expected.");
} catch (IOException e) {
// Expected.
}
}
use of java.io.FilterOutputStream in project robovm by robovm.
the class OldFilterOutputStreamTest method test_flush.
public void test_flush() throws IOException {
Support_OutputStream sos = new Support_OutputStream(550);
os = new FilterOutputStream(sos);
os.write(fileString.getBytes(), 0, 500);
os.flush();
assertEquals("Test 1: Bytes not written after flush;", 500, sos.size());
sos.setThrowsException(true);
try {
os.flush();
fail("Test 2: IOException expected.");
} catch (IOException e) {
// Expected.
}
sos.setThrowsException(false);
}
use of java.io.FilterOutputStream in project j2objc by google.
the class OldFilterOutputStreamTest method test_ConstructorLjava_io_OutputStream.
public void test_ConstructorLjava_io_OutputStream() {
// Test for method java.io.FilterOutputStream(java.io.OutputStream)
try {
bos = new ByteArrayOutputStream();
os = new FilterOutputStream(bos);
os.write('t');
} catch (java.io.IOException e) {
fail("Constructor test failed : " + e.getMessage());
}
}
use of java.io.FilterOutputStream in project j2objc by google.
the class OldFilterOutputStreamTest method test_close.
public void test_close() throws IOException {
Support_OutputStream sos = new Support_OutputStream();
os = new FilterOutputStream(sos);
os.close();
try {
os.write(42);
} catch (java.io.IOException e) {
fail("Test 1: Unexpected IOException.");
}
sos.setThrowsException(true);
try {
os.write(42);
fail("Test 2: IOException expected.");
} catch (java.io.IOException e) {
// Expected.
}
os = new FilterOutputStream(sos);
try {
os.close();
fail("Test 3: IOException expected.");
} catch (IOException e) {
// Expected.
}
}
use of java.io.FilterOutputStream in project j2objc by google.
the class OldFilterOutputStreamTest method test_write$B.
public void test_write$B() throws IOException {
Support_OutputStream sos = new Support_OutputStream(testLength);
os = new FilterOutputStream(sos);
os.write(fileString.getBytes());
bis = new ByteArrayInputStream(sos.toByteArray());
assertTrue("Test 1: Bytes have not been written.", bis.available() == testLength);
byte[] wbytes = new byte[testLength];
bis.read(wbytes, 0, testLength);
assertTrue("Test 2: Incorrect bytes written or read.", fileString.equals(new String(wbytes)));
try {
// Support_OutputStream throws an IOException if the internal
// buffer is full, which it should be now.
os.write(42);
fail("Test 2: IOException expected.");
} catch (IOException e) {
// Expected.
}
}
Aggregations