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 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
|
/*
Derby - Class org.apache.derbyTesting.functionTests.tests.jdbcapi.StatementJdbc30Test
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.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import junit.framework.Test;
import org.apache.derbyTesting.junit.BaseJDBCTestCase;
import org.apache.derbyTesting.junit.BaseTestSuite;
import org.apache.derbyTesting.junit.CleanDatabaseTestSetup;
import org.apache.derbyTesting.junit.TestConfiguration;
/**
* Test the Statement class in JDBC 30. This test converts the old
* jdbcapi/statementJdbc30.java test to JUnit.
*/
public class StatementJdbc30Test extends BaseJDBCTestCase {
private static final String CLIENT_SUITE_NAME =
"StatementJdbc30Test:client";
/**
* Create a test with the given name.
*
* @param name
* name of the test.
*/
public StatementJdbc30Test(String name) {
super(name);
}
/**
* Create suite containing client and embedded tests and to run all tests in
* this class
*/
public static Test suite() {
BaseTestSuite suite = new BaseTestSuite("StatementJdbc30Test");
suite.addTest(baseSuite("StatementJdbc30Test:embedded"));
suite
.addTest(TestConfiguration
.clientServerDecorator(baseSuite(CLIENT_SUITE_NAME)));
return suite;
}
private static Test baseSuite(String name) {
BaseTestSuite suite = new BaseTestSuite(name);
suite.addTestSuite(StatementJdbc30Test.class);
if (name.equals(CLIENT_SUITE_NAME)) {
// These test CAN be run in embedded mode as well, but
// they're only meaningful in c/s mode and also take quite
// a bit of time to run.
suite.addTest(new StatementJdbc30Test
("xtestMultiExecWithQueryTimeout"));
suite.addTest(new StatementJdbc30Test
("xtestMaxOpenStatementsWithQueryTimeout"));
}
return new CleanDatabaseTestSetup(suite) {
/**
* Creates the tables used in the test cases.
*
* @exception SQLException
* if a database error occurs
*/
protected void decorateSQL(Statement stmt) throws SQLException {
/**
* Creates the table used in the test cases.
*
*/
stmt.execute("create table tab1 (i int, s smallint, r real)");
stmt.executeUpdate("insert into tab1 values(1, 2, 3.1)");
}
};
}
/**
* Tests reading data from database
*
* @exception SQLException
* if error occurs
*/
public void testReadingData() throws SQLException {
Statement stmt = createStatement();
ResultSet rs;
// read the data just for the heck of it
rs = stmt.executeQuery("select * from tab1");
assertTrue(rs.next());
rs.close();
}
/**
* Tests stmt.getMoreResults(int)
*
* @exception SQLException
* if error occurs
*/
public void testGetMoreResults() throws SQLException {
Statement stmt = createStatement();
assertFalse(stmt.getMoreResults(Statement.CLOSE_CURRENT_RESULT));
}
/**
* Tests stmt.executeUpdate(String, int) with NO_GENERATED_KEYS.
*
* @exception SQLException
* if error occurs
*/
public void testInsertNoGenKeys() throws SQLException {
Statement stmt = createStatement();
stmt.executeUpdate("insert into tab1 values(2, 3, 4.1)",
Statement.NO_GENERATED_KEYS);
assertNull("Expected NULL ResultSet after stmt.execute()", stmt
.getGeneratedKeys());
}
/**
* Tests stmt.executeUpdate(String, int[]) After doing an insert into a
* table that doesn't have a generated column, the test should fail.
*
* @throws SQLException
*/
public void testExecuteUpdateNoAutoGenColumnIndex() throws SQLException {
Statement stmt = createStatement();
int[] columnIndexes = new int[2];
columnIndexes[0] = 1;
columnIndexes[1] = 2;
try {
stmt.executeUpdate("insert into tab1 values(2, 3, 4.1)",
columnIndexes);
fail("FAIL -- executeUpdate should have failed...");
} catch (SQLException ex) {
assertFailedExecuteUpdateForColumnIndex(ex);
}
}
/**
* Tests stmt.executeUpdate(String, String[]) After doing an insert into a
* table that doesn't have a generated column, the test should fail.
*
* @throws SQLException
*/
public void testExecuteUpdateNoAutoGenColumnName() throws SQLException {
Statement stmt = createStatement();
String[] columnNames = new String[2];
columnNames[0] = "I";
columnNames[1] = "S";
try {
stmt.executeUpdate("insert into tab1 values(2, 3, 4.1)",
columnNames);
fail("FAIL -- executeUpdate should have failed...");
} catch (SQLException ex) {
assertFailedExecuteUpdateForColumnName(ex);
}
}
/**
* Tests stmt.execute(String, int) with NO_GENERATED_KEYS.
*
* @exception SQLException
* if error occurs
*/
public void testSelectNoGenKeys() throws SQLException {
Statement stmt = createStatement();
stmt.execute("select * from tab1", Statement.NO_GENERATED_KEYS);
assertNull("Expected NULL ResultSet after stmt.execute()", stmt
.getGeneratedKeys());
}
/**
* After doing an insert into a table that doesn't have a generated column,
* the test should fail.
*
* @throws SQLException
*/
public void testExecuteNoAutoGenColumnIndex() throws SQLException {
Statement stmt = createStatement();
int[] columnIndexes = new int[2];
columnIndexes[0] = 1;
columnIndexes[1] = 2;
try {
stmt.execute("insert into tab1 values(2, 3, 4.1)", columnIndexes);
fail("FAIL -- executeUpdate should have failed...");
} catch (SQLException ex) {
assertFailedExecuteUpdateForColumnIndex(ex);
}
}
/**
* Assert executeUpdateForColumnIndex failed. There are different SQLStates
* for ColumnName(X0X0E) and ColumnIndex(X0X0F) as well as client and server
*
* @param ex
*/
private void assertFailedExecuteUpdateForColumnIndex(SQLException ex) {
// In network client we only check columnIndex array length,
// so throw a different error.
if (usingDerbyNetClient()) {
assertSQLState("X0X0D", ex);
} else {
assertSQLState("X0X0E", ex);
}
}
/**
* Assert executeUpdateForColumnName failed. There are different SQLStates
* for ColumnIndex(X0X0F) and ColumnNam(X0X0E) as well as client and server.
*
* @param ex
*/
private void assertFailedExecuteUpdateForColumnName(SQLException ex) {
// Derby client complains that the array is too long.
// Embedded is smart enough to know which column caused the problem.
if (usingDerbyNetClient()) {
assertSQLState("X0X0D", ex);
} else {
assertSQLState("X0X0F", ex);
}
}
/**
* After doing an insert into a table that doesn't have a generated column,
* the test should fail.
*
* @throws SQLException
*/
public void testExecuteNoAutoGenColumnName() throws SQLException {
Statement stmt = createStatement();
String[] columnNames = new String[2];
columnNames[0] = "I";
columnNames[1] = "S";
try {
stmt.executeUpdate("insert into tab1 values(2, 3, 4.1)",
columnNames);
fail("FAIL -- executeUpdate should have failed...");
} catch (SQLException ex) {
assertFailedExecuteUpdateForColumnName(ex);
}
}
/**
* DERBY-3198: Verify that a statement can be executed
* more than 32000 times, even when query timeout is enabled.
*/
public void xtestMultiExecWithQueryTimeout() throws SQLException {
Statement stmt = createStatement();
stmt.setQueryTimeout(10);
for (int i = 0; i < 33000; ++i) {
ResultSet rs = stmt.executeQuery("VALUES(1)");
rs.close();
}
}
/**
* DERBY-3198: Verify that we can have at least 16383 open Statements with
* query timeout. With query timeout, each Statement holds on to 2
* Section objects until it is closed.
*/
public void xtestMaxOpenStatementsWithQueryTimeout() throws SQLException {
// Disable auto-commit for this test case. Otherwise, closing all the
// statements in tearDown() will take forever, since every close() will
// force a commit. DERBY-5524.
setAutoCommit(false);
Statement[] stmts = new Statement[16500];
int i = 0;
try {
for (; i < 16500; ++i) {
stmts[i] = createStatement();
stmts[i].setQueryTimeout(10);
stmts[i].executeQuery("VALUES(1)");
}
} catch (SQLException e) {
assertSQLState("XJ200",e);
assertTrue("16383 >= (i="+ i +")", 16383 >= i);
}
}
/**
* Testing stmt.getResultSetHoldability()
*
* @throws SQLException
*/
public void testGetResultSetHoldability() throws SQLException {
Statement stmt = createStatement();
assertEquals(ResultSet.HOLD_CURSORS_OVER_COMMIT, stmt
.getResultSetHoldability());
}
/**
* Testing stmt.getGeneratedKeys()
*
* @throws SQLException
*/
public void testGetGenerateKeys() throws SQLException {
Statement stmt = createStatement();
assertNull(stmt.getGeneratedKeys());
}
}
|