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
|
/*
Derby - Class org.apache.derbyTesting.functionTests.tests.store.LockTableVtiTest
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.
*/
// Note: This test could be refined by modifying the BaseJDBCTestCase
// method assertStatementError(new String[],Statement,String)
// and all methods down that chain to search for the variable
// values in the SQL error messages as well, in this case, in this
// case, to check for 'exclusive' or 'share' in error X0202.
package org.apache.derbyTesting.functionTests.tests.store;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.sql.Connection;
import java.util.ArrayList;
import java.util.List;
import java.util.Properties;
import junit.framework.Test;
import org.apache.derbyTesting.functionTests.util.Barrier;
import org.apache.derbyTesting.junit.BaseJDBCTestCase;
import org.apache.derbyTesting.junit.CleanDatabaseTestSetup;
import org.apache.derbyTesting.junit.DatabasePropertyTestSetup;
import org.apache.derbyTesting.junit.JDBC;
import org.apache.derbyTesting.junit.TestConfiguration;
/**
* Tests the printing of the WAIT state in the LOCK TABLE.
*/
public class LockTableVtiTest extends BaseJDBCTestCase {
/**
* List of threads (AsyncThread objects) to wait for after running the test.
*/
private List<AsyncThread> threads = new ArrayList<AsyncThread>();
public LockTableVtiTest(String name) {
super(name);
}
/**
* Construct top level suite in this JUnit test
* The suite is wrapped in a DatabasePropertyTestSetup to set
* the lock wait timeout.
*
* @return A suite containing embedded fixtures
*/
public static Test suite() {
Properties properties = new Properties();
// setting to 60, which is the default, for starters
properties.setProperty("derby.locks.waitTimeout", "60");
Test suite = TestConfiguration.defaultSuite (LockTableVtiTest.class);
suite = new DatabasePropertyTestSetup(suite, properties, true);
return new CleanDatabaseTestSetup(suite) ;
}
protected void setUp() throws Exception {
super.setUp();
Connection conn = getConnection();
conn.setAutoCommit(false);
Statement s = createStatement();
s.executeUpdate("create table account " +
"(a int primary key not null, b int)");
s.executeUpdate("insert into account values (0,1)");
s.executeUpdate("insert into account values (1,1)");
s.executeUpdate("insert into account values (2,1)");
s.close();
conn.commit();
}
/**
* Tear-down the fixture by removing the tables and schemas
* @throws Exception
*/
protected void tearDown() throws Exception {
// Rollback all uncommitted operations so that we don't hold any
// locks that may block the other threads.
rollback();
for (AsyncThread thread : threads) {
thread.waitFor();
}
threads = null;
// All the other threads have finished. Now, remove everything from
// the APP schema so that we don't leave anything around for subsequent
// tests.
setAutoCommit(false); // required by JDBC.dropSchema()
try {
Statement s = createStatement();
s.executeUpdate("drop table account");
JDBC.dropSchema(getConnection().getMetaData(), "APP");
} catch(SQLException sqe) {
if (!(sqe.getSQLState().equalsIgnoreCase("42X05")
|| sqe.getSQLState().equalsIgnoreCase("42Y55")))
{
fail("oops in teardown, encountered some other error than " +
"'object does not exist' or " +
"'cannot drop object because it doesn't exist'");
sqe.printStackTrace();
sqe.getMessage();
}
}
super.tearDown();
}
/**
* Tests to make sure that WAIT state is displayed in lock
* table output
*
* @exception Exception
*/
public void testDisplayWaitState() throws Exception {
Statement s = createStatement();
setAutoCommit(false);
// setting to -1 (wait for ever) to improve timing control
s.executeUpdate("call SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY" +
"('derby.locks.waitTimeout','-1')");
BaseJDBCTestCase.assertUpdateCount(
s, 3, "update account set b = b + 11");
// Object used for synchronization between the main thread and the
// helper thread. The main thread uses it to tell the helper thread
// that it has started the scan. The helper thread uses it
// to tell the main thread that it is ready.
// Both threads should wait until the other thread
// has reached the barrier before continuing.
final Barrier barrier = new Barrier(2);
// start the second thread and make it do the same update
new AsyncThread(new AsyncTask() {
public void doWork(Connection conn) throws Exception {
conn.setAutoCommit(false);
Statement s = conn.createStatement();
// note: asserts in this inner class do not make the test fail
// so, just executing it here
s.executeUpdate("update account set b = b + 11");
s.close();
// Tell the main thread that we've locked the row
barrier.await();
// The main thread now can continue - give it a
// second to do its stuff
//Thread.sleep(1000L);
// we check that the 'wait' state is gone at the main thread,
// it would not cause the test to fail if we checked it here.
}
});
// now select from syscs_diag.lock_table, don't wait more than minute.
int totalWait = 0;
boolean found=false;
do {
totalWait += 500;
Thread.sleep(500);
// we want to look for 'WAIT' state. There will also
// be one of more 'GRANT' state locks, likely background threads,
// but we're not interested in those here.
found=getWaitState();
} while (!found && totalWait < 6000);
// defer the assert until we've alerted the async thread
// commit will release the lock
commit();
// set the timeout back so things can timeout.
s.executeUpdate("call SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY" +
"('derby.locks.waitTimeout','5')");
commit();
// Now that we've found the wait state, tell the helper thread we
// are done
barrier.await();
// now that we've released the helper thread, we can safely let
// the test fail if the results of the earlier check were bad
assertTrue("expected to find a 'WAIT' state, but did not", found);
// confirm that there is no 'wait' state now
assertFalse("expected to not find a 'WAIT' state, but did",
getWaitState());
}
/**
* See if there is a 'WAIT' lock
* @return true if there was a WAIT lock, false if not
* @throws SQLException
*/
private boolean getWaitState() throws SQLException {
Statement s = createStatement();
ResultSet rs = s.executeQuery(
"SELECT state from syscs_diag.lock_table " +
"where state like 'WAIT' order by state");
String result="";
try {
rs.next();
result = rs.getString(1);
} catch (Exception e) {
// assume the exception is because there is no 'wait' state...
//e.printStackTrace();
}
rs.close();
if (result != null && result.length() > 0)
return true;
else
return false;
}
/**
* Interface that should be implemented by classes that define a
* database task that is to be executed asynchronously in a separate
* transaction.
*/
private static interface AsyncTask {
void doWork(Connection conn) throws Exception;
}
/**
* Class that executes an {@code AsyncTask} object.
*/
private class AsyncThread implements Runnable {
private final Thread thread = new Thread(this);
private final AsyncTask task;
private Exception error;
/**
* Create an {@code AsyncThread} object and starts a thread executing
* the task. Also put the {@code AsyncThread} object in the list of
* threads in the parent object to make sure the thread is waited for
* and its errors detected in the {@code tearDown()} method.
*
* @param task the task to perform
*/
public AsyncThread(AsyncTask task) {
this.task = task;
thread.start();
threads.add(this);
}
/**
* Open a database connection and perform the task. Roll back the
* transaction when finished. Any exception thrown will be caught and
* rethrown when the {@code waitFor()} method is called.
*/
public void run() {
try {
Connection conn = openDefaultConnection();
try {
task.doWork(conn);
} finally {
JDBC.cleanup(conn);
}
} catch (Exception e) {
error = e;
}
}
/**
* Wait for the thread to complete. If an error was thrown during
* execution, rethrow the execption here.
* @throws Exception if an error happened while performing the task
*/
void waitFor() throws Exception {
thread.join();
if (error != null) {
throw error;
}
}
}
}
|