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
|
/*
Derby - Class org.apache.derbyTesting.functionTests.tests.jdbc4.BlobClobTestSetup
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.jdbc4;
import junit.extensions.TestSetup;
import junit.framework.Test;
import org.apache.derbyTesting.junit.BaseJDBCTestCase;
import org.apache.derbyTesting.junit.BaseJDBCTestSetup;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
import java.io.IOException;
import java.io.Reader;
import java.io.StringReader;
import java.sql.*;
/**
* Create a table with one column for a blob and one column for a clob.
* This is shared between tests that need a blob or a clob, and is required
* because the createBlob/-Clob methods are not yet implemented.
*/
public class BlobClobTestSetup
extends BaseJDBCTestSetup {
/** Constant for accessing the row with null values. */
public static final int ID_NULLVALUES = 1;
/** Constant for accessing the row with sample values. */
public static final int ID_SAMPLEVALUES = 2;
/**
* ID is used to store the latest unique value for the ID column
* Start from 3 since 1 is used for null values and 2 is used for
* sample values.
*/
public static int ID = 3;
/** Blob data. */
private static final byte[] blobData = new byte[] {
0x65, 0x66, 0x67, 0x68, 0x69,
0x69, 0x68, 0x67, 0x66, 0x65
};
/** Clob data. */
private static final String clobData =
"This is a string, inserted into a CLOB";
/**
* Create a test setup for the specified blob or clob test.
*
* @param test the test to provide setup for.
*/
public BlobClobTestSetup(Test test) {
super(test);
}
/**
* Create a table with BLOB and CLOB, so that such objects can be
* accessed/used from JDBC.
*/
protected void setUp()
throws IOException, SQLException {
Connection con = getConnection();
Statement stmt = con.createStatement();
stmt.execute("create table BLOBCLOB (ID int primary key, " +
"BLOBDATA blob," +
"CLOBDATA clob)");
stmt.execute("insert into BLOBCLOB VALUES " +
"(" + ID_NULLVALUES + ", null, null)");
// Actual data is inserted in the getSample* methods.
stmt.execute("insert into BLOBCLOB VALUES " +
"(" + ID_SAMPLEVALUES + ", null, null)");
stmt.close();
}
/**
* Drop the table we created during setup.
* @throws Exception
*/
protected void tearDown()
throws Exception {
Connection con = getConnection();
Statement stmt = con.createStatement();
stmt.execute("drop table BLOBCLOB");
stmt.close();
super.tearDown();
}
/**
* Fetch a sample Blob.
* If this method fails, the test fails.
*
* @param con database connection to fetch data from.
* @return a sample <code>Blob</code> object.
*/
public static Blob getSampleBlob(Connection con)
throws SQLException {
InputStream blobInput = new ByteArrayInputStream(blobData, 0, blobData.length);
PreparedStatement pStmt =
con.prepareStatement("update BLOBCLOB set BLOBDATA = ? where ID = ?");
try {
blobInput.reset();
} catch (IOException ioe) {
fail("Failed to reset blob input stream: " + ioe.getMessage());
}
pStmt.setBlob(1, blobInput, blobData.length);
pStmt.setInt(2, ID_SAMPLEVALUES);
assertEquals("Invalid update count", 1, pStmt.executeUpdate());
Statement stmt = con.createStatement();
ResultSet rs = stmt.executeQuery("select BLOBDATA from BLOBCLOB where ID = " +
ID_SAMPLEVALUES);
rs.next();
Blob blob = rs.getBlob(1);
rs.close();
stmt.close();
return blob;
}
/**
* Fetch a sample Clob.
* If this method fails, the test fails.
*
* @param con database connection to fetch data from.
* @return a sample <code>Clob</code> object.
*/
public static Clob getSampleClob(Connection con)
throws SQLException {
Reader clobInput = new StringReader(clobData);
PreparedStatement pStmt =
con.prepareStatement("update BLOBCLOB set CLOBDATA = ? where ID = ?");
try {
clobInput.reset();
} catch (IOException ioe) {
fail("Failed to reset clob input stream: " + ioe.getMessage());
}
pStmt.setClob(1, clobInput, clobData.length());
pStmt.setInt(2, ID_SAMPLEVALUES);
assertEquals("Invalid update count", 1, pStmt.executeUpdate());
Statement stmt = con.createStatement();
ResultSet rs = stmt.executeQuery("select CLOBDATA from BLOBCLOB where ID = " +
ID_SAMPLEVALUES);
rs.next();
Clob clob = rs.getClob(1);
rs.close();
stmt.close();
return clob;
}
/**
* Returns new unique ID values that can be used in these tests.
* @return an integer that represents an unique ID value.
*/
public static int getID() {
return ID++;
}
} // End class BlobClobTestSetup
|