Search in sources :

Example 21 with Support_OutputStream

use of tests.support.Support_OutputStream in project j2objc by google.

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);
}
Also used : Support_OutputStream(tests.support.Support_OutputStream) IOException(java.io.IOException) FilterOutputStream(java.io.FilterOutputStream)

Example 22 with Support_OutputStream

use of tests.support.Support_OutputStream 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.
    }
}
Also used : Support_OutputStream(tests.support.Support_OutputStream) ByteArrayInputStream(java.io.ByteArrayInputStream) IOException(java.io.IOException) FilterOutputStream(java.io.FilterOutputStream)

Example 23 with Support_OutputStream

use of tests.support.Support_OutputStream in project j2objc by google.

the class OldFilterOutputStreamTest method test_write$BII.

public void test_write$BII() throws IOException {
    Support_OutputStream sos = new Support_OutputStream(testLength);
    os = new FilterOutputStream(sos);
    os.write(fileString.getBytes(), 10, testLength - 10);
    bis = new ByteArrayInputStream(sos.toByteArray());
    assertTrue("Test 1: Bytes have not been written.", bis.available() == testLength - 10);
    byte[] wbytes = new byte[testLength - 10];
    bis.read(wbytes);
    assertTrue("Test 2: Incorrect bytes written or read.", fileString.substring(10).equals(new String(wbytes)));
    try {
        // Support_OutputStream throws an IOException if the internal
        // buffer is full, which it should be eventually.
        os.write(fileString.getBytes());
        fail("Test 2: IOException expected.");
    } catch (IOException e) {
    // Expected.
    }
}
Also used : Support_OutputStream(tests.support.Support_OutputStream) ByteArrayInputStream(java.io.ByteArrayInputStream) IOException(java.io.IOException) FilterOutputStream(java.io.FilterOutputStream)

Example 24 with Support_OutputStream

use of tests.support.Support_OutputStream 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.
    }
}
Also used : Support_OutputStream(tests.support.Support_OutputStream) IOException(java.io.IOException) IOException(java.io.IOException) FilterOutputStream(java.io.FilterOutputStream)

Example 25 with Support_OutputStream

use of tests.support.Support_OutputStream in project j2objc by google.

the class OldObjectInputOutputStreamTest method setUp.

protected void setUp() throws IOException {
    sos = new Support_OutputStream(256);
    os = new ObjectOutputStream(sos);
}
Also used : Support_OutputStream(tests.support.Support_OutputStream) ObjectOutputStream(java.io.ObjectOutputStream)

Aggregations

Support_OutputStream (tests.support.Support_OutputStream)48 IOException (java.io.IOException)30 ByteArrayOutputStream (java.io.ByteArrayOutputStream)16 OutputStreamWriter (java.io.OutputStreamWriter)16 FilterOutputStream (java.io.FilterOutputStream)12 ByteArrayInputStream (java.io.ByteArrayInputStream)8 BufferedOutputStream (java.io.BufferedOutputStream)6 ObjectOutputStream (java.io.ObjectOutputStream)6 DataOutputStream (java.io.DataOutputStream)4 Charset (java.nio.charset.Charset)4 ObjectInputStream (java.io.ObjectInputStream)2 UnsupportedEncodingException (java.io.UnsupportedEncodingException)2 CharsetEncoder (java.nio.charset.CharsetEncoder)2 DigestOutputStream (java.security.DigestOutputStream)2 MessageDigest (java.security.MessageDigest)2