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 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
|
/*
*
* Derby - Class SURBaseTest
*
* 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 org.apache.derbyTesting.junit.BaseJDBCTestCase;
import org.apache.derbyTesting.junit.JDBC;
import junit.framework.*;
import java.sql.*;
/**
* Base class for testing Scrollable Updatable ResultSets.
* The setUp() provides a Connection to the database.
*
* Tests of this class needs to be decorated by a DBSetup
* and SURDataModelSetup.
*
*/
abstract public class SURBaseTest extends BaseJDBCTestCase {
/** Creates a new instance of SURBaseTest */
public SURBaseTest(String name) {
super(name);
recordCount = SURDataModelSetup.recordCount;
}
/** Creates a new instance of SURBaseTest*/
public SURBaseTest(String name, int records) {
super(name);
recordCount = records;
}
/**
* Override a connection's default state to ensure it
* is always in autocommit false and repeatable
* read as a starting point.
*/
protected void initializeConnection(Connection conn) throws SQLException {
conn.setAutoCommit(false);
conn.setTransactionIsolation(Connection.TRANSACTION_REPEATABLE_READ);
}
/**
* Verify the data of a tuple in the ResultSet, based on the data
* that were inserted.
*/
protected void verifyTuple(ResultSet rs) throws SQLException {
int id = rs.getInt(1);
int a = rs.getInt(2);
int b = rs.getInt(3);
int sum = a + id + 17;
println("Reading tuple:(" + id + "," + a + "," + b + ",'" +
rs.getString(4) + "', '"+rs.getString(5)+"'");
assertEquals("Expecting b==id+a+17", sum, b);
}
/**
* Update the current tuple in the ResultSet using updateXXX() and
* updateRow()
*/
protected void updateTuple(ResultSet rs) throws SQLException {
int id = rs.getInt(1);
int a = rs.getInt(2);
int b = rs.getInt(3);
int newA = a*2 +id + 37;
int newB = newA + id + 17;
println("Updating record (" + id + "," + newA + "," + newB + ")");
rs.updateInt(2, newA);
rs.updateInt(3, newB);
rs.updateRow();
}
/**
* Update the current tuple in the ResultSet using positioned update
*/
protected void updateTuplePositioned(ResultSet rs) throws SQLException {
int id = rs.getInt(1);
int a = rs.getInt(2);
int b = rs.getInt(3);
int newA = a*2 +id + 37;
int newB = newA + id + 17;
PreparedStatement ps =
prepareStatement("update T1 set a=?,b=? where current of " +
rs.getCursorName());
ps.setInt(1, newA);
ps.setInt(2, newB);
assertEquals("Expected one tuple to be updated", 1, ps.executeUpdate());
ps.close();
}
/**
* Scroll forward to the end of the ResultSet, and verify tuples while
* scrolling.
*/
protected void scrollForward(ResultSet rs) throws SQLException
{
boolean ignoreCount = rs.getType()==ResultSet.TYPE_FORWARD_ONLY
|| !rs.isBeforeFirst();
int nRecords = 0;
while (rs.next()) {
nRecords++;
verifyTuple(rs);
}
if (!ignoreCount) {
assertEquals("Record Count", recordCount, nRecords);
}
}
/**
* Scroll backward to the beginning of the ResultSet, and verify tuples
* while scrolling.
*/
protected void scrollBackward(ResultSet rs) throws SQLException
{
boolean ignoreCount = rs.getType()==ResultSet.TYPE_FORWARD_ONLY
|| !rs.isAfterLast();
int nRecords = 0;
while (rs.previous()) {
nRecords++;
verifyTuple(rs);
}
if (!ignoreCount) {
assertEquals("Record Count", recordCount, nRecords);
}
}
/**
* Scroll forward and update the tuples using updateXXX() and updateRow()
*/
protected void scrollForwardAndUpdate(ResultSet rs) throws SQLException
{
int nRecords = 0;
boolean ignoreCount = rs.getType()==ResultSet.TYPE_FORWARD_ONLY
|| !rs.isBeforeFirst();
while (rs.next()) {
nRecords++;
verifyTuple(rs);
updateTuple(rs);
}
if (!ignoreCount) {
assertEquals("Record Count", recordCount, nRecords);
}
assertNotNull("rs.getCursorName()", rs.getCursorName());
}
/**
* Scroll forward and do positioned updates.
*/
protected void scrollForwardAndUpdatePositioned(ResultSet rs)
throws SQLException
{
int nRecords = 0;
boolean ignoreCount = rs.getType()==ResultSet.TYPE_FORWARD_ONLY
|| !rs.isBeforeFirst();
while (rs.next()) {
nRecords++;
verifyTuple(rs);
updateTuplePositioned(rs);
}
if (!ignoreCount) {
assertEquals("Record Count", recordCount, nRecords);
}
assertNotNull("rs.getCursorName()", rs.getCursorName());
}
/**
* Scroll backward and update the records using updateXXX() and updateRow()
*/
protected void scrollBackwardAndUpdate(ResultSet rs) throws SQLException
{
int nRecords = 0;
boolean ignoreCount = rs.getType()==ResultSet.TYPE_FORWARD_ONLY
|| !rs.isAfterLast();
while (rs.previous()) {
nRecords++;
verifyTuple(rs);
updateTuple(rs);
}
if (!ignoreCount) {
assertEquals("Record Count", recordCount, nRecords);
}
assertNotNull("rs.getCursorName()", rs.getCursorName());
}
/**
* Scroll backward and update the records using positioned updates.
*/
protected void scrollBackwardAndUpdatePositioned(ResultSet rs)
throws SQLException
{
int nRecords = 0;
boolean ignoreCount = rs.getType()==ResultSet.TYPE_FORWARD_ONLY
|| !rs.isAfterLast();
while (rs.previous()) {
nRecords++;
verifyTuple(rs);
updateTuplePositioned(rs);
}
if (!ignoreCount) {
assertEquals("Record Count", recordCount, nRecords);
}
assertNotNull("rs.getCursorName()", rs.getCursorName());
}
/**
* Assert that update of ResultSet fails with a SQLException
* due to read-only ResultSet.
*/
protected void assertFailOnUpdate(ResultSet rs)
throws SQLException
{
boolean failedCorrect = false;
try {
updateTuple(rs);
} catch (SQLException e) {
failedCorrect = true;
assertEquals("Unexpected SQL state",
RESULTSET_NOT_UPDATABLE_SQL_STATE,
e.getSQLState());
}
assertTrue("Expected cursor to fail on update, since it is read only",
failedCorrect);
}
/**
* Assert that a warning was received
*/
protected void assertWarning(SQLWarning warn, String sqlState)
throws SQLException
{
if (warn!=null || usingEmbedded()) {
assertEquals("Unexpected SQL state",
sqlState,
warn.getSQLState());
} else {
println("Expected warning with SQLState = '" + sqlState +
"', however warning not propagated to client driver");
}
}
final int recordCount;
/**
* Error codes and SQL state
*/
final static String FOR_UPDATE_NOT_PERMITTED_SQL_STATE = "42Y90";
final static String CURSOR_NOT_UPDATABLE_SQL_STATE = "42X23";
final static String RESULTSET_NOT_UPDATABLE_SQL_STATE = "XJ083";
final static String LOCK_TIMEOUT_SQL_STATE = "40XL1";
final static String LOCK_TIMEOUT_EXPRESSION_SQL_STATE = "38000";
final static String INVALID_CURSOR_STATE_NO_CURRENT_ROW = "24000";
final static String CURSOR_OPERATION_CONFLICT = "01001";
final static String QUERY_NOT_QUALIFIED_FOR_UPDATABLE_RESULTSET = "01J06";
final static String CURSOR_NOT_POSITIONED_ON_INSERT_ROW = "XJ086";
}
|