blob: 2d64357d41ce7965237d867540b4731eebf04ca8 [file] [log] [blame]
/*
Derby - Class org.apache.derbyTesting.functionTests.tests.jdbcapi.StreamTest
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.apache.derbyTesting.functionTests.tests.jdbcapi;
import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;
import java.sql.*;
import junit.framework.*;
import org.apache.derbyTesting.functionTests.util.streams.LoopingAlphabetReader;
import org.apache.derbyTesting.functionTests.util.streams.LoopingAlphabetStream;
import org.apache.derbyTesting.junit.BaseJDBCTestCase;
import org.apache.derbyTesting.junit.TestConfiguration;
/**
* Tests of ResultSet streams
*/
public class StreamTest extends BaseJDBCTestCase {
/** Creates a new instance of StreamTest */
public StreamTest(String name) {
super(name);
}
protected void setUp() throws Exception {
getConnection().setAutoCommit(false);
}
protected void tearDown() throws Exception {
rollback();
super.tearDown();
}
public static Test suite() {
return TestConfiguration.defaultSuite(StreamTest.class);
}
/**
* Tests calling ResultSet.getBinaryStream() twice in the same column
* using a 512 bytes blob
*/
public void testGetStreamTwiceSmallBlob() throws SQLException, IOException {
insertBlobData(512);
runGetStreamTwiceTest();
}
/**
* Tests calling ResultSet.getBinaryStream() twice in the same column
* using a 512K bytes blob
*/
public void testGetStreamTwiceLargeBlob() throws SQLException, IOException {
insertBlobData(512 * 1024);
runGetStreamTwiceTest();
}
/**
* Tests calling ResultSet.getCharacterStream() twice in the same column
* using a 512 characters clob
*/
public void testGetReaderTwiceSmallClob() throws SQLException, IOException {
insertClobData(512);
runGetReaderTwiceTest();
}
/**
* Tests calling ResultSet.getCharacterStream() twice in the same column
* using a 512K characters clob
*/
public void testGetReaderTwiceLargeClob() throws SQLException, IOException {
insertClobData(512 * 1024);
runGetReaderTwiceTest();
}
private void insertBlobData(int blobSize) throws SQLException {
Statement stmt = createStatement();
stmt.executeUpdate("CREATE TABLE testLob " +
" (b blob(" + blobSize + "))");
stmt.close();
PreparedStatement ps =
prepareStatement("insert into testLob values(?)");
InputStream stream = new LoopingAlphabetStream(blobSize);
ps.setBinaryStream(1, stream, blobSize);
ps.executeUpdate();
ps.close();
}
private void insertClobData(int clobSize) throws SQLException {
Statement stmt = createStatement();
stmt.executeUpdate("CREATE TABLE testLob " +
" (c clob(" + clobSize + "))");
stmt.close();
PreparedStatement ps =
prepareStatement("insert into testLob values(?)");
Reader reader = new LoopingAlphabetReader(clobSize);
ps.setCharacterStream(1, reader, clobSize);
ps.executeUpdate();
ps.close();
}
private void runGetStreamTwiceTest() throws SQLException, IOException {
InputStream is = null;
Statement st = createStatement();
ResultSet rs = st.executeQuery("select * from testLob");
assertTrue("FAIL - row not found", rs.next());
println("get stream from testLob ...");
is = rs.getBinaryStream(1);
is.close();
try{
println("get stream from testLob again ...");
is = rs.getBinaryStream(1);
fail("FAIL - Expected exception did not happen.");
} catch(SQLException se) {
assertSQLState(LANG_STREAM_RETRIEVED_ALREADY, se);
}
rs.close();
st.close();
}
public void runGetReaderTwiceTest() throws SQLException, IOException {
Reader reader = null;
Statement st = createStatement();
ResultSet rs = st.executeQuery( "select * from testLob");
assertTrue("FAIL - row not found", rs.next());
println("get reader from testLob ...");
reader = rs.getCharacterStream(1);
reader.close();
try {
println("get reader from testLob again ...");
reader = rs.getCharacterStream(1);
fail("FAIL - Expected exception did not happen.");
} catch(SQLException se) {
assertSQLState(LANG_STREAM_RETRIEVED_ALREADY, se);
}
rs.close();
st.close();
}
private static final String LANG_STREAM_RETRIEVED_ALREADY = "XCL18";
private boolean didclose = false;
/**
* DERBY-4531: Test that JDBC driver doesn't close a stream handed in to
* PreparedStatement.setCharacterStream when the prepared statement is
* garbage collected. Prior to thus fix, the client driver did call close
* on the stream in its finalizer. After fix to DERBY-4531, both embedded
* and client driver leaves the stream open after having read the number of
* characters specified.
*/
public void testDerby4531() throws SQLException {
setAutoCommit(false);
Statement s = createStatement();
s.executeUpdate("create table tDerby4531(c clob(200))");
s.close();
// Don't use plain prepareStatement, we want ps to be gc'ed below and
// BaseJDBCTestCase#prepareStatement saves away a reference to it
// thwarting that.
PreparedStatement ps = getConnection().
prepareStatement("insert into tDerby4531 values (?)");
Reader r = new MyLoopingAlphabetReader(200);
ps.setCharacterStream(1, r, 200);
ps.execute();
ps.close();
ps = null;
// Prior to fix for this issue, with client driver, gc of ps causes
// close to be called on reader, cf. code in
// org.apache.derby.client.net.EncodedInputStream#finalize.
System.gc();
// Sleep so gc thread can do its thing
try {
Thread.sleep(1000);
} catch (Exception e) {
}
synchronized(r) {
assertFalse(didclose);
}
rollback();
}
private class MyLoopingAlphabetReader extends LoopingAlphabetReader {
public MyLoopingAlphabetReader(int i) {
super(i);
}
// Override this so we can detect that it happened.
public void close() {
synchronized(this) {
didclose = true;
}
}
}
}