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 218 219 220 221 222 223 224 225 226 227 228
|
/*
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;
}
}
}
}
|